diff --git a/.github/workflows/pkgdown.yml b/.github/workflows/pkgdown.yml index c2b0fd2..2a79fd2 100644 --- a/.github/workflows/pkgdown.yml +++ b/.github/workflows/pkgdown.yml @@ -2,11 +2,9 @@ on: push: branches: - main - - master pull_request: branches: - main - - master name: docs @@ -16,9 +14,9 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@v1 + - uses: r-lib/actions/setup-r@v2 - - uses: r-lib/actions/setup-pandoc@v1 + - uses: r-lib/actions/setup-pandoc@v2 - name: Install libcurl run: brew install openssl curl diff --git a/.github/workflows/rcmd.yml b/.github/workflows/rcmd.yml index 671c737..c1da623 100644 --- a/.github/workflows/rcmd.yml +++ b/.github/workflows/rcmd.yml @@ -12,16 +12,16 @@ jobs: fail-fast: false matrix: config: - - {os: macos-latest, r: '3.6.1'} + - {os: macos-latest, r: '4.3.2'} env: R_REMOTES_NO_ERRORS_FROM_WARNINGS: true RSPM: ${{ matrix.config.rspm }} steps: - - uses: r-lib/actions/setup-pandoc@master + - uses: r-lib/actions/setup-pandoc@v2 - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@master + - uses: r-lib/actions/setup-r@v2 - name: Install dependencies env: diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index b3670df..88eecf7 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: config: - - {os: macos-latest, r: '3.6.1'} + - {os: macos-latest, r: '4.3.2'} env: R_REMOTES_NO_ERRORS_FROM_WARNINGS: true @@ -22,9 +22,9 @@ jobs: steps: - - uses: r-lib/actions/setup-pandoc@master + - uses: r-lib/actions/setup-pandoc@v2 - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@master + - uses: r-lib/actions/setup-r@v2 - name: Install dependencies env: diff --git a/DESCRIPTION b/DESCRIPTION index 0818d0e..f52cf27 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -3,6 +3,7 @@ Type: Package Title: A web-based interactive scenario builder and visualization application for the Hector climate model Version: 2.0 Authors@R: c(person("Stephanie", "Pennington", email = "stephanie.pennington@pnnl.gov", role = c("aut", "cre")), + person("Ciara", "Donegan", email = "ciara.donegan@pnnl.gov", role = "aut"), person("Chris", "Vernon", email = "chris.vernon@pnnl.gov", role = "aut"), person("Stephanie", "Waldhoff", email = "stephanie.waldhoff@pnnl.gov", role = "aut"), person("Abigail", "Snyder", email = "abigail.snyder@pnnl.gov", role = "aut"), @@ -14,10 +15,8 @@ License: GPL-3 Encoding: UTF-8 LazyData: true Imports: - maps, remotes, shiny, - shinyjs, devtools, dplyr, plotly, @@ -26,20 +25,17 @@ Imports: shinyBS, shinythemes, shinyWidgets, - stringr, - shinycustomloader, - markdown + stringr Depends: R (>= 3.6.0), - hector, - fldgen + hector (>= 3.2.0) Suggests: testthat (>= 2.1.0), knitr, rmarkdown, pkgdown Remotes: - github::JGCRI/hector, + github::JGCRI/hector@v3.2.0, github::JGCRI/fldgen@v2.0.0 -RoxygenNote: 7.1.1 +RoxygenNote: 7.3.1 VignetteBuilder: knitr diff --git a/NAMESPACE b/NAMESPACE index 2c86655..d4cd9f9 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,18 +1,4 @@ # Generated by roxygen2: do not edit by hand -export(get_globalCapabilities) -export(get_globalColorScales) -export(get_globalParameters) -export(get_globalParamsCESM1BGC) -export(get_globalParamsCanESM2) -export(get_globalParamsDefault) -export(get_globalParamsGFDLESM2G) -export(get_globalParamsMIROCESM) -export(get_globalParamsMPIESMLR) -export(get_globalParamsMRIESM1) -export(get_globalPrecipPatterns) -export(get_globalScenarioColors) -export(get_globalScenarios) -export(get_globalTempPatterns) -export(get_globalVars) -export(get_rcps) +export(get_scenarios) +export(get_titles) diff --git a/R/set_globals.R b/R/set_globals.R index ab68a62..6525878 100644 --- a/R/set_globals.R +++ b/R/set_globals.R @@ -1,666 +1,71 @@ -#' Global vars for misc items such as the run date end year (2100) -#' @export -get_globalVars <- function() { - - globalVars <- list() - globalVars['startDate'] <- 1900 - globalVars['endDate'] <- 2100 - globalVars['writeDirectory'] <- "temp" - - return(globalVars) -} - - -#' Global vars for scale colors -#' @export -get_globalColorScales <- function() { - - globalColorScales <- vector() - globalColorScales <- c("RCP 2.6" = "#5DBFDE", "RCP 4.5" = "#5CB95C", "RCP 6.0" = "#FBAB33", "RCP 8.5" ="#D7534E") - - - return(globalColorScales) -} - - -#' RCP list by number -#' @export -get_rcps <- function() { - - return(c(26,45,60,85)) -} - - -#' Global file paths vector -#' @export -get_globalScenarios <- function() { - - rcps <- get_rcps() - - globalScenarios <- list() - globalScenarios[['RCP-2.6']] <- file.path('input',paste0('hector_rcp',rcps[1],'.ini')) - globalScenarios[['RCP-4.5']] <- file.path('input',paste0('hector_rcp',rcps[2],'.ini')) - globalScenarios[['RCP-6.0']] <- file.path('input',paste0('hector_rcp',rcps[3],'.ini')) - globalScenarios[['RCP-8.5']] <- file.path('input',paste0('hector_rcp',rcps[4],'.ini')) - - return(globalScenarios) -} - - -#' Global scenario color schemes -#' @export -get_globalScenarioColors <- function() { - - return(c("RCP 2.6" = "#5DBFDE", "RCP 4.5" = "#5CB95C", "RCP 6.0" = "#FBAB33", "RCP 8.5" = "#D7534E")) -} - - -#' Global temperature patterns -#' @export -get_globalTempPatterns <- function() { - - return(c("CanESM2" = "www/maps/tas_Amon_CanESM2_esmrcp85_r1i1p1_200601-210012_pattern.rds", - "CESM1-BGC" = "www/maps/tas_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds", - "GFDL-ESM2G" = "www/maps/tas_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds", - "MIROC-ESM" = "www/maps/tas_Amon_MIROC-ESM_esmrcp85_r1i1p1_200601-210012_pattern.rds", - "MPI-ESM-LR" = "www/maps/tas_Amon_MPI-ESM-LR_esmrcp85_r1i1p1_200601-210012_pattern.rds", - "MRI-ESM1" = "www/maps/tas_Amon_MRI-ESM1_esmrcp85_r1i1p1_200601-210012_pattern.rds")) -} - - -#' Global precipitation patterns list -#' @export -get_globalPrecipPatterns <- function() { - - return(c("CanESM2" = "www/maps/pr_Amon_CanESM2_rcp85_r1i1p1_200601-210012_pattern.rds", - "CESM1-BGC" = "www/maps/pr_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds", - "GFDL-ESM2G" = "www/maps/pr_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds", - "MIROC-ESM" = "www/maps/pr_Amon_MIROC-ESM_rcp85_r1i1p1_200601-210012_pattern.rds", - "MPI-ESM-LR" = "www/maps/pr_Amon_MPI-ESM-LR_rcp85_r1i1p1_200601-210012_pattern.rds", - "MRI-ESM1" = "www/maps/pr_Amon_MRI-ESM1_rcp85_r1i1p1_200601-210012_pattern.rds")) -} - - -#' Create master list of parameter lookup strings -#' @export -get_globalParameters <- function() { - - globalParameters <- vector() - globalParameters['pco2'] <- hector::PREINDUSTRIAL_CO2() - globalParameters['q10'] <- hector::Q10_RH() #2.0 - globalParameters['beta'] <- hector::BETA() #0.36 - globalParameters['ecs'] <- hector::ECS() #3.0 - globalParameters['aero'] <- hector::AERO_SCALE() #1.0 - globalParameters['volc'] <- hector::VOLCANIC_SCALE() #1.0 - globalParameters['diff'] <- hector::DIFFUSIVITY() #2.3 - - return(globalParameters) -} - - - -#' Default Hector parameters -#' @export -get_globalParamsDefault <- function() { - - return(c('alpha' = 1, 'beta' = 0.36, 'diff' = 2.3, 'S' = 3, 'C' = 276.09, 'q10_rh' = 2, 'volscl' = 1)) - -} - -#' CanESM2 Parameter Sets -#' @export -get_globalParamsCanESM2 <- function() { - - return(c('alpha' = 1.87, 'beta' = 0.08, 'diff' = 0.98, 'S' = 3.88, 'C' = 282.35, 'q10_rh' = 1.75, 'volscl' = 1.81)) - -} - - -#' CESM1-BGC Parameter Set -#' @export -get_globalParamsCESM1BGC <- function() { - - return(c('alpha' = -0.43, 'beta' = 0.0, 'diff' = 8, 'S' = 2.4, 'C' = 280.31, 'q10_rh' = 1.78, 'volscl' = 3.94)) - -} - - - -#' GFDL-ESM2G Parameter Set -#' @export -get_globalParamsGFDLESM2G <- function() { - - return(c('alpha' = 0.46, 'beta' = 0.07, 'diff' = 12.01, 'S' = 2.03, 'C' = 289.24, 'q10_rh' = 1.76, 'volscl' = 2.12)) - -} - - - -#' MIROC-ESM Parameter Set -#' @export -get_globalParamsMIROCESM <- function() { - - return(c('alpha' = 1.05, 'beta' = 0.02, 'diff' = 6.39, 'S' = 5.83, 'C' = 283.31, 'q10_rh' = 1.77, 'volscl' = 2.02)) - -} - - - -#' MPI-ESM-LR Parameter Set -#' @export -get_globalParamsMPIESMLR <- function() { - - return(c('alpha' = 1.22, 'beta' = 0.28, 'diff' = 2.93, 'S' = 3.66, 'C' = 289.13, 'q10_rh' = 1.75, 'volscl' = 0.70)) - -} - - - -#' MRI-ESM1 Parameter Set -#' @export -get_globalParamsMRIESM1 <- function() { - - return(c('alpha' = 1.42, 'beta' = 0.66, 'diff' = 4.21, 'S' = 2.04, 'C' = 289.49, 'q10_rh' = 1.76, 'volscl' = 0.27)) - -} - - -#' Create master list of variable lookups for "capabilities" (output variables for graphing) -#' @export -get_globalCapabilities <- function() { - - globalCapabilities <- list() - - # CARBON CYCLE - # "Land Carbon Flux" - globalCapabilities[['cc_lcf']] <- hector::LAND_CFLUX() - attr(globalCapabilities[['cc_lcf']], 'longName') <- "Land Carbon Flux" - - # "Atmospheric CO2" - globalCapabilities[['cc_co2']] <- hector::ATMOSPHERIC_CO2() - attr(globalCapabilities[['cc_co2']], 'longName') <- "Atmospheric CO2" - - # "Atmospheric Carbon Pool" - globalCapabilities[['cc_acp']] <- hector::ATMOSPHERIC_C() - attr(globalCapabilities[['cc_acp']], 'longName') <- "Atmospheric Carbon Pool" - - # "Fossil Fuel and Industrial Emissions" - globalCapabilities[['cc_ffi']] <- hector::FFI_EMISSIONS() - attr(globalCapabilities[['cc_ffi']], 'longName') <- "FFI Emissions" - attr(globalCapabilities[['cc_ffi']], 'unit') <- "GtC/yr" - - # "Land Use Change Emissions" - globalCapabilities[['cc_luc']] <- hector::LUC_EMISSIONS() - attr(globalCapabilities[['cc_luc']], 'longName') <- "LUC Emissions" - - # CONCENTRATIONS - # "Amospheric N2O" - globalCapabilities[['c_an20']] <- hector::ATMOSPHERIC_N2O() - attr(globalCapabilities[['c_an20']], 'longName') <- "Amospheric N2O" - - # "Preindustrial Atmospheric CO2" - globalCapabilities[['c_paco2']] <- hector::PREINDUSTRIAL_CO2() - attr(globalCapabilities[['c_paco2']], 'longName') <- "Preindustrial Atmospheric CO2" - - # "Preindustrial Ozone Concentration" - globalCapabilities[['c_po']] <- hector::PREINDUSTRIAL_O3() - attr(globalCapabilities[['c_po']], 'longName') <- "Preindustrial Ozone Concentration" - - - # EMISSIONS - # "Black Carbon Emissions" - globalCapabilities[['e_bc']] <- hector::EMISSIONS_BC() - attr(globalCapabilities[['e_bc']], 'longName') <- "Black Carbon Emissions" - attr(globalCapabilities[['e_bc']], 'unit') <- "Tg" - - # "N20 Emissions" - globalCapabilities[['e_n2o']] <- hector::EMISSIONS_N2O() - attr(globalCapabilities[['e_n2o']], 'longName') <- "N20 Emissions" - - # "NOx Emissions" - globalCapabilities[['e_nox']] <- hector::EMISSIONS_NOX() - attr(globalCapabilities[['e_nox']], 'longName') <- "NOx Emissions" - - # "CO Emissions" - globalCapabilities[['e_co']] <- hector::EMISSIONS_CO() - attr(globalCapabilities[['e_co']], 'longName') <- "CO Emissions" - - # "NMVOC Emissions" - globalCapabilities[['e_nmvoc']] <- hector::EMISSIONS_NMVOC() - attr(globalCapabilities[['e_nmvoc']], 'longName') <- "NMVOC Emissions" - - # "Organic Carbon Emissions" - globalCapabilities[['e_oc']] <- hector::EMISSIONS_OC() - attr(globalCapabilities[['e_oc']], 'longName') <- "Organic Carbon Emissions" - attr(globalCapabilities[['e_oc']], 'unit') <- "Tg" - - # FORCINGS - # "RF - Total" - globalCapabilities[['f_rft']] <- hector::RF_TOTAL() - attr(globalCapabilities[['f_rft']], 'longName') <- "RF - Total" - - # "RF - Albedo" - globalCapabilities[['f_alb']] <- hector::RF_T_ALBEDO() - attr(globalCapabilities[['f_alb']], 'longName') <- "RF - Albedo" - - # "RF - CO2" - globalCapabilities[['f_co2']] <- hector::RF_CO2() - attr(globalCapabilities[['f_co2']], 'longName') <- "RF - CO2" - - # "RF - N2O" - globalCapabilities[['f_n2o']] <- hector::RF_N2O() - attr(globalCapabilities[['f_n2o']], 'longName') <- "RF - N2O" - - # "RF - H2O" - # globalCapabilities[['f_h2o']] <- hector::RF_H2O() - # attr(globalCapabilities[['f_h2o']], 'longName') <- "RF - H2O" - - # "RF - Ozone" - # globalCapabilities[['f_oz']] <- hector::RF_O3() - # attr(globalCapabilities[['f_oz']], 'longName') <- "RF - Ozone" - - # "RF - Black Carbon" - globalCapabilities[['f_bc']] <- hector::RF_BC() - attr(globalCapabilities[['f_bc']], 'longName') <- "RF - Black Carbon" - - # "RF - Organic Carbon" - globalCapabilities[['f_oc']] <- hector::RF_OC() - attr(globalCapabilities[['f_oc']], 'longName') <- "RF - Organic Carbon" - - # "RF - SO2 Direct" - globalCapabilities[['f_so2d']] <- hector::RF_SO2D() - attr(globalCapabilities[['f_so2d']], 'longName') <- "RF - SO2 Direct" - - # "RF - SO2 Indirect" - globalCapabilities[['f_so2i']] <- hector::RF_SO2I() - attr(globalCapabilities[['f_so2i']], 'longName') <- "RF - SO2 Indirect" - - # "RF - SO2 Total" - globalCapabilities[['f_so2t']] <- hector::RF_SO2() - attr(globalCapabilities[['f_so2t']], 'longName') <- "RF - SO2 Total" - - # "RF - Volcanic Activity" - globalCapabilities[['f_va']] <- hector::RF_VOL() - attr(globalCapabilities[['f_va']], 'longName') <- "RF - Volcanic Activity" - - # "RF - CH4" - globalCapabilities[['f_ch4']] <- hector::RF_CH4() - attr(globalCapabilities[['f_ch4']], 'longName') <- "RF - CH4" - - # HALOCARBON EMISSIONS - # "CF4 Emissions" - globalCapabilities[['he_cf4']] <- hector::EMISSIONS_CF4() - attr(globalCapabilities[['he_cf4']], 'longName') <- "CF4 Emissions" - - # "C2F6 Emissions" - globalCapabilities[['he_c2f6']] <- hector::EMISSIONS_C2F6() - attr(globalCapabilities[['he_c2f6']], 'longName') <- "C2F6 Emissions" - - # "HFC-23 Emissions" - globalCapabilities[['he_hfc23']] <- hector::EMISSIONS_HFC23() - attr(globalCapabilities[['he_hfc23']], 'longName') <- "HFC-23 Emissions" - - # "HFC-32 Emissions" - globalCapabilities[['he_hfc32']] <- hector::EMISSIONS_HFC32() - attr(globalCapabilities[['he_hfc32']], 'longName') <- "HFC-32 Emissions" - - # "HFC-4310 Emissions" - globalCapabilities[['he_hfc4310']] <- hector::EMISSIONS_HFC4310() - attr(globalCapabilities[['he_hfc4310']], 'longName') <- "HFC-4310 Emissions" - - # "HFC-125 Emissions" - globalCapabilities[['he_hfc125']] <- hector::EMISSIONS_HFC125() - attr(globalCapabilities[['he_hfc125']], 'longName') <- "HFC-125 Emissions" - - # "HFC-134a Emissions" - globalCapabilities[['he_hfc134a']] <- hector::EMISSIONS_HFC134A() - attr(globalCapabilities[['he_hfc134a']], 'longName') <- "HFC-134a Emissions" - - # "HFC-143a Emissions" - globalCapabilities[['he_hfc143a']] <- hector::EMISSIONS_HFC143A() - attr(globalCapabilities[['he_hfc143a']], 'longName') <- "HFC-143a Emissions" - - # "HFC-227ea Emissions" - globalCapabilities[['he_hfc227ea']] <- hector::EMISSIONS_HFC227EA() - attr(globalCapabilities[['he_hfc227ea']], 'longName') <- "HFC-227ea Emissions" - - # "HFC-254fa Emissions" - globalCapabilities[['he_245fa']] <- hector::EMISSIONS_HFC245FA() - attr(globalCapabilities[['he_245fa']], 'longName') <- "HFC-254fa Emissions" - - # "SF6 Emissions"' - globalCapabilities[['he_sf6']] <- hector::EMISSIONS_SF6() - attr(globalCapabilities[['he_sf6']], 'longName') <- "SF6 Emissions" - - # "CFC-11 Emissions" - globalCapabilities[['he_cfc11']] <- hector::EMISSIONS_CFC11() - attr(globalCapabilities[['he_cfc11']], 'longName') <- "CFC-11 Emissions" - - # "CFC-12 Emissions" - globalCapabilities[['he_cfc12']] <- hector::EMISSIONS_CFC12() - attr(globalCapabilities[['he_cfc12']], 'longName') <-"CFC-12 Emissions" - - # "CFC-113 Emissions" - globalCapabilities[['he_cfc113']] <- hector::EMISSIONS_CFC113() - attr(globalCapabilities[['he_cfc113']], 'longName') <-"CFC-113 Emissions" - - # "CFC-114 Emissions" - globalCapabilities[['he_cfc114']] <- hector::EMISSIONS_CFC114() - attr(globalCapabilities[['he_cfc114']], 'longName') <-"CFC-114 Emissions" - - # "CFC-115 Emissions" - globalCapabilities[['he_cfc115']] <- hector::EMISSIONS_CFC115() - attr(globalCapabilities[['he_cfc115']], 'longName') <-"CFC-115 Emissions" - - # "CCl4 Emissions" - globalCapabilities[['he_ccl4']] <- hector::EMISSIONS_CCL4() - attr(globalCapabilities[['he_ccl4']], 'longName') <-"CCl4 Emissions" - - # "CH3CCl3 Emissions" - globalCapabilities[['he_ch3ccl3']] <- hector::EMISSIONS_CH3CCL3() - attr(globalCapabilities[['he_ch3ccl3']], 'longName') <- "CH3CCl3 Emissions" - - # "HCFC-22 Emissions" - # globalCapabilities[['he_hcfc22']] <- hector::EMISSIONS_HCF22() - # attr(globalCapabilities[['he_hcfc22']], 'longName') <- "HCFC-22 Emissions" - - # "HCFC-141b Emissions" - # globalCapabilities[['he_hcfc141b']] <- hector::EMISSIONS_HCF141B() - # attr(globalCapabilities[['he_hcfc141b']], 'longName') <- "HCFC-141b Emissions" - - # "HCFC-142b Emissions" - # globalCapabilities[['he_hcfc142b']] <- hector::EMISSIONS_HCF142B() - # attr(globalCapabilities[['he_hcfc142b']], 'longName') <- "HCFC-142b Emissions" - - # "Halon-1211 Emissions" - globalCapabilities[['he_halon1211']] <- hector::EMISSIONS_HALON1211() - attr(globalCapabilities[['he_halon1211']], 'longName') <- "Halon-1211 Emissions" - - # "Halon-1301 Emissions" - globalCapabilities[['he_halon1301']] <- hector::EMISSIONS_HALON1301() - attr(globalCapabilities[['he_halon1301']], 'longName') <- "Halon-1301 Emissions" - - # "Halon-2402 Emissions" - globalCapabilities[['he_halon2402']] <- hector::EMISSIONS_HALON2402() - attr(globalCapabilities[['he_halon2402']], 'longName') <- "Halon-2402 Emissions" - - # "CH3Cl Emissions" - globalCapabilities[['he_ch3cl']] <- hector::EMISSIONS_CH3CL() - attr(globalCapabilities[['he_ch3cl']], 'longName') <- "CH3Cl Emissions" - - # "CH3Br Emissions" - globalCapabilities[['he_ch3br']] <- hector::EMISSIONS_CH3BR() - attr(globalCapabilities[['he_ch3br']], 'longName') <- "CH3Br Emissions" - - # HALOCARBON FORCINGS - # "CF4 Forcing" - globalCapabilities[['hf_cf4']] <- hector::RF_CF4() - attr(globalCapabilities[['hf_cf4']], 'longName') <- "CF4 Forcing" - - # "C2F6 Forcing" - globalCapabilities[['hf_c2f6']] <- hector::RF_C2F6() - attr(globalCapabilities[['hf_c2f6']], 'longName') <- "C2F6 Forcing" - - # "HFC-23 Forcing" - globalCapabilities[['hf_hfc23']] <- hector::RF_HFC23() - attr(globalCapabilities[['hf_hfc23']], 'longName') <- "HFC-23 Forcing" - - # "HFC-32 Forcing" - globalCapabilities[['hf_hfc32']] <- hector::RF_HFC32() - attr(globalCapabilities[['hf_hfc32']], 'longName') <- "HFC-32 Forcing" - - # "HFC-4310 Forcing" - globalCapabilities[['hf_hfc4310']] <- hector::RF_HFC4310() - attr(globalCapabilities[['hf_hfc4310']], 'longName') <- "HFC-4310 Forcing" - - # "HFC-125 Forcing" - globalCapabilities[['hf_hfc125']] <- hector::RF_HFC125() - attr(globalCapabilities[['hf_hfc125']], 'longName') <- "HFC-125 Forcing" - - # "HFC-134a Forcing" - globalCapabilities[['hf_hfc134a']] <- hector::RF_HFC134A() - attr(globalCapabilities[['hf_hfc134a']], 'longName') <- "HFC-134a Forcing" - - # "HFC-143a Forcing" - globalCapabilities[['hf_hfc143a']] <- hector::RF_HFC143A() - attr(globalCapabilities[['hf_hfc143a']], 'longName') <- "HFC-143a Forcing" - - # "HFC-227ea Forcing" - globalCapabilities[['hf_hfc227ea']] <- hector::RF_HFC227EA() - attr(globalCapabilities[['hf_hfc227ea']], 'longName') <- "HFC-227ea Forcing" - - # "HFC-245fa Forcing" - globalCapabilities[['hf_hfc245fa']] <- hector::RF_HFC245FA() - attr(globalCapabilities[['hf_hfc245fa']], 'longName') <- "HFC-245fa Forcing" - - # "SF6 Forcing" - globalCapabilities[['hf_hfcsf6']] <- hector::RF_SF6() - attr(globalCapabilities[['hf_hfcsf6']], 'longName') <- "SF6 Forcing" - - # "CFC-11 Forcing" - globalCapabilities[['hf_cfc11']] <- hector::RF_CFC11() - attr(globalCapabilities[['hf_cfc11']], 'longName') <- "CFC-11 Forcing" - - # "CFC-12 Forcing" - globalCapabilities[['hf_cfc12']] <- hector::RF_CFC12() - attr(globalCapabilities[['hf_cfc12']], 'longName') <- "CFC-12 Forcing" - - # "CFC-113 Forcing" - globalCapabilities[['hf_cfc113']] <- hector::RF_CFC113() - attr(globalCapabilities[['hf_cfc113']], 'longName') <- "CFC-113 Forcing" - - # "CFC-114 Forcing" - globalCapabilities[['hf_cfc114']] <- hector::RF_CFC114() - attr(globalCapabilities[['hf_cfc114']], 'longName') <- "CFC-114 Forcing" - - # "CFC-115 Forcing" - globalCapabilities[['hf_cfc115']] <- hector::RF_CFC115() - attr(globalCapabilities[['hf_cfc115']], 'longName') <- "CFC-115 Forcing" - - # "CCl4 Forcing" - globalCapabilities[['hf_ccl4']] <- hector::RF_CCL4() - attr(globalCapabilities[['hf_ccl4']], 'longName') <- "CCl4 Forcing" - - # "CH3CCl3 Forcing" - globalCapabilities[['hf_ch3ccl3']] <- hector::RF_CH3CCL3() - attr(globalCapabilities[['hf_ch3ccl3']], 'longName') <- "CH3CCl3 Forcing" - - # "HCFC-22 Forcing" - # globalCapabilities[['hf_hcfc22']] <- hector::RF_HCF22() - # attr(globalCapabilities[['hf_hcfc22']], 'longName') <- "HCFC-22 Forcing" - - # "HCFC-141b Forcing" - # globalCapabilities[['hf_hcfc141b']] <- hector::RF_HCFC141B() - # attr(globalCapabilities[['hf_hcfc141b']], 'longName') <- "HCFC-141b Forcing" - - # "HCFC-142b Forcing" - # globalCapabilities[['hf_hcfc142b']] <- hector::RF_HCFC142B() - # attr(globalCapabilities[['hf_hcfc142b']], 'longName') <- "HCFC-142b Forcing" - - # "Halon-1211 Forcing" - globalCapabilities[['hf_halon1211']] <- hector::RF_HALON1211() - attr(globalCapabilities[['hf_halon1211']], 'longName') <- "Halon-1211 Forcing" - - # "Halon-1301 Forcing" - globalCapabilities[['hf_halon1301']] <- hector::RF_HALON1301() - attr(globalCapabilities[['hf_halon1301']], 'longName') <- "Halon-1301 Forcing" - - # "Halon-2402 Forcing" - globalCapabilities[['hf_halon2402']] <- hector::RF_HALON2402() - attr(globalCapabilities[['hf_halon2402']], 'longName') <- "Halon-2402 Forcing" - - # "CH3Cl Forcing" - globalCapabilities[['hf_ch3cl']] <- hector::RF_CH3CL() - attr(globalCapabilities[['hf_ch3cl']], 'longName') <- "CH3Cl Forcing" - - # "CH3Br Forcing" - globalCapabilities[['hf_ch3br']] <- hector::RF_CH3BR() - attr(globalCapabilities[['hf_ch3br']], 'longName') <- "CH3Br Forcing" - - # METHANE - # "Atmospheric CH4" - globalCapabilities[['m_a_ch4']] <- hector::ATMOSPHERIC_CH4() - attr(globalCapabilities[['m_a_ch4']], 'longName') <- "Atmospheric CH4" - - # "Preindustrial Atmospheric CH4" - globalCapabilities[['m_pa_ch4']] <- hector::PREINDUSTRIAL_CH4() - attr(globalCapabilities[['m_pa_ch4']], 'longName') <- "Preindustrial Atmospheric CH4" - - # "Emissions CH4" - globalCapabilities[['m_e_ch4']] <- hector::EMISSIONS_CH4() - attr(globalCapabilities[['m_e_ch4']], 'longName') <- "Emissions CH4" - - # "Natural CH4 Emissions" - globalCapabilities[['m_n_ch4']] <- hector::NATURAL_CH4() - attr(globalCapabilities[['m_n_ch4']], 'longName') <- "Natural CH4 Emissions" - - # "Methane Loss - Soil" - globalCapabilities[['m_soil_loss']] <- hector::LIFETIME_SOIL() - attr(globalCapabilities[['m_soil_loss']], 'longName') <- "Methane Loss - Soil" - - # "Methane Loss - Straosphere" - globalCapabilities[['m_strat_loss']] <- hector::LIFETIME_STRAT() - attr(globalCapabilities[['m_strat_loss']], 'longName') <- "Methane Loss - Straosphere" - - # OCEAN - # "Ocean Carbon Flux" - globalCapabilities[['o_cf']] <- hector::OCEAN_CFLUX() - attr(globalCapabilities[['o_cf']], 'longName') <- "Ocean Carbon Flux" - - # "Ocean Total Carbon" - globalCapabilities[['o_tc']] <- hector::OCEAN_C() - attr(globalCapabilities[['o_tc']], 'longName') <- "Ocean Total Carbon" - - # "Ocean Surface High-Lat Carbon" - globalCapabilities[['o_os_hlc']] <- hector::OCEAN_C_HL() - attr(globalCapabilities[['o_os_hlc']], 'longName') <- "Ocean Surface High-Lat Carbon" - - # "Ocean Surface Low-Lat Carbon" - globalCapabilities[['o_os_llc']] <- hector::OCEAN_C_LL() - attr(globalCapabilities[['o_os_llc']], 'longName') <- "Ocean Surface Low-Lat Carbon" - - # "Ocean Intermediate Carbon" - globalCapabilities[['o_ic']] <- hector::OCEAN_C_IO() - attr(globalCapabilities[['o_ic']], 'longName') <- "Ocean Intermediate Carbon" - - # "Ocean Deep Carbon" - globalCapabilities[['o_dc']] <- hector::OCEAN_C_DO() - attr(globalCapabilities[['o_dc']], 'longName') <- "Ocean Deep Carbon" - - # "Thermohaline Overturning" - globalCapabilities[['o_to']] <- hector::TT() - attr(globalCapabilities[['o_to']], 'longName') <- "Thermohaline Overturning" - - # "High-Lat Overturning" - globalCapabilities[['o_hl_o']] <- hector::TU() - attr(globalCapabilities[['o_hl_o']], 'longName') <- "High-Lat Overturning" - - # "Warm-Intermediate Exchange" - globalCapabilities[['o_wie']] <- hector::TWI() - attr(globalCapabilities[['o_wie']], 'longName') <- "Warm-Intermediate Exchange" - - # "Intermediate-Deep Exchange" - globalCapabilities[['o_ide']] <- hector::TID() - attr(globalCapabilities[['o_ide']], 'longName') <- "Intermediate-Deep Exchange" - - # "High Latitude Ph" - globalCapabilities[['o_hl_ph']] <- hector::PH_HL() - attr(globalCapabilities[['o_hl_ph']], 'longName') <- "High Latitude Ph" - - # "Low Latitude Ph" - globalCapabilities[['o_ll_ph']] <- hector::PH_LL() - attr(globalCapabilities[['o_ll_ph']], 'longName') <- "Low Latitude Ph" - - # "Atmosphere-Ocean Flux - High Lat" - globalCapabilities[['o_hl_aof']] <- hector::ATM_OCEAN_FLUX_HL() - attr(globalCapabilities[['o_hl_aof']], 'longName') <- "Atmosphere-Ocean Flux - High Lat" - - # "Atmosphere-Ocean Flux - Low Lat" - globalCapabilities[['o_ll_aof']] <- hector::ATM_OCEAN_FLUX_LL() - attr(globalCapabilities[['o_ll_aof']], 'longName') <- "Atmosphere-Ocean Flux - Low Lat" - - # "Partial Pressure CO2 - High Lat" - globalCapabilities[['o_hl_pp_co2']] <- hector::PCO2_HL() - attr(globalCapabilities[['o_hl_pp_co2']], 'longName') <- "Partial Pressure CO2 - High Lat" - - # "Partial Pressure CO2 - Low Lat" - globalCapabilities[['o_ll_pp_co2']] <- hector::PCO2_LL() - attr(globalCapabilities[['o_ll_pp_co2']], 'longName') <- "Partial Pressure CO2 - Low Lat" - - # "Dissolved Inorganic C - High Lat" - globalCapabilities[['o_hl_dic']] <- hector::DIC_HL() - attr(globalCapabilities[['o_hl_dic']], 'longName') <- "Dissolved Inorganic C - High Lat" - - # "Dissolved Inorganic C - Low Lat"' - globalCapabilities[['o_ll_dic']] <- hector::DIC_LL() - attr(globalCapabilities[['o_ll_dic']], 'longName') <- "Dissolved Inorganic C - Low Lat" - - # "Ocean Temperature - High Lat" - globalCapabilities[['o_hl_t']] <- hector::TEMP_HL() - attr(globalCapabilities[['o_hl_t']], 'longName') <- "Ocean Temperature - High Lat" - - # "Ocean Temperature - Low Lat" - globalCapabilities[['o_ll_t']] <- hector::TEMP_LL() - attr(globalCapabilities[['o_ll_t']], 'longName') <- "Ocean Temperature - Low Lat" - - # "Carbonate Concentration - High Lat" - globalCapabilities[['o_hl_cc']] <- hector::CO3_HL() - attr(globalCapabilities[['o_hl_cc']], 'longName') <- "Carbonate Concentration - High Lat" - - # "Carbonate Concentration - Low Lat" - globalCapabilities[['o_ll_cc']] <- hector::CO3_LL() - attr(globalCapabilities[['o_ll_cc']], 'longName') <- "Carbonate Concentration - Low Lat" - - # SO2 - # "Natural SO2" - globalCapabilities[['so2_n']] <- hector::NATURAL_SO2() - attr(globalCapabilities[['so2_n']], 'longName') <- "Natural SO2" - - # "Year 2000 SO2" - globalCapabilities[['so2_y2k']] <- hector::Y2000_SO2() - attr(globalCapabilities[['so2_y2k']], 'longName') <- "Year 2000 SO2" - - # "Anthropogenic SO2" - globalCapabilities[['so2_a']] <- hector::EMISSIONS_SO2() - attr(globalCapabilities[['so2_a']], 'longName') <- "Anthropogenic SO2" - - # "Volcanic SO2" - globalCapabilities[['so2_v']] <- hector::VOLCANIC_SO2() - attr(globalCapabilities[['so2_v']], 'longName') <- "Volcanic SO2" - - # TEMPERATURE - # "Global Mean Temp" - globalCapabilities[['t_gmt']] <- hector::GLOBAL_TEMP() - attr(globalCapabilities[['t_gmt']], 'longName') <- "Global Mean Temperature" - - # "Equilibrium Global Temp" - globalCapabilities[['t_egt']] <- hector::GLOBAL_TEMPEQ() - attr(globalCapabilities[['t_egt']], 'longName') <- "Equilibrium Global Temperature" - - # "Ocean Surface Temp" - globalCapabilities[['t_ost']] <- hector::OCEAN_SURFACE_TEMP() - attr(globalCapabilities[['t_ost']], 'longName') <- "Ocean Surface Temperature" - - # "Ocean Air Temp" - globalCapabilities[['t_oat']] <- hector::OCEAN_AIR_TEMP() - attr(globalCapabilities[['t_oat']], 'longName') <- "Ocean Air Temperature" - - # "Land Temp Anomaly" - # globalCapabilities[['t_lta']] <- hector::LAND_TEMP() - # attr(globalCapabilities[['t_lta']], 'longName') <- "Land Temperature Anomaly" - - # "Heat Flux - Mixed Layer Ocean" - globalCapabilities[['t_hf_mlo']] <- hector::FLUX_MIXED() - attr(globalCapabilities[['t_hf_mlo']], 'longName') <- "Heat Flux - Mixed Layer Ocean" - - # "Heat Flux - Interior Layer Ocean" - globalCapabilities[['t_hf_ilo']] <- hector::FLUX_INTERIOR() - attr(globalCapabilities[['t_hf_ilo']], 'longName') <- "Heat Flux - Interior Layer Ocean" - - # "Total Heat Flux - Ocean" - globalCapabilities[['t_hf_t']] <- hector::HEAT_FLUX() - attr(globalCapabilities[['t_hf_t']], 'longName') <- "Total Heat Flux - Ocean" - - return(globalCapabilities) +#' Global scenario list with Hector input file +#' @export +get_scenarios <- function() { + + scenarios <- list("SSP 1-1.9"="input/hector_ssp119.ini", + "SSP 1-2.6"="input/hector_ssp126.ini", + "SSP 2-4.5"="input/hector_ssp245.ini", + "SSP 3-7.0"="input/hector_ssp370.ini", + "SSP 4-3.4"="input/hector_ssp434.ini", + "SSP 4-6.0"="input/hector_ssp460.ini", + "SSP 5-3.4OS"="input/hector_ssp534-over.ini", + "SSP 5-8.5"="input/hector_ssp585.ini") + + return(scenarios) +} + +#' Global list of variable titles +#' @export +get_titles <- function() { + + title <- list("CO2_concentration" = "Atmospheric CO2", + "atmos_co2" = "Atmospheric Carbon Pool", + "ffi_emissions" = "FFI Emissions", + "luc_emissions" = "LUC Emissions", + "N2O_concentration" = "N2O Concentration", + "BC_emissions" = "Black Carbon Emissions", + "OC_emissions" = "Organic Carbon Emissions", + "RF_tot" = "Total Radiative Forcing", + "RF_albedo" = "Albedo Radiative Forcing", + "RF_CO2" = "CO2 Radiative Forcing", + "RF_N2O" = "N2O Radiative Forcing", + "RF_BC" = "Black Carbon Radiative Forcing", + "RF_OC" = "Organic Carbon Radiative Forcing", + "RF_SO2" = "Total SO2 Radiative Forcing", + "RF_vol" = "Volcanic Activity Radiative Forcing", + "FCH4" = "CH4 Radiative Forcing", + "RF_CF4" = "CF4 Radiative Forcing", + "RF_C2F6" = "C2F6 Radiative Forcing", + "RF_HFC23" = "HFC-23 Radiative Forcing", + "RF_HFC4310" = "HFC-4310 Radiative Forcing", + "RF_HFC125" = "HFC-125 Radiative Forcing", + "RF_HFC143a" = "HFC-143a Radiative Forcing", + "RF_HFC245fa" = "HFC-245fa Radiative Forcing", + "RF_SF6" = "SF6 Radiative Forcing", + "RF_CFC11" = "CFC-11 Radiative Forcing", + "RF_CFC12" = "CFC-12 Radiative Forcing", + "RF_CFC113" = "CFC-113 Radiative Forcing", + "RF_CFC114" = "CFC-114 Radiative Forcing", + "RF_CFC115" = "CFC-115 Radiative Forcing", + "RF_CCl4" = "CCl4 Radiative Forcing", + "RF_CH3CCl3" = "CH3CCl3 Radiative Forcing", + "RF_halon1211" = "Halon-1211 Radiative Forcing", + "RF_halon1301" = "Halon-1301 Radiative Forcing", + "RF_halon2402" = "Halon-2402 Radiative Forcing", + "RF_CH3Cl" = "CH3Cl Radiative Forcing", + "RF_CH3Br" = "CH3Br Radiative Forcing", + "CH4_concentration" = "Atmospheric CH4", + "CH4_emissions" = "CH4 Emissions", + "SO2_emissions" = "Anthropogenic SO2", + "SV" = "Volcanic SO2", + "global_tas" = "Global Mean Temperature", + "gmst" = "Equilibrium Global Temperature", + "sst" = "Ocean Surface Temperature", + "ocean_tas" = "Ocean Air Temperature", + "heatflux_mixed" = "Heat Flux - Mixed Layer Ocean", + "heatflux_interior" = "Heat Flux - Interior Layer Ocean", + "heatflux" = "Total Heat Flux - Ocean") + + return(title) } diff --git a/inst/shinyApp/app.r b/inst/shinyApp/app.r new file mode 100644 index 0000000..945b7fa --- /dev/null +++ b/inst/shinyApp/app.r @@ -0,0 +1,226 @@ +source("global.r", local = TRUE) + +ui <- fluidPage(theme = shinythemes::shinytheme("readable"), + includeCSS("./components/layout/style.css"), + tags$div(class = "container", + tags$img(src = "images/earth-header.png", height = "300px", width = "100%", class = "earth", alt = "Earth's atmosphere"), + tags$div( + a( + img(src = "images/GCIMS_logo_alt.svg", class = "logo"), href = "https://gcims.pnnl.gov/", target = "_blank"), + h1("HectorUI", class = "header-text-title"), + h2("An Interactive Climate Model", class = "header-text-sub", style = "font-weight:normal; "), + ), + ), + navbarPage( + id = "nav", + title = "", + collapsible = TRUE, + tabPanel(title = "Home", + fluidRow( + column(7, + includeHTML("./components/layout/homepage.html") + ), + column(4, div( + br(), + br(), + actionButton(inputId = "launch_scenario", + label = "Explore Hector", + style = "background: #4174C3; color: white; + font-size: 24px; padding: 32px 24px; + box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);"), + align = "center" + )) + ) + ), + tabPanel(title = "Explore Hector", + fluidRow( + run_ui("run_1") + ) + ), + tabPanel(title = "Custom Emissions", + fluidRow( + custom_ui("custom_1") + ) + ), + tabPanel(title = "Carbon Tracking", + fluidRow( + tracking_ui("tracking_1") + ) + ), + tabPanel(title = "Guides", + mainPanel( + style="vertical-align: middle;", + h3("Ready to get started?", + tags$a("View the Guide/Tutorial", href="https://jgcri.github.io/hectorui/articles/Tutorial.html", target="blank")), + br(), + HTML('') + + ) + ), + tabPanel(title = "About", + + mainPanel + ( + width = 9, + class = "about-info", + tabsetPanel + ( + # Information Tab Panel + tabPanel + ( + p(icon("info-circle", "fa-2x"), "Hector Information", value="infoTab"), + tags$table( + tags$tr( + tags$td(width = "50%", + h5("Source code and contribution is available on the ", + a("HectorUI Github page", href = "https://github.com/JGCRI/hector", target = "_blank")), + ), + ) + ), + br(), + h5("Documentation/Downloads"), + tags$hr(class="hrNav"), + p("The primary link to the Hector model documentation is the ", + a("online manual", href="https://jgcri.github.io/hector/articles/manual", target="blank"), + ", which is included in the vignettes/manual directory. The code is also documented with ", + a("Doxygen-style", href="http://doxygen.org", target="blank"), + " comments."), + p("A formal model description paper via ", + a("Hartin et al. 2015", href="http://www.geosci-model-dev.net/8/939/2015/gmd-8-939-2015.html", target="blank"), + " documents its science internals and performance relative to observed data, the ", + a("CMIP5", href="http://cmip-pcmdi.llnl.gov/cmip5/", target="blank"), + " archive, and the reduced-complexity ", + a("MAGICC",href="http://www.magicc.org", target="blank"), + " model (as of ", + a("version 1.0", href="https://github.com/JGCRI/hector/tree/v1.0", target="blank"), + "). In addition, we have developed two package vignettes demonstrating the ", + a("basics of the Hector R interface", href="http://jgcri.github.io/hector/articles/intro-to-hector.html", target="blank"), + ", and an example application of ", + a("solving for an emissions pathway", href="http://jgcri.github.io/hector/articles/hector_apply.html", target="blank"), + "."), + tags$ul( + tags$li( + h5(tags$a("Hector User Interface package download/source link ", href="https://github.com/JGCRI/Hector-ui", target="blank"))), + tags$li( + h5(tags$a("Hector R / Hector C++ package download/source link", href="https://github.com/JGCRI/Hector", target="blank"))), + tags$li( + h5(tags$a("Code and data for Hector calibration papers", href="https://zenodo.org/record/3515153#.Xg9iGuhKiUl", target="blank"), + tags$img(src="https://zenodo.org/badge/DOI/10.5281/zenodo.3515153.svg", class="zenodo", alt="DOI") + ) + ) + ), + br(), + h5("Tools and software that work with Hector"), + tags$hr(class="hrNav"), + tags$ul( + tags$li( + a("GCAM", href="https://github.com/JGCRI/gcam-core", target="blank"), + ": Hector can be used as the climate component in the GCAM integrated assessment model."), + tags$li( + a("pyHector", href="https://github.com/openclimatedata/pyhector", target="blank"), + ": A python interface to Hector."), + tags$li( + a("R/Shiny", href="https://shiny.rstudio.com/", target="blank"), + ": This application was built as an R-Shiny package wrapper over the existing model code.") + ) + ), + # Citation Tab Panel + tabPanel + ( + p(icon("copyright", "fa-2x"), + "License/How to Cite", + value="citeTab"), + h5("License Information"), + tags$hr(class="hrNav"), + tags$div(class="citationsDiv", style="width: 500px;", + tags$table(class="citationsTable", + tags$tr( + tags$td(rowspan=2, width=45, icon("balance-scale", "fa-2x")), + tags$td(("All Hector applications are licensed under the") + ), + tags$tr( + tags$td( + tags$a( + h6("GNU General Public License v3.0"), href="https://github.com/JGCRI/hector/blob/master/LICENSE.md", target="blank") + ) + ) + ), + tags$table(class="citationsTable", + tags$tr( + tags$td(p("Permissions of this strong copyleft license are conditioned on making available complete source code + of licensed works and modifications, which include larger works using a licensed work, under the same + license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights.") + ) + ) + ) + ) + ), + div(class="citationsDiv", + tags$span(class="citationsHeader", "Permissions"), + tags$ul(class="ul-None", + tags$li(icon("check"),"Commercial use"), + tags$li(icon("check"),"Modification"), + tags$li(icon("check"),"Distribution"), + tags$li(icon("check"),"Patent use"), + tags$li(icon("check"),"Private use")) + ), + div(class="citationsDiv", + tags$span(class="citationsHeader", "Limitations"), + tags$ul(class="ul-None", + tags$li(icon("times")," Liability"), + tags$li(icon("times")," Warranty")) + ), + div(class="citationsDiv", + tags$span(class="citationsHeader", "Conditions"), + tags$ul(class="ul-None", + tags$li(icon("info"),"License and copyright notice"), + tags$li(icon("info"),"State changes"), + tags$li(icon("info"),"Disclose source"), + tags$li(icon("info"),"Same license")) + ), + h5("How to Cite Hector"), + tags$hr(class="hrNav"), + p("When using graphs, figures, or other output from this applicaton please cite both the Hector Core", + br(), + "application as well as the Hector User Interface (this application). The DOI for both is provided below:"), + tags$ul( + tags$li( + h5(tags$a("Hector User Interface DOI", href="https://doi.org/10.5281/zenodo.3603216", target = "blank"), + tags$img(src="https://zenodo.org/badge/DOI/10.5281/zenodo.3603216.svg", alt="DOI", class = "imgNoPadding"))), + tags$li( + h5(tags$a("Hector Core DOI", href="https://doi.org/10.5281/zenodo.3515153", target = "blank"), + tags$img(src="https://zenodo.org/badge/DOI/10.5281/zenodo.3515153.svg", alt="DOI", class = "imgNoPadding"))) + ) + ), + # Feedback Tab Panel + tabPanel + ( + p(icon("comment", "fa-2x"), "Support", value="feedbackTab"), + h5("To contact the Hector model team regarding any questions, concerns, suggestions, or problems, please submit a Hector", + a("Github issues.", href = "https://github.com/JGCRI/hector/issues/new/choose")), + h5("For HectorUI questions, concerns, suggestions, or problems, please submit a HectorUI", + a("Github issues.", href = "https://github.com/JGCRI/hectorui/issues/new/choose")) + ) + ) + ) + ) + ), + hr(), + includeHTML("./components/layout/footer.html") +) + +server <- function(input, output, session) { + r6 <- HectorInputs$new() # r6 class + r6_tracking <- HectorInputs$new() # separate r6 class for carbon tracking + r6_custom <- HectorInputs$new() + observeEvent(input$launch_scenario, updateTabsetPanel(session, "nav", selected = "Explore Hector"), ignoreInit = TRUE) + + run_server("run_1", r6 = r6) + summary_server("summary_1", r6 = r6) + download_server("download_1", r6 = r6) + tracking_server("tracking_1") + custom_server("custom_1", r6 = r6_custom) +} + +# Run the application +shinyApp(ui = ui, server = server) diff --git a/inst/shinyApp/components/functions/func_custom_emissions.R b/inst/shinyApp/components/functions/func_custom_emissions.R new file mode 100644 index 0000000..9062b79 --- /dev/null +++ b/inst/shinyApp/components/functions/func_custom_emissions.R @@ -0,0 +1,54 @@ +# Function to load in custom emissions + +loadCustomEmissions <- function() { + print("in load custom") + + if (is.null(input$input_custom_emissions_file) | (is.na(input$input_custom_scenarioName) | is.null(input$input_custom_scenarioName) | (input$input_custom_scenarioName == ""))) + { + shinyalert::shinyalert("Missing Information", "Please name the scenario and load an emissions file before attempting to load the scenario.", type = "warning") + return(NULL) + } + + scenarioName <- input$input_custom_scenarioName + + tryCatch( + { + # Load scenario and custom emissions + inifile <- system.file(input$input_custom_SSP, package='hector', mustWork=TRUE) + emissions_file <- input$input_custom_emissions_file$datapath + emissions_data <- read.csv(file=emissions_file, header=TRUE, sep=",", skip = 5) + emissions_headers <- read.csv(file=emissions_file, header=FALSE, sep=",", skip = 4) + dates_col <- emissions_data$Date + + withProgress(message = paste('Creating Custom Scenario ', scenarioName, "...\n"), value = 1/2, + { + core <<- newcore(inifile, suppresslogging=TRUE, name=scenarioName) + run(core, 2100) + incProgress(1/1, detail = paste("Load complete.")) + Sys.sleep(0.2) + }) + + # Set custom emissions here + for(i in 2:ncol(emissions_data)) + { + setvar(core = core, dates = emissions_data[, 1],var = colnames(emissions_data)[i], values = emissions_data[, i], unit = as.character(emissions_headers[[paste0("V",i)]][[1]])) + } + + reset(core) + run(core, 2100) + #updateSelectInput(session, inputId = "mapCore", choices = names(hcores)) + #loadGraph() + }, + warning = function(war) + { + showModal(modalDialog( + title = "Warning", + paste("Details: ",war + ) + )) + }, + error = function(err) + { + shinyalert::shinyalert("Custom Scenario Error",print(paste('Error attempting to load custom scenario: ',err)), type = "error") + }) +} diff --git a/inst/shinyApp/components/functions/func_graph_plots.R b/inst/shinyApp/components/functions/func_graph_plots.R new file mode 100644 index 0000000..9b6aac5 --- /dev/null +++ b/inst/shinyApp/components/functions/func_graph_plots.R @@ -0,0 +1,30 @@ + + +graph_plots <- function(r6) { + + var <- last(r6$output)$variable[1] + unit <- last(r6$output)$unit[1] + + if(r6$run_mode == "regular") { + + {ggplot(r6$output) + + geom_line(aes(x = year, y = value, color = Scenario)) + + labs(x = "Year", y = paste0(title[[var]], " (", unit, ")"), + title = paste0("Variable: ", last(r6$output)$variable[1],"\nPermafrost: ",r6$permafrost, "\n")) + + theme(legend.position = "bottom")} %>% + plotly::ggplotly() + + } else if(r6$run_mode == "custom") { + + {ggplot(r6$output) + + geom_line(aes(x = year, y = value, color = Run)) + + labs(x = "Year", y = paste0(title[[var]], " (", unit, ")"), + title = paste0("Variable: ", last(r6$output)$variable[1], "\n")) + + theme(legend.position = "bottom")} %>% + plotly::ggplotly() + + } + + +} + diff --git a/inst/shinyApp/components/layout/footer.html b/inst/shinyApp/components/layout/footer.html new file mode 100644 index 0000000..4816c9d --- /dev/null +++ b/inst/shinyApp/components/layout/footer.html @@ -0,0 +1 @@ + diff --git a/inst/shinyApp/components/layout/homepage.html b/inst/shinyApp/components/layout/homepage.html new file mode 100644 index 0000000..56d2825 --- /dev/null +++ b/inst/shinyApp/components/layout/homepage.html @@ -0,0 +1,4 @@ +

Welcome to the user interface for Hector: an open source, object-oriented, and interactive simple global climate carbon-cycle model. It runs essentially instantaneously while still representing the most critical global scale earth system processes, and is one of a class of models heavily used for for emulating complex climate models and uncertainty analyses. +
+
+This interactive version is built upon previous work by developers at the Joint Global Change Research Institute (JGCRI), including the development of the initial C++ version of Hector, and the follow up R Package "Hector R".

diff --git a/inst/shinyApp/www/style.css b/inst/shinyApp/components/layout/style.css similarity index 58% rename from inst/shinyApp/www/style.css rename to inst/shinyApp/components/layout/style.css index 833c71e..9988296 100644 --- a/inst/shinyApp/www/style.css +++ b/inst/shinyApp/components/layout/style.css @@ -1,13 +1,25 @@ +h5 { + font-weight: bold; +} + body { font-family:"Barlow Regular", Sans-Serif !important; - font-size: 20px; + font-size: 16px; } +/* * { + font-family:"Barlow Regular", Sans-Serif !important; +}*/ .about-info { - font-size: 12px; + font-size: 16px; +} + +.popover +{ + font-family:"Barlow Regular", Sans-Serif !important; } .c-emissions @@ -23,7 +35,7 @@ body .header-text-title { position: absolute; - color: #FFFFFF; + color: white; top: 40%; left: 50%; text-align: center;!important @@ -85,8 +97,31 @@ body font-size: 14px; } -/* .selectize-input + + .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger, + .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger { + background: #00699d; + color: white; +} + + +.navbar-nav +{ + float:none; + margin:0 auto; + display: block; + text-align: center; + color: #000000; +} + +.navbar-nav > li { + display: inline-block; + float:none; + color: #000000; +} + +.sticky-footer { - height: 60px; - width: 300px; -} */ + font-size: 12px; +} +} diff --git a/inst/shinyApp/components/modules/mod_custom.r b/inst/shinyApp/components/modules/mod_custom.r new file mode 100644 index 0000000..49eae7f --- /dev/null +++ b/inst/shinyApp/components/modules/mod_custom.r @@ -0,0 +1,205 @@ +# Run the model with custom emissions +custom_ui <- function(id) { + ns <- NS(id) + fluidRow( + sidebarPanel( + h5("Custom Emissions Pathway"), + tags$hr(class="hrNav"), + p("Steps to run your own scenario with custom emissions:"), + tags$ol( + tags$li("Choose a baseline SSP scenario as your starting point"), + tags$li("Give your new custom scenario a name"), + tags$li("Download the emissions file template for that scenario and enter your own emissions"), + tags$li("Upload the new customized emissions file") + ), + p(tags$strong("Do not edit any field names or change the CSV file in any way other than changing the data")), + tags$table( + tags$tr(width = "100%", + tags$td(width = "145", "Baseline Scenario:"), + tags$td(width = "155", selectInput(ns("input_custom_SSP"), label = NULL, + choices = list("SSP 1-1.9"="input/hector_ssp119.ini", + "SSP 1-2.6"="input/hector_ssp126.ini", + "SSP 2-4.5"="input/hector_ssp245.ini", + "SSP 3-7.0"="input/hector_ssp370.ini", + "SSP 4-3.4"="input/hector_ssp434.ini", + "SSP 4-6.0"="input/hector_ssp460.ini", + "SSP 5-3.4OS"="input/hector_ssp534-over.ini", + "SSP 5-8.5"="input/hector_ssp585.ini"), + width=150, selected = "SSP 2-4.5")) + ), + tags$tr(width = "100%", + tags$td(width = "145", "Output Variable:"), + tags$td(width = "155", selectInput(ns("variable"), label = NULL, + list("Carbon Cycle" = list("Atmospheric CO2" = CONCENTRATIONS_CO2(), + "FFI Emissions" = FFI_EMISSIONS(), + "LUC Emissions" = LUC_EMISSIONS()), + "Concentrations" = list("N2O Concentration" = CONCENTRATIONS_N2O()), + "Emissions" = list("Black Carbon Emissions" = EMISSIONS_BC(), + "Organic Carbon Emissions" = EMISSIONS_OC()), + "Forcings" = list("RF - Total" = RF_TOTAL(), + "RF - Albedo" = RF_ALBEDO(), + "RF - CO2" = RF_CO2(), + "RF - N2O" = RF_N2O(), + "RF - Black Carbon" = RF_BC(), + "RF - Organic Carbon" = RF_OC(), + "RF - Total SO2" = RF_SO2(), + "RF - Volcanic Activity" = RF_VOL(), + "RF - CH4" = RF_CH4())), + selected = "Atmospheric CO2", multiple = FALSE) + + ) + ), + tags$tr(width = "100%", + tags$td(width = "145", "Your Scenario Name:"), + tags$td(width = "200", textInput(ns("input_custom_scenarioName"), label = NULL, value = "")) + ) + ), + div( + conditionalPanel( + condition = "input.input_custom_SSP == 'input/hector_ssp119.ini'", + a(h6("Download SSP 1-1.9 Emissions File Template"), + href="inputs/ssp119_emissions.csv"), + ns=NS(id) + ), + conditionalPanel( + condition = "input.input_custom_SSP == 'input/hector_ssp126.ini'", + a(h6("Download SSP 1-2.6 Emissions File Template"), + href="inputs/ssp126_emissions.csv"), + ns=NS(id) + ), + conditionalPanel( + condition = "input.input_custom_SSP == 'input/hector_ssp245.ini'", + a(h6("Download SSP 2-4.5 Emissions File Template"), + href="inputs/ssp245_emissions.csv"), + ns=NS(id) + ), + conditionalPanel( + condition = "input.input_custom_SSP == 'input/hector_ssp370.ini'", + a(h6("Download SSP 3-7.0 Emissions File Template"), + href="inputs/ssp370_emissions.csv"), + ns=NS(id) + ), + conditionalPanel( + condition = "input.input_custom_SSP == 'input/hector_ssp434.ini'", + a(h6("Download SSP 4-3.4 Emissions File Template"), + href="inputs/ssp434_emissions.csv"), + ns=NS(id) + ), + conditionalPanel( + condition = "input.input_custom_SSP == 'input/hector_ssp460.ini'", + a(h6("Download SSP 4-6.0 Emissions File Template"), + href="inputs/ssp460_emissions.csv"), + ns=NS(id) + ), + conditionalPanel( + condition = "input.input_custom_SSP == 'input/hector_ssp534-over.ini'", + a(h6("Download SSP 5-3.4OS Emissions File Template"), + href="inputs/ssp534-over_emissions.csv"), + ns=NS(id) + ), + conditionalPanel( + condition = "input.input_custom_SSP == 'input/hector_ssp585.ini'", + a(h6("Download SSP 5-8.5 Emissions File Template"), + href="inputs/ssp585_emissions.csv"), + ns=NS(id) + ), + fileInput(ns("input_custom_emissions_file"), "Upload Custom Emissions File:", width=275, + buttonLabel = "Choose File", accept = c("text/csv", ".csv", "text/comma-separated-values,text/plain")) + ) + ), + mainPanel( + fluidRow( + actionButton(ns("input_load_emissions"), label="Create Scenario", width = '150px', style = "background: #0B3F8F; color: white;"), + downloadButton(ns("downloadData"), label="Download Data", style = "background: #B8B8B8; color: black;") + ), + fluidRow( + plotlyOutput(ns("graph")) + ) + ) + ) +} + +custom_server <- function(id, r6) { + moduleServer(id, function(input, output, session) { + observe({ + + # Require all inputs to exist + if (is.null(input$input_custom_emissions_file) | (is.na(input$input_custom_scenarioName) | is.null(input$input_custom_scenarioName) | (input$input_custom_scenarioName == ""))) + { + shinyalert::shinyalert("Missing Information", "Please name the scenario and load an emissions file before attempting to load the scenario.", type = "warning") + return(NULL) + } + + r6$run_mode <- "custom" + r6$run_name <- input$input_custom_scenarioName + + # Read in input data + inifile <- system.file(input$input_custom_SSP,package="hector") + emifile <- input$input_custom_emissions_file + emissions_data <- read.csv(file=emifile$datapath, header=TRUE, sep=",", skip = 5) + emissions_headers <- read.csv(file=emifile$datapath, header=FALSE, sep=",", skip = 4) + dates_col <- emissions_data$Date + r6$selected_var <- input$variable + + withProgress(message = paste('Creating Custom Scenario ', r6$run_name, "...\n"), value = 1/2, { + core <- newcore(inifile, suppresslogging=TRUE, name=r6$run_name) + run(core) + incProgress(1/1, detail = paste("Load complete.")) + Sys.sleep(0.2) + }) + + # get data from base SSP run + base_output <- fetchvars(core, 1745:2300, vars = list(r6$selected_var)) %>% + mutate(Run = names(which(scenarios == input$input_custom_SSP, arr.ind = FALSE)), + Scenario = names(which(scenarios == input$input_custom_SSP, arr.ind = FALSE))) + + # set vars and rerun core + for(i in c(2:ncol(emissions_data))) { + vname <- colnames(emissions_data)[i] + setvar(core = core, dates = emissions_data[, 1], var = vname, values = emissions_data[, i], unit = getunits(vname)) + } + + reset(core) + run(core) + + # get custom output + custom_output <- fetchvars(core, 1745:2300, vars = list(r6$selected_var)) %>% + mutate(Run = r6$run_name, Scenario = names(which(scenarios == input$input_custom_SSP, arr.ind = FALSE))) + r6$output <- bind_rows(list(base_output,custom_output)) + + # Plot + # replace following with graph plots function in future + output$graph <- renderPlotly({ + graph_plots(r6 = r6) + # ggplot(r6$output) + + # geom_line(aes(x = year, y = value, color = run)) + + # labs(x = "Year", y = last(r6$output)$variable[1], + # title = paste0("Variable: ", last(r6$output)$variable[1])) + + # theme(legend.position = "bottom") + }) + + }) %>% bindEvent(input$input_load_emissions) + + output$downloadData <- downloadHandler( + filename = function() + { + paste0('HectorUI_CustomEmiss_', r6$run_name, "_", Sys.Date(), '.csv') + }, + + content = function(file) + { + + if(!is.null(r6$output)) + { + write.csv(as.data.frame(r6$output), file, row.names = FALSE) + } + else + { + shinyalert::shinyalert("No active Hector cores", "Upload a custom emissions scenario before downloading.", type = "warning") + } + } + ) + outputOptions(output, "downloadData", suspendWhenHidden = FALSE) + + }) +} diff --git a/inst/shinyApp/components/modules/mod_download.R b/inst/shinyApp/components/modules/mod_download.R new file mode 100644 index 0000000..caeaed8 --- /dev/null +++ b/inst/shinyApp/components/modules/mod_download.R @@ -0,0 +1,18 @@ +# Download outputs as a csv file + +download_ui <- function(id) { + ns <- NS(id) + + tagList(downloadButton(ns("download"), "Download Outputs")) +} + +download_server <- function(id, r6) { + moduleServer(id, function(input, output, session) { + output$download <- downloadHandler( + filename = "hectorUI_output.csv", + content = function(file) { + write.csv(bind_rows(r6$output), file) + } + ) + }) +} \ No newline at end of file diff --git a/inst/shinyApp/components/modules/mod_run.R b/inst/shinyApp/components/modules/mod_run.R new file mode 100644 index 0000000..12fee0f --- /dev/null +++ b/inst/shinyApp/components/modules/mod_run.R @@ -0,0 +1,226 @@ +# Run Hector using R6 module + +run_ui <- function(id) { + ns <- NS(id) + fluidRow( + sidebarPanel(id = "params", + chooseSliderSkin(skin = "Flat", color = "#375a7f"), + pickerInput( + inputId = ns("ssp_path"), + label = "Select SSPs:", + choices = scenarios, + multiple = TRUE, + selected = "input/hector_ssp245.ini"), + sliderInput(ns("time"), label="Select dates:", + min = 1750, max = 2300, value = c(1900,2100), sep="", width = "90%", step=5), + h5("Include permafrost thaw:", id = "perm-lab"), + switchInput(ns("permafrost"), "Permafrost", value = TRUE, size = 'small', onStatus = "danger"), + h5("Model Parameters"), + sliderInput(ns("alpha"), label="Aerosol forcing scaling factor", # AERO_SCALE() + value = 1, + min = 0.01, max = 1, width = "90%"), + sliderInput(ns("beta"), label="CO2 fertilization factor", # BETA() + value = 0.53, + min = 0.01, max = 4, step=0.01, width = "90%"), + sliderInput(ns("diff"), label="Ocean heat diffusivity", # DIFFUSIVITY() + value = 2.38, + min = 0, max = 5, step=0.1, post = " cm2/s", width = "90%"), + sliderInput(ns("S"), label="Equilibrium climate sensitivity", # ECS() + value = 3, + min = 1, max = 6, step=0.1, post = " °C", width = "90%"), + sliderInput(ns("q10_rh"), label="Heterotrophic temperature sensitivity", # Q10_RH() + value = 1.76, + min = 1, max = 5, step=0.1, width = "90%"), + sliderInput(ns("volscl"), label="Volcanic forcing scaling factor", # VOLCANIC_SCALE() + value = 1, + min = 0, max = 1, width = "90%"), + bsPopover(ns("alpha"), title="", content = "Decreasing this means aerosols exert less radiative forcing", + placement = "top", trigger = "hover", options = NULL), + bsPopover(ns("beta"), title="", content = "Increasing this means vegetation grows faster as CO2 increases", + placement = "top", trigger = "hover", options = NULL), + bsPopover(ns("diff"), title="", content = "Increasing this means heat moves deeper into the ocean quicker", + placement = "top", trigger = "hover", options = NULL), + bsPopover(ns("S"), title="", content = "Increasing this means a larger temperature rise as CO2 increases", + placement = "top", trigger = "hover", options = NULL), + bsPopover(ns("q10_rh"), title="", content = "Increasing this means soil microbes respire faster as temperature rises", + placement = "top", trigger = "hover", options = NULL), + bsPopover(ns("volscl"), title="", content = "Decreasing this means that volcanic eruptions exert less radiative forcing", + placement = "top", trigger = "hover", options = NULL) + ), + mainPanel( + fluidRow( + actionButton(ns("run"), label="Load Graph", width = '150px', style = "background: #0B3F8F; color: white;"), + downloadButton(ns("downloadData"), label="Download Data", style = "background: #B8B8B8; color: black;"), + downloadButton(ns("downloadParam"), label="Download Parameters", style = "background: #B8B8B8; color: black;") + ), + fluidRow( + br(), + selectInput(ns("variable"), "Output Variable:", + list("Carbon Cycle" = list("Atmospheric CO2" = CONCENTRATIONS_CO2(), + "FFI Emissions" = FFI_EMISSIONS(), + "LUC Emissions" = LUC_EMISSIONS()), + "Concentrations" = list("N2O Concentration" = CONCENTRATIONS_N2O()), + "Emissions" = list("Black Carbon Emissions" = EMISSIONS_BC(), + "Organic Carbon Emissions" = EMISSIONS_OC()), + "Forcings" = list("RF - Total" = RF_TOTAL(), + "RF - Albedo" = RF_ALBEDO(), + "RF - CO2" = RF_CO2(), + "RF - N2O" = RF_N2O(), + "RF - Black Carbon" = RF_BC(), + "RF - Organic Carbon" = RF_OC(), + "RF - Total SO2" = RF_SO2(), + "RF - Volcanic Activity" = RF_VOL(), + "RF - CH4" = RF_CH4())), + selected = "Atmospheric CO2", multiple = FALSE) + ), + fluidRow( + br(), + plotlyOutput(ns("graph")) + ) + ) + ) + +} + +run_server <- function(id, r6) { + moduleServer(id, function(input, output, session) { + + observe({ + + r6$run_mode <- "regular" + runs <- list() + cores <- list() + + for(i in 1:length(input$ssp_path)) { + + r6$selected_var <- reactive({input$variable}) + r6$run_name <- reactive({input$run_name}) + r6$ini_file <- reactive({system.file(input$ssp_path[i],package="hector")}) + r6$time <- reactive({input$time}) + + withProgress(message = paste("Running Hector", names(which(scenarios == input$ssp_path[i], arr.ind = FALSE)), "...\n"), value = 1/2, { + print("Running...") # in command line + core <- reactive({newcore(r6$ini_file())}) # create core + + # Set parameters using inputs (function to only call setvar once in final version) + if (input$permafrost == TRUE) { + r6$permafrost <- "On" + } else if (input$permafrost == FALSE) { + setvar(core(),0,PERMAFROST_C(),0,"Pg C") + r6$permafrost <- "Off" + } + + setvar(core(),NA,AERO_SCALE(),input$alpha,"(unitless)") + setvar(core(),NA,BETA(),input$beta,"(unitless)") + setvar(core(),NA,DIFFUSIVITY(),input$diff,"cm2/s") + setvar(core(),NA,ECS(),input$S,"degC") + setvar(core(),NA,Q10_RH(),input$q10_rh,"(unitless)") + setvar(core(),NA,VOLCANIC_SCALE(),input$volscl,"(unitless)") + + reset(core()) + run(core()) + + cores[[i]] <- core() + incProgress(1/1, detail = paste("Load complete.")) + Sys.sleep(0.2) + }) +#put cores in a list and fetchvars outsite + } + + r6$core <- cores + + for(i in 1:length(input$ssp_path)) { + runs[[i]] <- fetchvars(r6$core[[i]], r6$time()[1]:r6$time()[2], vars = list(r6$selected_var())) %>% + mutate(Scenario = names(which(scenarios == input$ssp_path[i], arr.ind = FALSE))) + } + + r6$output <- bind_rows(runs) + print("Done") + + output$graph <- renderPlotly({ + graph_plots(r6 = r6) + }) + + }) %>% + bindEvent(input$run, ignoreNULL = FALSE, ignoreInit = FALSE) + + observe({ + r6$selected_var <- reactive({input$variable}) + runs <- list() + + for(i in 1:length(input$ssp_path)) { + runs[[i]] <- fetchvars(r6$core[[i]], r6$time()[1]:r6$time()[2], vars = list(r6$selected_var())) %>% + mutate(Scenario = names(which(scenarios == input$ssp_path[i], arr.ind = FALSE))) + } + + r6$output <- bind_rows(runs) + + output$graph <- renderPlotly({ + graph_plots(r6 = r6) + }) + }) %>% + bindEvent(input$variable, ignoreInit = TRUE) + + # Download handler for downloading the raw data output from a Hector run. This is activated upon button click. + output$downloadData <- downloadHandler( + filename = function() + { + paste0('HectorUI_Output_', format(Sys.time(), "%Y-%m-%d_%H%M%S"), '.csv') + }, + + content = function(file) + { + + if(!is.null(r6$output)) + { + write.csv(as.data.frame(r6$output), file, row.names = FALSE) + } + else + { + shinyalert::shinyalert("No active Hector cores", "Please set at least one of the SSP scenarios to active.", type = "warning") + } + } + ) + outputOptions(output, "downloadData", suspendWhenHidden = FALSE) + + output$downloadParam <- downloadHandler( + filename = function() + { + paste0('HectorUI_Parameters_', format(Sys.time(), "%Y-%m-%d_%H%M%S"), '.txt') + }, + + content = function(file) + { + + if(!is.null(r6$output)) + { + ssp_names <- list() + for(i in 1:length(input$ssp_path)) { + ssp_names[[i]] <- names(which(scenarios == input$ssp_path[i], arr.ind = FALSE)) + } + names <- paste(unlist(ssp_names), collapse = ', ') + + header_text <- paste0("File created with Hector UI - https://github.com/JGCRI/hector-ui accessed on ", format(Sys.time(), "%Y-%m-%d %X"), "\n", + "Hector Version: ", packageVersion("hector"), "\n", + "SSPs Used: ", names, "\n", + "Permafrost: ", r6$permafrost, "\n", + "Model Parameters: " , input$input_paramToggle , "\n", + "Alpha: ", input$alpha, "\n", + "Beta: ", input$beta, "\n", + "Diff: ", input$diff, "\n", + "ECS: ", input$S, "\n", + "Q10: ", input$q10_rh, "\n", + "Volc: ", input$volscl) + + writeLines(header_text, file) + } + else + { + shinyalert::shinyalert("No active Hector cores", "Upload a custom emissions scenario before downloading.", type = "warning") + } + } + ) + outputOptions(output, "downloadParam", suspendWhenHidden = FALSE) + + }) +} diff --git a/inst/shinyApp/components/modules/mod_summary.r b/inst/shinyApp/components/modules/mod_summary.r new file mode 100644 index 0000000..a2ef49b --- /dev/null +++ b/inst/shinyApp/components/modules/mod_summary.r @@ -0,0 +1,27 @@ +# Run Hector given SSP input, start and end years for model run +# Print function + +# Default values set for SSP, start/end years, and selected var for plot + +summary_ui <- function(id) { + ns <- NS(id) + fluidRow(actionButton(ns("print"), "Print"), + DTOutput(ns("summary"))) +} + +summary_server <- function(id, r6) { + moduleServer(id, function(input, output, session) { + observe({ + if (r6$save == TRUE) { + hectoroutput <- r6$output[[r6$run_name()]] + output$summary <- renderDT({datatable(hectoroutput)}) + } + if (r6$save == FALSE) { + hectoroutput <- r6$output + output$summary <- renderDT({datatable(hectoroutput)}) + } + }) %>% + bindEvent(input$print, ignoreNULL = TRUE, ignoreInit = FALSE) # run when Print button is clicked + + }) +} diff --git a/inst/shinyApp/components/modules/mod_tracking.R b/inst/shinyApp/components/modules/mod_tracking.R new file mode 100644 index 0000000..faf7bae --- /dev/null +++ b/inst/shinyApp/components/modules/mod_tracking.R @@ -0,0 +1,241 @@ +tracking_ui <- function(id) { + ns <- NS(id) + fluidRow( + sidebarPanel( + chooseSliderSkin(skin = "Flat", color = "#375a7f"), + # prettyRadioButtons(ns("ssp_path"), label="Select SSP:", + # choices = list("SSP 1-1.9"="input/hector_ssp119.ini", + # "SSP 1-2.6"="input/hector_ssp126.ini", + # "SSP 2-4.5"="input/hector_ssp245.ini", + # "SSP 3-7.0"="input/hector_ssp370.ini", + # "SSP 4-3.4"="input/hector_ssp434.ini", + # "SSP 4-6.0"="input/hector_ssp460.ini", + # "SSP 5-3.4OS"="input/hector_ssp534-over.ini", + # "SSP 5-8.5"="input/hector_ssp585.ini"), + # selected = "input/hector_ssp245.ini", inline=TRUE, + # shape = "square", width = "80%"), + selectInput(ns("ssp_path"), "Baseline Scenario:", + choices = list("SSP 1-1.9"="input/hector_ssp119.ini", + "SSP 1-2.6"="input/hector_ssp126.ini", + "SSP 2-4.5"="input/hector_ssp245.ini", + "SSP 3-7.0"="input/hector_ssp370.ini", + "SSP 4-3.4"="input/hector_ssp434.ini", + "SSP 4-6.0"="input/hector_ssp460.ini", + "SSP 5-3.4OS"="input/hector_ssp534-over.ini", + "SSP 5-8.5"="input/hector_ssp585.ini"), + width=150, selected = "SSP 2-4.5"), + bsPopover(ns("ssp_path"), title="",content="Select a Shared Socioeconomic Pathway to plot.", + placement = "top", trigger = "hover", options = NULL), + + sliderInput(ns("start"), label="Select year to begin tracking:", + min = 1750, max = 2200, value = 1900, sep="",step=5), + + selectInput(ns("pool"), label="Select pool to view:", + choices = list("High latitude ocean"="HL Ocean", + "Low latitude ocean"="LL Ocean", + "Intermediate ocean"="Intermediate Ocean", + "Deep ocean"="Deep Ocean", + "Atmosphere"="Atmosphere", + "Vegetation"="Vegetation", + "Detritus"="Detritus", + "Soil"="Soil"), + selected="Atmosphere"), + + prettyRadioButtons(ns("ff"), label="Toggle fossil fuels:", + choices = list("On"=1,"Off"=2)), + bsPopover(ns("ff"), title="",content="Select whether you want fossil fuels to be included (On), or only non-anthropogenic sources of carbon (Off).", + placement = "top", trigger = "hover", options = NULL), + prettyRadioButtons(ns("view"), label="View:", + choices = list("Carbon Amount"=1, + "Carbon Fraction"=2), + selected = 1), + bsPopover(ns("view"), title="",content="Select whether you want to view the total amounts of carbon in each pool (Carbon Amount), or the fraction each pool has of the total amount in the system (Carbon Fraction).", + placement = "top", trigger = "hover", options = NULL) + ), + mainPanel( + fluidRow( + actionButton(ns("generate"),"Generate", width = '150px', style = "background: #0B3F8F; color: white;"), + downloadButton(ns("download"),"Download Plot", style = "background: #B8B8B8; color: black;") + ), + fluidRow( + withSpinner(plotOutput(ns("fig"), width = "80%"))#, + # imageOutput(ns("gif"), width = "80%") + ) + ) + ) +} + +tracking_server <- function(id) { + moduleServer(id, function(input, output, session) { + + observe({ + withProgress(message = "Running Hector", value = 0, { + # Run Hector w/ carbon tracking + ini_file <- reactive({system.file(input$ssp_path,package="hector")}) + core <- newcore(ini_file()) + tunits <- getunits(TRACKING_DATE()) + setvar(core, NA, TRACKING_DATE(), input$start, tunits) + reset(core, core$reset_date) + print("Running Hector...") + run(core, runtodate = 2300) + + incProgress(0.25, detail = "Gathering data...") + print("Gathering data...") + df <- get_tracking_data(core) + + # clean up pool names + df[df=="atmos_co2"] <- "Atmosphere" + df[df=="deep"] <- "Deep Ocean" + df[df=="detritus_c"] <- "Detritus" + df[df=="earth_c"] <- "Fossil Fuels" + df[df=="HL"] <- "HL Ocean" + df[df=="intermediate"] <- "Intermediate Ocean" + df[df=="LL"] <- "LL Ocean" + df[df=="soil_c"] <- "Soil" + df[df=="veg_c"] <- "Vegetation" + + incProgress(0.25, detail = "Setting variables...") + ## filter df to just selected pool + selectedPool <- reactive({input$pool}) + df <- filter(df,pool_name==selectedPool()) + # filter out fossil fuels if selected + if (input$ff == 2) { + df <- subset(df, source_name!="Fossil Fuels") + } + # filter out permafrost rows (for now -- they're empty) + df <- subset(df, source_name!="permafrost_c") + df <- subset(df, source_name!="thawedp_c") + + # fill in any missing pools + df <- df[order(df$source_name),] # sort by source, then year, so sources are always in same order each year + df <- df[order(df$year),] + + + # rank column for moving bar plot + df <- df %>% + group_by(year) %>% + mutate(rank = rank(-source_fraction), + frac_rel = source_fraction/source_fraction[rank==1], + source_amt = source_fraction*pool_value, + amt_lbl = paste0(format(round(source_amt,2), nsmall=2), " Pg C"), + frac_lbl = paste0(format(round(source_fraction,2),nsmall=2))) %>% + group_by(source_name) %>% + ungroup() + + # Carbon amount + if (input$view == 1) { + area_plot <- + ggplot(df, aes(x=year,y=source_amt,fill=source_name)) + + geom_area(stat="identity") + + scale_fill_viridis_d(name="Source") + + scale_color_viridis_d() + + ggtitle(paste0(selectedPool(), " Carbon Amount Sources")) + + xlab("") + + ylab("Carbon Pool (Pg C)") + + theme(plot.title = element_text(size=20), + legend.title=element_text(size=16), + legend.position="bottom", + legend.text=element_text(size=12), + axis.title.y=element_text(size=14), + axis.text=element_text(size=10), + plot.margin = margin(1,1,1,1,"cm")) + # save as file + ggsave("outfile_area.jpeg",plot=area_plot,device="jpeg", + dpi=300, width = 13, units = "in") + + } + + # Carbon fraction + if (input$view == 2) { + + print("Generating plot...") + area_plot <- + ggplot(df, aes(x=year,y=source_fraction,fill=source_name)) + + geom_area(stat="identity") + + scale_fill_viridis_d() + + scale_color_viridis_d() + + ggtitle(paste0(selectedPool(), " Carbon Fraction Sources")) + + xlab("") + + ylab("Carbon Pool (Fraction)") + + theme(plot.title = element_text(size=20), + legend.title=element_text(size=16), + legend.position="bottom", + legend.text=element_text(size=12), + axis.title.y=element_text(size=14), + axis.text=element_text(size=10), + plot.margin = margin(1,1,1,1,"cm")) + + # save as file + ggsave("outfile_area.jpeg",plot=area_plot,device="jpeg", + dpi=300, width = 13, units = "in") + + } + + output$fig <- renderPlot(area_plot) + + # output$gif <- renderImage({ + # withProgress(message = "Generating plots", value = 0, { + # # Make animation + # p <- ggplot(df,aes(fill=source_name,color=source_name, + # x=reorder(source_name,source_amt), + # y=source_amt)) + + # geom_bar(stat="identity") + + # geom_text(aes(y=0, label = paste(source_name, " ")), + # vjust = 0.2, hjust = 1, size = 6) + + # geom_text(aes(y = source_amt, label = paste(" ",amt_lbl), hjust=0), + # size = 6) + + # coord_flip(clip = "off", expand = FALSE) + + # theme_void() + + # theme(plot.title = element_text(size=20), + # plot.subtitle = element_text(size=18), + # legend.position="none", + # panel.grid.major.x = element_line(linewidth=.1,color="snow2"), + # panel.grid.minor.x = element_line(linewidth=.1,color="snow2"), + # plot.margin = margin(1,6,1,6,"cm")) + + # ylab("Carbon (Pg)") + + # xlab("") + + # scale_fill_viridis_d() + + # scale_color_viridis_d() + + # + # # gganimate + # transition_time(year) + + # ease_aes('linear') + # incProgress(0.5, detail = "Rendering (please hold!)") + # # Animate + # anim <- p + transition_states(year,transition_length=4, + # state_length=2,wrap=FALSE) + + # view_follow(fixed_x = TRUE) + + # labs(title=paste0(selectedPool()," Carbon Sources"), + # subtitle="Year: {closest_state}") + # + # anim_save("outfile_bar.gif", animate(anim, height = 350, width = 650, + # end_pause=30, renterer = gifski_renderer())) + # incProgress(0.5, detail = "Complete!") + # + # list(src = 'outfile_bar.gif', + # contentType = 'image/gif' + # # width = 800, + # # height = 500, + # # alt = "An animation tracking the sources of carbon in a chosen pool" + # ) + # }) + # }, deleteFile = FALSE) + Sys.sleep(0.2) + }) + }) %>% + bindEvent(input$generate) + + # Download plots + output$download <- downloadHandler( + #filename="myplots.zip", + filename = function() { + paste0('HectorUI_CarbonTracking_', format(Sys.time(), "%Y-%m-%d_%H%M%S"), '.zip') + }, + content=function(file){ + #zip(file,files=c('outfile_area.jpeg','outfile_bar.gif')) + zip(file, files = 'outfile_area.jpeg') + } + ) + + }) +} diff --git a/inst/shinyApp/core.r b/inst/shinyApp/core.r deleted file mode 100644 index d154475..0000000 --- a/inst/shinyApp/core.r +++ /dev/null @@ -1,92 +0,0 @@ -# This file handles interactions with Hector core objects that drive functionality - - -#' Loads one of the preset RCP scenarios -#' -#' Main function that loads/starts the Hector Core and runs the specified scenario -#' -#' @param scenario (Character) - RCP Scenario name to load into new Hector core -#' -#' @return (Hector Core) - The Hector core object created from the scenario -#' @export -#' -#' @examples -loadScenario <- function(scenario) -{ - print("in load scenario") - tryCatch( - { - inifile <<- system.file(globalScenarios[paste0("RCP-", scenario)], package='hector', mustWork=TRUE) - hcore <- hector::newcore(inifile, suppresslogging=TRUE, name=paste(globalScenarios[paste("RCP", scenario)])) - setCoreParameters(hcore) - hector::run(hcore, globalVars[['endDate']]) - }, - error = function(err) - { - shinyalert::shinyalert("Initalization Error", print(paste('Error starting Hector: ', err, ' scen= ', scenario, ' gs=',globalScenarios[paste("RCP", scenario)])), type = "error") - print(scenario) - }) - return(hcore) -} - -#' Reset the active Hector cores and run the Hector core spinup -#' -#' Function to reset (not restart via shutdown) all active Hector cores. A core reset should only be called when input parameters have changed. -#' @return no return value -#' @export -#' -#' @examples -resetCore <- function() -{ - print("in reset core") - # Call reset on each core that the user has created - for(i in 1:length(hcores)) - { - hector::reset(hcores[[i]]) - hector::run(hcores[[i]], globalVars[['endDate']]) - } -} - -#' Restart the active Hector cores -#' -#' Function to shutdown and restart active Hector cores. A core restart is required when the scenario has changed/been loaded or the user has made emissions changes. -#' @return -#' @export -#' -#' @examples -restartCore <- function() -{ - print("in restart core") - tryCatch( - { - if(length(hcores) > 0) - { - withProgress(message = 'Restarting Hector Cores...\n', value = 0, - { - # For each core, shutdown and restart - for(i in 1:length(hcores)) - { - scenarioName <- names(hcores)[i] - if(substr(scenarioName, 1, 8) =="Standard") - { - core <- hcores[[i]] - hector::shutdown(core = hcores[[i]]) - hcores[[scenarioName]] <<- loadScenario(substr(scenarioName, nchar(scenarioName)-2, nchar(scenarioName))) # hector::newcore(inifile, suppresslogging=TRUE, name=paste(globalScenarios[paste("RCP", scenario)])) - hector::run(hcores[[i]], globalVars[['endDate']]) - incProgress(1/length(hcores), detail = paste0("Core ", names(hcores)[i], " Restart Successful.")) - Sys.sleep(0.1) - } - } - }) - # Call loadGraph to refresh output graph after data change - loadGraph() - } - else - { - shinyalert::shinyalert("Warning:", "There are no active cores to reset emissions", type = "warning") - }}, - error = function(err) - { - shinyalert::shinyalert("Core Error",print(paste('Error restarting Hector: ',err)), type = "error") - }) -} diff --git a/inst/shinyApp/global.r b/inst/shinyApp/global.r new file mode 100644 index 0000000..04a2d20 --- /dev/null +++ b/inst/shinyApp/global.r @@ -0,0 +1,124 @@ +library(R6) +library(shiny) +library(hector) +library(dplyr) +library(ggplot2) +library(shinycssloaders) +library(plotly) +library(DT) +library(shinyWidgets) +library(gifski) +library(gganimate) +library(tidyverse) +library(shinyBS) +library(zip) +library(svglite) + +source("components/modules/mod_run.R", local = TRUE) +source("components/modules/mod_custom.r", local = TRUE) +source("components/modules/mod_summary.r", local = TRUE) +source("components/modules/mod_download.R", local = TRUE) +source("components/modules/mod_tracking.R", local = TRUE) +source("components/functions/func_graph_plots.R", local = TRUE) +source("components/functions/func_custom_emissions.R", local = TRUE) + +theme_set(theme_minimal()) + +# Define R6 class +HectorInputs <- R6Class( + classname = "HectorInputs", + public = list( + ini_file = NULL, + time = NA, + output = NULL, + run_name = NA, + permafrost = NULL, + run_mode = NULL, + inputs = NULL, + core = NULL, + selected_var = NULL, + initialize = function(ini_file = system.file("input/hector_ssp245.ini", + package = "hector")) { + self$ini_file <- ini_file + self$time <- time + self$output <- list() + self$run_name <- 1 + self$inputs <- list() + self$selected_var <- "CO2_concentration" + } + ) +) + +#' Global scenario list with Hector input file +#' @export +get_scenarios <- function() { + + scenarios <- list("SSP 1-1.9"="input/hector_ssp119.ini", + "SSP 1-2.6"="input/hector_ssp126.ini", + "SSP 2-4.5"="input/hector_ssp245.ini", + "SSP 3-7.0"="input/hector_ssp370.ini", + "SSP 4-3.4"="input/hector_ssp434.ini", + "SSP 4-6.0"="input/hector_ssp460.ini", + "SSP 5-3.4OS"="input/hector_ssp534-over.ini", + "SSP 5-8.5"="input/hector_ssp585.ini") + + return(scenarios) +} + +#' Global list of variable titles +#' @export +get_titles <- function() { + + title <- list("CO2_concentration" = "Atmospheric CO2", + "atmos_co2" = "Atmospheric Carbon Pool", + "ffi_emissions" = "FFI Emissions", + "luc_emissions" = "LUC Emissions", + "N2O_concentration" = "N2O Concentration", + "BC_emissions" = "Black Carbon Emissions", + "OC_emissions" = "Organic Carbon Emissions", + "RF_tot" = "Total Radiative Forcing", + "RF_albedo" = "Albedo Radiative Forcing", + "RF_CO2" = "CO2 Radiative Forcing", + "RF_N2O" = "N2O Radiative Forcing", + "RF_BC" = "Black Carbon Radiative Forcing", + "RF_OC" = "Organic Carbon Radiative Forcing", + "RF_SO2" = "Total SO2 Radiative Forcing", + "RF_vol" = "Volcanic Activity Radiative Forcing", + "FCH4" = "CH4 Radiative Forcing", + "RF_CF4" = "CF4 Radiative Forcing", + "RF_C2F6" = "C2F6 Radiative Forcing", + "RF_HFC23" = "HFC-23 Radiative Forcing", + "RF_HFC4310" = "HFC-4310 Radiative Forcing", + "RF_HFC125" = "HFC-125 Radiative Forcing", + "RF_HFC143a" = "HFC-143a Radiative Forcing", + "RF_HFC245fa" = "HFC-245fa Radiative Forcing", + "RF_SF6" = "SF6 Radiative Forcing", + "RF_CFC11" = "CFC-11 Radiative Forcing", + "RF_CFC12" = "CFC-12 Radiative Forcing", + "RF_CFC113" = "CFC-113 Radiative Forcing", + "RF_CFC114" = "CFC-114 Radiative Forcing", + "RF_CFC115" = "CFC-115 Radiative Forcing", + "RF_CCl4" = "CCl4 Radiative Forcing", + "RF_CH3CCl3" = "CH3CCl3 Radiative Forcing", + "RF_halon1211" = "Halon-1211 Radiative Forcing", + "RF_halon1301" = "Halon-1301 Radiative Forcing", + "RF_halon2402" = "Halon-2402 Radiative Forcing", + "RF_CH3Cl" = "CH3Cl Radiative Forcing", + "RF_CH3Br" = "CH3Br Radiative Forcing", + "CH4_concentration" = "Atmospheric CH4", + "CH4_emissions" = "CH4 Emissions", + "SO2_emissions" = "Anthropogenic SO2", + "SV" = "Volcanic SO2", + "global_tas" = "Global Mean Temperature", + "gmst" = "Equilibrium Global Temperature", + "sst" = "Ocean Surface Temperature", + "ocean_tas" = "Ocean Air Temperature", + "heatflux_mixed" = "Heat Flux - Mixed Layer Ocean", + "heatflux_interior" = "Heat Flux - Interior Layer Ocean", + "heatflux" = "Total Heat Flux - Ocean") + + return(title) +} + +scenarios <- get_scenarios() +title <- get_titles() diff --git a/inst/shinyApp/observers.r b/inst/shinyApp/observers.r deleted file mode 100644 index e00b8ea..0000000 --- a/inst/shinyApp/observers.r +++ /dev/null @@ -1,317 +0,0 @@ -# This file contains miscellaneous observers (all except for those from the parameters which are in the parameters.r file and those that produce output, in output.r) - - -#' Keeps a list of the selected output variables for graphs -#' -#' Observer function that responds to changes in user input from the capabilities drop down field in the scenario output tab -#' @return -#' @export -#' -#' @examples -setCapabilities <- function() -{ - print('in set capabilities') - tryCatch( - { - outputVariables <<- list() - capabilityValues <- vector() - if(length(input$capabilities) > 0) - { - i <- 1 - capabilityValues <- input$capabilities - while(i <= length(capabilityValues)) - { - outputVariables[i] <<- globalCapabilities[capabilityValues[i]] - i <- i+1 - } - } - }, - error = function(err) - { - # error handler picks up where error was generated - shinyalert::shinyalert("Error!",print(paste('Output Error: ',err)), type = "error") - }) -} - - -#' Load the chosen standard RCP scenario and rerun output/clean functions -#' -#' Observer function that is activated on a change to the RCP Scenario checkboxes. Will load/unload the scenario into a new Hector core -#' @param scenarioName (Character) - String value for the RCP scenario in the format of "RCP-2.6" -#' -#' @return -#' @export -#' -#' @examples -setRCP <- function(scenarioName) -{ - print("in set RCP") - coreName <- paste0("Standard-", scenarioName) - tryCatch( - { - # If scenario is checked then load it, otherwise unload it - if(input[[paste("input_",stringr::str_replace(scenarioName,"-", "_"), sep = "")]]) - { - withProgress(message = paste('Loading Scenario RCP ', scenarioName, "...\n"), value = 1/2, - { - hcores[[coreName]] <<- loadScenario(scenario = substr(scenarioName, nchar(scenarioName)-2, nchar(scenarioName))) - incProgress(1/1, detail = paste("Load complete.")) - Sys.sleep(0.2) - }) - } - else - { - hcores[[coreName]] <<- NULL - } - if(length(hcores) > 0) - { - # Update dropdown for available scenarios on the downscaled maps tab - updateSelectInput(session, inputId = "mapCore", choices = names(hcores)) - loadGraph() - } - else - cleanPlots() - }, - error = function(err) - { - # error handler picks up where error was generated - shinyalert::shinyalert("Error!",print(paste('Output Error: ',err)), type = "error") - - }) -} - - -#' Load custom scenario -#' -#' Observer function responsible for processing the custom scenario file when the user creates a custom scenario -#' @return -#' @export -#' -#' @examples -loadCustomScenario <- function() -{ - print("in load custom") - - if (is.null(input$input_custom_scenario_csv) | (is.na(input$input_custom_scenarioName) | is.null(input$input_custom_scenarioName) | (input$input_custom_scenarioName == ""))) - { - shinyalert::shinyalert("Missing Information", "Please name the scenario and load an emissions file before attempting to load the scenario.", type = "warning") - return(NULL) - } - - scenarioName <- input$input_custom_scenarioName - - tryCatch( - { - withProgress(message = paste('Creating Custom Scenario ', scenarioName, "...\n"), value = 1/2, - { - inifile <- Sys.glob(input$input_custom_scenario_ini$datapath) - csvfile <- Sys.glob(input$input_custom_scenario_csv$datapath) - hcores[[scenarioName]] <<- hector::newcore(inifile, suppresslogging=TRUE, name="custom") - hector::run( hcores[[scenarioName]], globalVars[['endDate']]) - incProgress(1/1, detail = paste("Load complete.")) - Sys.sleep(0.2) - }) - - # Handle post loading operations - loadParameters() - customLoaded <<- TRUE - loadGraph() - }, - warning = function(war) - { - showModal(modalDialog( - title = "Warning", - paste("Details: ",war) - )) - }, - error = function(err) - { - shinyalert::shinyalert("Custom Scenario Error",print(paste('Error attempting to load custom scenario: ',err)), type = "error") - }) -} - - -#' Load custom emissions -#' -#' Observer function responsible for processing the custom emissions file when the user creates a custom emissions scenario -#' @return -#' @export -#' -#' @examples -loadCustomEmissions <- function() -{ - print("in load custom") - - if (is.null(input$input_custom_emissions_file) | (is.na(input$input_custom_scenarioName) | is.null(input$input_custom_scenarioName) | (input$input_custom_scenarioName == ""))) - { - shinyalert::shinyalert("Missing Information", "Please name the scenario and load an emissions file before attempting to load the scenario.", type = "warning") - return(NULL) - } - - scenarioName <- input$input_custom_scenarioName - - tryCatch( - { - # Load scenario and custom emissions - inifile <- system.file(globalScenarios[input$input_custom_RCP], package='hector', mustWork=TRUE) - emissions_file <- input$input_custom_emissions_file$datapath - emissions_data <- read.csv(file=emissions_file, header=TRUE, sep=",", skip = 3) - emissions_headers <- read.csv(file=emissions_file, header=FALSE, sep=",", skip = 2) - dates_col <- emissions_data$Date - - withProgress(message = paste('Creating Custom Scenario ', scenarioName, "...\n"), value = 1/2, - { - hcores[[scenarioName]] <<- hector::newcore(inifile, suppresslogging=TRUE, name=scenarioName) - hector::run( hcores[[scenarioName]], globalVars[['endDate']]) - incProgress(1/1, detail = paste("Load complete.")) - Sys.sleep(0.2) - }) - - # Set custom emissions here - for(i in 2:ncol(emissions_data)) - { - hector::setvar(core = hcores[[scenarioName]], dates = emissions_data[, 1],var = colnames(emissions_data)[i], values = emissions_data[, i], unit = as.character(emissions_headers[[paste0("V",i)]][[1]])) - } - - hector::reset(hcores[[scenarioName]]) - hector::run(hcores[[scenarioName]], globalVars[['endDate']]) - updateSelectInput(session, inputId = "mapCore", choices = names(hcores)) - loadGraph() - }, - warning = function(war) - { - showModal(modalDialog( - title = "Warning", - paste("Details: ",war - ) - )) - }, - error = function(err) - { - shinyalert::shinyalert("Custom Scenario Error",print(paste('Error attempting to load custom scenario: ',err)), type = "error") - }) -} - - -#' Sets custom emissions from the user input fields -#' -#' Observer function that handles the set custom emissions feature. Sets emissions for all active cores. -#' @return -#' @export -#' -#' @examples -setCustomEmissions <- function() -{ - print("in Set Custom Emissions") - tryCatch( - { - # Verify things: - # 1. Needs to be Hector cores already instantiated first in order to set emissions - # 2. Years need to be validated (validated to be a year and start > end if used that way) - validate( - need(as.double(input$input_custom_start) >= globalVars[['startDate']] && as.double(input$input_custom_start) <= globalVars[['endDate']], "Please use a valid 4 digit year for start year") - ) - validate( - need(as.double(input$input_custom_end) >= globalVars[['startDate']] && as.double(input$input_custom_end) <= globalVars[['endDate']], "Please use a valid 4 digit year for end year") - ) - validate( - need(length(input$input_custom_emissions) >= 0, "Please enter a value for emissions") - ) - - # Process custom emissions - if(length(hcores) > 0) - { - # Set up general variables and sloping if needed - x <- seq(1, 10, 2) - y <- x * 3 - newx <- seq(1, 10, 0.1) - s <- spline(x, y, xout = newx) - emission <- input$input_custom_emissions - startDate <- as.double(input$input_custom_start) - endDate <- as.double(input$input_custom_end) - hector_var <- globalCapabilities[[input$input_custom_emissions]][[1]] - hector_unit <- attr(globalCapabilities[[input$input_custom_emissions]], "unit") - - # Set Hector data with sloped variable data - if(input$input_slope_emissions) - { - for(i in 1:length(hcores)) - { - scenarioName <- names(hcores)[i] - if(substr(scenarioName, 1, 8) =="Standard") - { - startEmission <- hector::fetchvars(core = hcores[[i]], dates = startDate, vars = hector_var, "\n") - x <- c(startDate, endDate) - y <- c(startEmission["value"], as.double(input$input_emissions_value)) - z <- seq(as.integer(startDate), as.integer(endDate), 1) - dates <- c(startDate:endDate) - seq_out <- spline(x, y, xout = z) - values <- unlist(seq_out["y"]) - values1 <- as.vector(values) - hector::setvar(core = hcores[[i]], dates = dates, var = hector_var, values = values1, unit = hector_unit) - } - } - } - # Set Hector data with static variable data - else - { - for(i in 1:length(hcores)) - { - hector::setvar(core = hcores[[i]], dates = startDate:endDate, var = hector_var, values = as.double(input$input_emissions_value), unit = hector_unit) - } - } - - resetCore() - loadGraph() - } - else - { - shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario before downloading.", type = "warning") - } - }, - error = function(err) - { - # error handler picks up where error was generated - shinyalert::shinyalert("Error!",print(paste('Error Setting Emissions: ',err)), type = "error") - }) -} - - -#' Reset custom emissions -#' -#' Observer function that resets any custom emissions inputted by the user back to hector defaults. This also forces a restart which will reset parameters -#' @return -#' @export -#' -#' @examples -resetCustomEmissions <- function() -{ - print("in reset emissions") - updateSelectInput(session = session, inputId = "input_paramToggle", selected = "default") - restartCore() -} - -#' Open URL link -#' -#' @param url (Character) - Should be a well formatted URL string -#' -#' @return Links to URL page -#' @export -#' -#' @examples -openPage <- function(url) { - return(tags$a(href=url, "Click here!", target="_blank")) - -} - -#' Update selected index of the downscaled map's available cores -#' -#' @return -#' @export -#' -#' @examples -updateIndex <- function() -{ - selectedIndex <<- input$mapCore -} - diff --git a/inst/shinyApp/outfile_area.jpeg b/inst/shinyApp/outfile_area.jpeg new file mode 100644 index 0000000..0ad8210 Binary files /dev/null and b/inst/shinyApp/outfile_area.jpeg differ diff --git a/inst/shinyApp/outfile_bar.gif b/inst/shinyApp/outfile_bar.gif new file mode 100644 index 0000000..1a1cec0 Binary files /dev/null and b/inst/shinyApp/outfile_bar.gif differ diff --git a/inst/shinyApp/output.r b/inst/shinyApp/output.r deleted file mode 100644 index bae7c74..0000000 --- a/inst/shinyApp/output.r +++ /dev/null @@ -1,342 +0,0 @@ -# This file handles anything output related (screen, file, etc) - -#' Internal function used to clean up visual elements when the number of number of graph output variables changes -#' -#' @return Function does not return a value -#' -#' @examples -cleanPlots <- function() -{ - print("in clean plots") - - # Clean all plots if there's no active Hector cores - if(length(hcores) < 1) - { - output[["plot1"]] <<- NULL - output[["plot2"]] <<- NULL - output[["plot3"]] <<- NULL - output[["plot4"]] <<- NULL - } - else - { - # Start in reverse and clear out (make NULL) any plots that exceed the number of output variables - if(length(outputVariables) < 4) - output[["plot4"]] <<- NULL - if(length(outputVariables) < 3) - output[["plot3"]] <<- NULL - if(length(outputVariables) < 2) - output[["plot2"]] <<- NULL - if(length(outputVariables) < 1) - output[["plot1"]] <<- NULL - } -} - -#' Output function that generates the graphs -#' -#' Observer function designed to handle the loading/creation of the output graphs -#' @return no return value -#' @export -#' -#' @examples -loadGraph <- function() -{ - print("in load graph") - # Set up local variables for dealing with output data frames - hdata <- data.frame() - df_total <- data.frame() - - # Main loop that handles graph output based on number of scenarios and number of output variables - if(length(hcores) > 0) - { - # If length is 5 or more than they've chosen too many variables - if(length(outputVariables) < 5) - { - tryCatch( - { - if(length(outputVariables) >= 1) - { - withProgress(message = 'Loading Output Graphs...\n', value = 0, - { - # Create a new graph for each output variable - for (i in 1:length(outputVariables)) - { - # Need local so that each item gets its own number. Without it, the value of i in the renderPlot() will be the same across all instances. - local( - { - my_i <- i - plotname <- paste("plot", i, sep="") - seriesname <- "" - # For each hector core create an output data set and bind all to df_total - for(j in 1:length(hcores)) - { - scenarioName <- names(hcores)[j] - hdata <- hector::fetchvars(core = hcores[[j]], dates = globalVars[['startDate']]:globalVars[['endDate']], vars = outputVariables[i], "\n") - if(substr(scenarioName, 1, 8) =="Standard") - seriesname <- paste("RCP", substr(scenarioName, nchar(scenarioName)-2, nchar(scenarioName))) - else - seriesname <- names(hcores)[j] - hdata <- dplyr::mutate(hdata, Scenario = seriesname, Year = year, Value = round(value, 2)) - df_total <- rbind(df_total,hdata) - - } - # Get the units for graph axis - - x <- dplyr::distinct(hdata, units) - ggplotGraph <- ggplot2::ggplot(data=df_total, ggplot2::aes(x=Year, y=Value, group=Scenario, color=Scenario)) + - ggplot2::geom_line() + - ggplot2::labs(y=Hmisc::capitalize(x[[1]]), title = attr(outputVariables[[i]], 'longName')) + - ggplot2::scale_color_manual(values = globalColorScales) - - #+ ggplot2::scale_color_manual(values=globalScenarioColors) + ggplot2::geom_ribbon(alpha=0.5) - # + ggplot2::guides(color = ggplot2::guide_colorbar(title = expression(beta))) - # + ggplot2::scale_color_viridis_c() - - # Construct the plots and add to the shiny output variable - localPlot <- plotly::ggplotly(p = ggplotGraph) - plotly::layout(p=localPlot, xaxis = a, yaxis = a, legend = list(orientation = 'h')) - output[[plotname]] <- plotly::renderPlotly(localPlot) - }) - incProgress(1/length(hcores), detail = paste(attr(outputVariables[[i]], 'longName'), " loaded.")) - Sys.sleep(0.25) - } - }) - # Check if any output variables have been removed and clear any extra plots - if(length(outputVariables) < 4) - { - cleanPlots() - } - } - else - { - shinyalert::shinyalert("Invalid Input:", "Please choose at least 1 output variables.", type = "warning") - } - - }, - error = function(err) - { - # error handler picks up where error was generated - shinyalert::shinyalert("Error Detected:",print(paste('There was an error when attempting to load the graph:',err)), type = "error") - }) - } - else - { - shinyalert::shinyalert("Invalid Input:", "Please choose no more than 4 output variables.", type = "warning") - } - } - else - { - shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario.", type = "warning") - } -} - -#' Main output function that generates the downscaled maps -#' -#' Observer function designed to handle the loading/creation of downscaled world maps from the Hector model output and pre-generated pattern files -#' @return no return value -#' @export -#' -#' @examples -loadMap <- function() -{ - tryCatch( - { - # First check for existing cores - if(length(hcores) < 1) - { - shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario before mapping.", type = "warning") - } - else - { - # Need local so that each item gets its own number. Without it, the value of i in the renderPlot() will be the same across all instances. - local( - { - withProgress(message = 'Generating Map Data...\n', value = 0, - { - # Choose pattern file based on user choice of temperature or precipitation - if(input$mapVar == "tas") - patternFile <- globalTempPatterns[[input$mapPattern]] - else - patternFile <- globalPrecipPatterns[[input$mapPattern]] - - # Fetch needed data from Hector cores - results <- hector::fetchvars(hcores[[input$mapCore]], 1900:2100) - # Use temperature data for downscaling both temp and precip - tgav_hector <- dplyr::filter(results, variable == "Tgav") - pattern <- readRDS(patternFile) - coordinates <- pattern$coordinate_map - incProgress(1/2, detail = paste("Loading pattern, downscaling")) - # Construct coordinates based on -180 to 180 for longitude - for(i in 1:length(coordinates$lon)) - { - if(coordinates$lon[i] > 180) - coordinates$lon[i] <- coordinates$lon[i] - 360 - } - - # Apply patterns to temp data and transform for mapping - mapname <- paste("map", 1, sep="") - hector_annual_gridded <- fldgen::pscl_apply(pattern$annual_pattern, as.vector(tgav_hector$value+15)) - hector_annual_gridded_t <- t(hector_annual_gridded) - - # Build aesthetics based on if the compare to 1900 was checked - if(input$mapVar == "tas") - { - if(input$input_map_compare) - { - mapFill <- "\u0394 Temperature \u00B0C" - mapVar <- "deltaTemp" - mapPalette <- c("#fff7ec", "#fdbb84", "#fc8d59", "#ef6548", "#d7301f", "#b30000", "#7f0000") - } - else - { - mapFill <- "Temperature \u00B0C" - mapVar <- "Temp" - mapPalette <- c( "#4575b4", "#74add1", "#abd9e9","#e0f3f8", "#ffffbf", "#fee090", "#fdae61", "#d73027") - } - - mapDirection <- -1 - combined_data <- dplyr::mutate(coordinates, Temp = round(hector_annual_gridded_t[, as.numeric(input$mapYear)-1899], 2), - deltaTemp = round(hector_annual_gridded_t[, as.numeric(input$mapYear)-1899] - hector_annual_gridded_t[, 1], 2), - Lon=round(lon, 2), Lat=round(lat,2), Neg = ifelse(deltaTemp < 0, TRUE, FALSE)) - } - else - { - # Build aesthetics based on if the compare to 1900 was checked - if(input$input_map_compare) - { - mapFill <- "\u0394 Precip. - mm/day" - mapVar <- "deltaPrecip" - mapPalette <- c("#bf812d", "#dfc27d", "white", "#80cdc1", "#35978f", "#01665e", "#003c30") - } - else - { - mapFill <- "Precip. - mm/day" - mapVar <- "Precip" - mapPalette <- c("#fff7fb", "#67a9cf","#3690c0", "#02818a", "#016c59", "#014636") - } - mapDirection <- 1 - combined_data <- dplyr::mutate(coordinates, Precip = round(86400*hector_annual_gridded_t[, as.numeric(input$mapYear)-1899], 4), - deltaPrecip = round(((hector_annual_gridded_t[, as.numeric(input$mapYear)-1899] - hector_annual_gridded_t[, 1]) / hector_annual_gridded_t[, 1]) * 100 , 2), - Lon=round(lon, 2), Lat=round(lat,2), Neg = ifelse(deltaPrecip < 0, TRUE, FALSE)) - } - - combined_data <- dplyr::select(combined_data, -c(lat, lon, colnum)) - - lat_min <- -90 - lat_max <- 90 - lon_min <- -180 - lon_max <- 180 - - # Validate lat/lon min/max input fields if the filter by lat/lon was checked - if(input$input_map_filter) - { - validate(need(as.numeric(input$input_lat_min) >= -90 && (as.numeric(input$input_lat_min)) <= 90 && - (as.numeric(input$input_lat_min)) < (as.numeric(input$input_lat_max)), "Please enter a valid lat min")) - validate(need(as.numeric(input$input_lat_max) >= -90 && (as.numeric(input$input_lat_max)) <= 90 && - (as.numeric(input$input_lat_max)) > (as.numeric(input$input_lat_min)), "Please enter a valid lat max")) - validate(need(as.numeric(input$input_lon_min) >= -180 && (as.numeric(input$input_lon_min)) <= 180 && - (as.numeric(input$input_lon_min)) < (as.numeric(input$input_lon_max)), "Please enter a valid lon min")) - validate(need(as.numeric(input$input_lon_max) >= -180 && (as.numeric(input$input_lon_max)) <= 180 && - (as.numeric(input$input_lon_max)) > (as.numeric(input$input_lon_min)), "Please enter a valid lon max")) - - # Assign local variables to input fields - lat_min <- as.numeric(input$input_lat_min) - lat_max <- as.numeric(input$input_lat_max) - lon_min <- as.numeric(input$input_lon_min) - lon_max <- as.numeric(input$input_lon_max) - - # Filter data set by lat/lon - combined_data <- dplyr::filter(combined_data, Lat >= lat_min, Lat <= lat_max, Lon >= lon_min, Lon <= lon_max) - - } - - # Create world map borders - mapWorld <- ggplot2::borders("world") - # Construct ggplot map object - ggplotMap <- ggplot2::ggplot() + - mapWorld + - ggplot2::geom_raster(data = combined_data, ggplot2::aes_string(x="Lon", y = "Lat", fill=mapVar),interpolate = TRUE ) + - ggplot2::scale_fill_gradientn(colors = mapPalette) + #, limits = c(-1,1)*max(abs(combined_data[[mapVar]]))) + - ggplot2::labs(x="\u00B0 Longitude", y="\u00B0 Latitude", title = paste0(input$mapCore, " - ", input$mapYear), fill = mapFill) + - ggplot2::scale_y_continuous(limits=c(lat_min, lat_max), expand = c(0, 0), breaks=seq(-90,90,30))+ - ggplot2::scale_x_continuous(limits=c(lon_min, lon_max), expand = c(0, 0), breaks=seq(-180,180,30)) - - # Separate save plot fixes missing shape layer when saving - ggplotSave <<- ggplotMap - - localPlot <- plotly::ggplotly(p = ggplotMap ) - plotly::layout(p=localPlot, yaxis = list(tickformat = "\u00B0C", dtick = 10, showgrid=FALSE)) - plotly::layout(p=localPlot, xaxis = list(showgrid = FALSE)) - - output[[mapname]] <- plotly::renderPlotly(localPlot) - incProgress(1/1, detail = "Map loaded.") - Sys.sleep(0.25) - shinyjs::show(id = 'map-div') - - }) - }) - } - }, - - error = function(err) - { - # error handler picks up where error was generated - shinyalert::shinyalert("Error Detected:",print(paste('There was an error when attempting to load the graph:',err)), type = "error") - }) -} - -# Download handler for downloading the raw data output from a Hector run. This is activated upon button click. -output$downloadData <- downloadHandler( - - filename = function() - { - paste('Hector-data-', Sys.Date(), '.csv', sep='') - }, - - content = function(file) - { - if(length (hcores) > 0) - { - dataList <- list() - df <- data.frame() - seriesname <- "" - for(i in 1:length(hcores)) - { - hdata <- hector::fetchvars(core = hcores[[i]], dates = 1800:globalVars[['endDate']], vars = outputVariables, "\n") - hdata <- dplyr::mutate(hdata) - if(names(hcores[i])=="Custom") - seriesname <- input$input_ScenarioName - else - seriesname <- paste("RCP ", names(hcores[i])) - hdata <- dplyr::mutate(hdata, scenario=seriesname) - df <- data.frame(hdata) - dataList[[i]] <- df - } - - header_text <- paste("File created with Hector UI - https://github.com/JGCRI/hector-ui\n" , - "Model Parameters: " , input$input_paramToggle , "\n", - "Alpha:,", input$input_aero, ",Beta:,", input$input_beta, ",Diff:,", input$input_diff, - ",ECS:,", input$input_ecs, ",CO2:,", input$input_pco2, ",Q10:,", input$input_q10, ",Volc:,", input$input_volc, - "\n") - - cat(header_text, file = file) - lapply(dataList, function(x) write.table( data.frame(x), file , append= T, sep=',', row.names = F, )) - } - else - { - shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario before downloading.", type = "warning") - } - } -) - -# Download handler for higher resolution maps then the default plotly save - output$downloadMap <- downloadHandler( - filename = function() - { - paste("HectorMap",'.png',sep='') - }, - content = function(file) - { - # browser() - ggplot2::ggsave(filename = file, plot = ggplotSave, device = "png", dpi = 150, limitsize = TRUE, width = 15, height = 10) - } - ) diff --git a/inst/shinyApp/parameters.r b/inst/shinyApp/parameters.r deleted file mode 100644 index f5edfa0..0000000 --- a/inst/shinyApp/parameters.r +++ /dev/null @@ -1,295 +0,0 @@ -# Contains parameter related functions and observers - -#' Assign Parameters from model to core -#' -#' @return no return value -#' @export -#' -#' @examples -setCoreParameters <- function(hcore) -{ - hector::setvar(hcore, dates = NA, var = globalParameters['aero'], values = c(as.double(paramsList[['alpha']])), unit = NA) - hector::setvar(hcore, dates = NA, var = globalParameters['beta'], values = c(as.double(paramsList[['beta']])), unit = NA) - hector::setvar(hcore, dates = NA, var = globalParameters['diff'], values = c(as.double(paramsList[['diff']])), unit = "cm2/s") - hector::setvar(hcore, dates = NA, var = globalParameters['ecs'], values = c(as.double(paramsList[['S']])), unit = "degC") - hector::setvar(hcore, dates = NA, var = globalParameters['pco2'], values = c(as.double(paramsList[['C']])), unit = "ppmv CO2") - hector::setvar(hcore, dates = NA, var = globalParameters['q10'], values = c(as.double(paramsList[['q10_rh']])), unit = NA) - hector::setvar(hcore, dates = NA, var = globalParameters['volc'], values = c(as.double(paramsList[['volscl']])), unit = NA) -} - -#' Assign Parameters from parameter model values into numeric input components -#' -#' @return no return value -#' @export -#' -#' @examples -assignParameters <- function() -{ - # Update the on screen input components for parameters with the associated values from the chosen parameter group - # Note - with the current code the parameters need to be in correct order or would have to switch to named calls - print('in assign params') - updateSliderInput(session, "input_aero", value=paramsList[['alpha']]) - updateSliderInput(session, "input_beta", value=paramsList[['beta']]) - updateSliderInput(session, "input_diff", value=paramsList[['diff']]) - updateSliderInput(session, "input_ecs", value=paramsList[['S']]) - #updateSliderInput(session, "input_pco2", value=paramsList[['C']]) - updateSliderInput(session, "input_q10", value=paramsList[['q10_rh']]) - updateSliderInput(session, "input_volc", value=paramsList[['volscl']]) -} - -#' Restore Parameters after changing model state -#' -#' Function that maintains persistence after the user has changed parameter values to the Hector core (after scenario change) -#' -#' @return no return value -#' @export -#' -#' @examples -restoreParameters <- function() -{ - print('in restore params') - setParameters() -} - -#' Load an alternative model's parameters for emulation -#' -#' Observer function that responds to changes in input from the drop down in the model parameters section and loads a set of model params -#' -#' @return no return value -#' @export -#' -#' @examples -loadModelParameters <- function() -{ - print("in load model params") - - if(input$input_paramToggle == "default") - paramsList <<- globalParamsDefault - else if(input$input_paramToggle == "canesm2") - paramsList <<- globalParamsCanESM2 - else if(input$input_paramToggle == "cesm1-bgc") - paramsList <<- globalParamsCESM1BGC - else if(input$input_paramToggle == "gfdl-esm2g") - paramsList <<- globalParamsGFDLESM2G - else if(input$input_paramToggle == "miroc-esm") - paramsList <<- globalParamsMIROCESM - else if(input$input_paramToggle == "mpi-esm-lr") - paramsList <<- globalParamsMPIESMLR - else if(input$input_paramToggle == "mri-esm1") - paramsList <<- globalParamsMRIESM1 - - assignParameters() - - if(length(hcores) > 0) - { - for(i in 1:length(hcores)) - { - setCoreParameters(hcores[[i]]) - } - - resetCore() - } - - if(length(hcores) > 0) - loadGraph() -} - -#' Reset parameter values to current model's default -#' -#' Observer function to handle the user input on the reset parameters button - reset hector parameters to model defaults -#' -#' @return no return value -#' @export -#' -#' @examples -resetParams <- function() -{ - print("in reset params") - loadModelParameters() -} - - -#' Map Hector parameters to field values -#' -#' Function that gets the input parameters from the hector core and maps them to the input fields. This would normally be called on first load or when parameters are reset. -#' -#' @return no return value -#' @export -#' -#' @examples -loadParameters <- function() -{ - print("in load params") - - # Fetch hector parameters from core - for(i in 1:length(hcores)) - { - hdata <- hector::fetchvars(core = hcores[[i]], dates = NA, vars = globalParameters, "\n") - } - - # Update the on screen input components for parameters with the associated values stored in hector core - updateSliderInput(session, "input_aero", value=round(hdata[which(hdata$variable == "alpha"), 4], 2)) - updateSliderInput(session, "input_beta", value=round(hdata[which(hdata$variable == "beta"), 4], 2)) - updateSliderInput(session, "input_diff", value=round(hdata[which(hdata$variable == "diff"), 4], 2)) - updateSliderInput(session, "input_ecs", value=round(hdata[which(hdata$variable == "S"), 4], 2)) - #updateSliderInput(session, "input_pco2", value=round(hdata[which(hdata$variable == "C0"), 4], 2)) - updateSliderInput(session, "input_q10", value=round(hdata[which(hdata$variable == "q10_rh"), 4], 2)) - updateSliderInput(session, "input_volc", value=round(hdata[which(hdata$variable == "volscl"), 4], 2)) - - # Store params in the top level variable paramsList for persistence - paramsList['alpha'] <<- hdata[which(hdata$variable == "alpha"), 4] - paramsList['beta'] <<- hdata[which(hdata$variable == "beta"), 4] - paramsList['diff'] <<- hdata[which(hdata$variable == "diff"), 4] - paramsList['S'] <<- hdata[which(hdata$variable == "S"), 4] - paramsList['C'] <<- hdata[which(hdata$variable == "C0"), 4] - paramsList['q10_rh'] <<- hdata[which(hdata$variable == "q10_rh"), 4] - paramsList['volscl'] <<- hdata[which(hdata$variable == "volscl"), 4] -} - - -#' Set parameters to active Hector cores after user change -#' -#' Observer function to handle user click on the set parameters button. -#' -#' @return no return value -#' @export -#' -#' @examples -setParameters <- function() -{ - print("in set parameters") - if(length(hcores) > 0) - { - newVals <- vector() - pass_check <- TRUE - # Run through variables and make sure none are left empty and update the top level scope paramsList variable - # and the hector core with any changed values. - tryCatch( - { - for(i in 1:length(hcores)) - { - if(!is.na(input$input_aero) && input$input_aero <= 1 && input$input_aero > 0) - { - hector::setvar(hcores[[i]], dates = NA, var = globalParameters['aero'], values = c(as.double(input$input_aero)), unit = NA) - paramsList['alpha'] <<- as.double(input$input_aero) - } - else - { - shinyalert::shinyalert("Input Error:", "Aeroscale Forcing value out of bounds. Please use (0,1) as limits.", type = "error") - pass_check <- FALSE - } - if(!is.na(input$input_beta) && input$input_beta > 0 && input$input_beta <= 5) - { - hector::setvar(hcores[[i]], dates = NA, var = globalParameters['beta'], values = c(as.double(input$input_beta)), unit = NA) - paramsList['beta'] <<- as.double(input$input_aero) - } - else - { - shinyalert::shinyalert("Input Error:", "CO2 Fertilization Factor value out of bounds. Please use (0,5) as limits.", type = "error") - pass_check <- FALSE - } - if(!is.na(input$input_diff) && input$input_diff > 0) - { - hector::setvar(hcores[[i]], dates = NA, var = globalParameters['diff'], values = c(as.double(input$input_diff)), unit = "cm2/s") - paramsList['diff'] <<- as.double(input$input_aero) - } - else - { - shinyalert::shinyalert("Input Error:", "Ocean Heat Diffusivity value out of bounds. Please use (>0) as limits.", type = "error") - pass_check <- FALSE - } - if(!is.na(input$input_ecs) && input$input_ecs >=1 && input$input_ecs <= 6) - { - hector::setvar(hcores[[i]], dates = NA, var = globalParameters['ecs'], values = c(as.double(input$input_ecs)), unit = "degC") - paramsList['S'] <<- as.double(input$input_aero) - } - else - { - shinyalert::shinyalert("Input Error:", "ECS value out of bounds. Please use (1,6) as limits.", type = "error") - pass_check <- FALSE - } - # if(!is.na(input$input_pco2) && input$input_pco2 >= 250 && input$input_pco2 <= 300) - # { - # hector::setvar(hcores[[i]], dates = NA, var = globalParameters['pco2'], values = c(as.double(input$input_pco2)), unit = "ppmv CO2") - # paramsList['C'] <<- as.double(input$input_aero) - # } - # else - # { - # shinyalert::shinyalert("Input Error:", "Preindustrial CO2 value out of bounds. Please use (250, 300) as limits.", type = "error") - # pass_check <- FALSE - # } - if(!is.na(input$input_q10) && input$input_q10 > 0 && input$input_q10 <= 10) - { - hector::setvar(hcores[[i]], dates = NA, var = globalParameters['q10'], values = c(as.double(input$input_q10)), unit = NA) - paramsList['q10_rh'] <<- as.double(input$input_aero) - } - else - { - shinyalert::shinyalert("Input Error:", "Q10 value out of bounds. Please use (0, 10) as limits.", type = "error") - pass_check <- FALSE - } - if(!is.na(input$input_volc) && input$input_volc > 0 && input$input_volc <= 1) - { - hector::setvar(hcores[[i]], dates = NA, var = globalParameters['volc'], values = c(as.double(input$input_volc)), unit = NA) - paramsList['volscl'] <<- as.double(input$input_aero) - } - else - { - shinyalert::shinyalert("Input Error:", "Volcanic Forcing value out of bounds. Please use (0,1) as limits.", type = "error") - pass_check <- FALSE - } - } - if(pass_check == TRUE) - { - resetCore() - if(length(hcores) > 0) - loadGraph() - } - }, - warning = function(war) - { - # warning handler picks up where error was generated - showModal(modalDialog( - title = "Important message", - paste("Details: ",war) - )) - }, - error = function(err) - { - # error handler picks up where error was generated - print(paste("\n ERROR: Set Params - ", as.character(err[1]), sep=" ")) - shinyalert::shinyalert("Oops!",print(paste('Error:',err)), type = "error") - - }) - } - else - { - shinyalert::shinyalert("No active Hector cores", "Please set at least one of the RCP scenarios to active or upload a custom emissions scenario before setting parameters.", type = "warning") - } -} - -#' Notifies system that parameters have changed state -#' -#' This function is used to set the corresponding flag so that they system knows the parameters have been changed -#' -#' @param toggle -#' -#' @return no return value -#' @export -#' -#' @examples -setParamsChanged <- function(toggle) -{ - print("in set Params Changed") - # Check input validation here - - if(toggle == TRUE) - { - paramsChanged <<- TRUE - } - else - { - paramsChanged <<- FALSE - } - -} diff --git a/inst/shinyApp/rsconnect/shinyapps.io/jgcri/HectorUI.dcf b/inst/shinyApp/rsconnect/shinyapps.io/jgcri/HectorUI.dcf deleted file mode 100644 index 3fd36da..0000000 --- a/inst/shinyApp/rsconnect/shinyapps.io/jgcri/HectorUI.dcf +++ /dev/null @@ -1,12 +0,0 @@ -name: HectorUI -title: HectorUI -username: -account: jgcri -server: shinyapps.io -hostUrl: https://api.shinyapps.io/v1 -appId: 976821 -bundleId: 3844134 -url: https://jgcri.shinyapps.io/HectorUI/ -when: 1605034751.36457 -asMultiple: FALSE -asStatic: FALSE diff --git a/inst/shinyApp/server.r b/inst/shinyApp/server.r deleted file mode 100644 index 4f57fce..0000000 --- a/inst/shinyApp/server.r +++ /dev/null @@ -1,301 +0,0 @@ -# This file is the application controller - -library(hectorui) -library(hector) - - -#' Global constants for hectorui -#' @import hector -#' @name constants -NULL - - -# Global vars for misc items such as the run date end year (2100) -#' @details \code{globalVars}: Miscellaneous global variables -#' @rdname constants -#' @export -globalVars <- get_globalVars() - - -# Global vars for scale colors -#' @details \code{globalColorScales}: Scale colors -#' @rdname constants -#' @export -globalColorScales <- get_globalColorScales() - - -# Global file paths vector -#' @details \code{globalScenarios} Scenario input file names and paths -#' @rdname constants -#' @export -rcps <- get_rcps() - - -# Global file paths vector -#' @details \code{globalScenarios} Scenario input file names and paths -#' @rdname constants -#' @export -globalScenarios <- get_globalScenarios() - - -# Global scenario color schemes -#' @details \code{globalScenarios} Scenario color schemes -#' @rdname constants -#' @export -globalScenarioColors <- get_globalScenarioColors() - - -# Global temperature patterns -#' @details \code{globalTempPatterns} Create global temperature patterns list -#' @rdname constants -#' @export -globalTempPatterns <- get_globalTempPatterns() - - -# Global precipitation patterns list -#' @details \code{globalPrecipPatterns} Create global precipitation patterns list -#' @rdname constants -#' @export -globalPrecipPatterns <- get_globalPrecipPatterns() - - -# Create master list of parameter lookup strings -#' @details \code{globalParameters}: Capability strings (internal name lookup/mapping) for Hector parameters - (should match UI component ids) -#' @rdname constants -#' @export -globalParameters <- get_globalParameters() - - -# Default Hector parameters -#' @details \code{globalParamsDefault}: Default Parameter Set -#' @rdname constants -#' @export -globalParamsDefault <- get_globalParamsDefault() - - -# CanESM2 Parameter Sets -#' @details \code{globalParamsCanESM2}: CanESM2 Parameters for model emulation -#' @rdname constants -#' @export -globalParamsCanESM2 <- get_globalParamsCanESM2() - - -# CESM1-BGC Parameter Set -#' @details \code{globalParamsCESM1BGC}: CESM1-BGC Parameters for model emulation -#' @rdname constants -#' @export -globalParamsCESM1BGC <- get_globalParamsCESM1BGC() - - -# GFDL-ESM2G Parameter Set -#' @details \code{globalParamsGFDLESM2G}: GFDL-ESM2G Parameters for model emulation -#' @rdname constants -#' @export -globalParamsGFDLESM2G <- get_globalParamsGFDLESM2G() - - -# MIROC-ESM Parameter Set -#' @details \code{globalParamsMIROCESM}: MIROC-ESM Parameters for model emulation -#' @rdname constants -#' @export -globalParamsMIROCESM <- get_globalParamsMIROCESM() - - -# MPI-ESM-LR Parameter Set -#' @details \code{globalParamsMPIESM-LR}: MPI-ESM-LR Parameters for model emulation -#' @rdname constants -#' @export -globalParamsMPIESMLR <- get_globalParamsMPIESMLR() - - -# MRI-ESM1 Parameter Set -#' @details \code{globalParamsMRIESM1}: MRI-ESM1 Parameters for model emulation -#' @rdname constants -#' @export -globalParamsMRIESM1 <- get_globalParamsMRIESM1() - - -# Create master list of variable lookups for "capabilities" (output variables for graphing) -#' @details \code{globalCapabilities} Capability string (internal name lookup/mapping) for Hector output variables, organized by group -#' @rdname constants -#' @export -globalCapabilities <- get_globalCapabilities() - - - - -#' Main server/data processing function -#' -#' The server function is the main function that processes inputs and handles data i/o. -#' This is required for Shiny apps using the separate UI/Server file architecture. -#' -#' @param input - Creates the Shiny input object -#' @param output - Creates the Shiny output object -#' @param session - Creates the Shiny session object -#' @export -#' -#' @examples -server <- function(input, output, session) -{ - # Needed to interact Shiny with client side JS - shinyjs::useShinyjs() - - # Load other source files - source("parameters.r", local = TRUE) - source("core.r", local = TRUE) - source("output.r", local = TRUE) - source("observers.r", local = TRUE) - -#----- Set up non global variables in top level application scope - - ggplot2::theme_set(ggplot2::theme_minimal()) - outputVariables <- list() - inifile <- system.file('input/hector_rcp45.ini', package='hector', mustWork=TRUE) - hcores <- list() - totalActivePlots <- 0 - customLoaded <- FALSE - selectedIndex <<- 1 - ggplotSave <<- ggplot2::ggplot() - - # These variables are for storing the current parameter values so that if a change is made (like loading new scenario) - # then the custom params set by user will persist beyond core restarts - paramsList <- list() - paramsList <- globalParamsDefault - assignParameters() - - # These two lines of code allows the main Hector cores object to be reactive and able to be linked with the maps scenario dropdown - coresReactive <- reactive({ - return(names(hcores)) - }) - output$coreMapping <- renderUI({ - selectInput(inputId = "mapCore", width = 180, label = ("Available Scenarios:"), choices = coresReactive(), selected = selectedIndex) - }) - -#----- End set up local vars - -#----- Set up graphs and maps - - # This UI output variable is responsible for generating the 4 graphs in the output section. - output$plots <- renderUI( - { - plot_output_list <- lapply(1:4, function(i) - { - plotname <- paste("plot", i, sep="") - plot <- plotly::plotlyOutput(plotname, height = '100%', width = '100%') - - tags$div(class = "group-output", - plotly::plotlyOutput(plotname, height = '100%', width = '100%') - ) - }) - - # Convert the list to a tagList - this is necessary for the list of items to display properly. - do.call(tagList, plot_output_list) - }) - - # This UI output variable is responsible for rendering the downscaled maps. It is initiated as 'hidden' using shinyjs until the user first loads a map. - output$maps <- renderUI( - { - map_output_list <- lapply(1:1, function(i) - { - mapname <- paste("map", i, sep="") - map <- plotly::plotlyOutput(mapname, width = '100%') - - shinyjs::hidden(tags$div(class = "group-output", id = "map-div", - shinycustomloader::withLoader(map, type="text", - loader = list(shinycustomloader::marquee("Please Wait... Finalizing Raster Output", style="font-size:30px; color:white; text-align:center", scrollamount = 0)))) - ) - }) - - # Convert the list to a tagList - this is necessary for the list of items to display properly. - do.call(tagList, map_output_list) - }) - - # Set initial plotting variables - for(i in 1:4) - { - plotname <- paste("plot", i, sep="") - shinyjs::hide(plotname) - } - - # Set initial mapping variables and hide - for(i in 1:1) - { - mapname <- paste("map", i, sep="") - shinyjs::hide(mapname) - } -#----- End set up plots and maps - -#----- Set up observer functions to catch user interaction on the input fields - - observeEvent(input$launch_scenario, updateTabsetPanel(session, "nav", selected = "Explore Hector"), ignoreInit = TRUE) - observeEvent(input$capabilities, setCapabilities(), ignoreInit = FALSE) - observeEvent(input$loadGraphs, {setParameters(); loadGraph()}, ignoreInit = TRUE) - # observeEvent(input$set_Params, setParameters(), ignoreInit = TRUE) - observeEvent(input$input_ScenarioFile, loadScenario(), ignoreInit = TRUE) - observeEvent(input$reset_Params, resetParams(), ignoreInit = TRUE) - observeEvent(input$input_RCP_2.6, {setRCP("RCP-2.6"); setParameters(); loadGraph()}, ignoreInit = TRUE) - observeEvent(input$input_RCP_4.5, {setRCP("RCP-4.5"); setParameters(); loadGraph()}, ignoreInit = FALSE) - observeEvent(input$input_RCP_6.0, {setRCP("RCP-6.0"); setParameters(); loadGraph()}, ignoreInit = TRUE) - observeEvent(input$input_RCP_8.5, {setRCP("RCP-8.5"); setParameters(); loadGraph()}, ignoreInit = TRUE) - observeEvent(input$input_enableCustom, setRCP("Custom"), ignoreInit = TRUE) - observeEvent(input$input_load_custom, loadCustomScenario(), ignoreInit = TRUE) - observeEvent(input$input_load_emissions, loadCustomEmissions(), ignoreInit = TRUE) - observeEvent(input$input_paramToggle, loadModelParameters(), ignoreInit = TRUE) - observeEvent(input$input_enableCustom, toggleCustom(), suspended = TRUE) - observeEvent(input$input_set_custom_emissions, setCustomEmissions(), ignoreInit = TRUE) - observeEvent(input$input_reset_custom_emissions, resetCustomEmissions(), ignoreInit = TRUE) - observeEvent(input$loadMaps, loadMap(), ignoreInit = TRUE) - observeEvent(input$input_submit_feedback, sendFeedback(), ignoreInit = TRUE) - observeEvent(input$mapCore, updateIndex(), ignoreInit = TRUE) - observeEvent(input$saveMap, saveMap(), ignoreInit = TRUE) - - # Observe param changes - #observeEvent(input$input_pco2, loadGraph(), ignoreInit = FALSE) - observeEvent(input$input_q10, {setParameters(); loadGraph()}, ignoreInit = FALSE) - observeEvent(input$input_volc, {setParameters(); loadGraph()}, ignoreInit = FALSE) - observeEvent(input$input_aero, {setParameters(); loadGraph()}, ignoreInit = FALSE) - observeEvent(input$input_beta, {setParameters(); loadGraph()}, ignoreInit = FALSE) - observeEvent(input$input_diff, {setParameters(); loadGraph()}, ignoreInit = FALSE) - observeEvent(input$input_ecs, {setParameters(); loadGraph()}, ignoreInit = FALSE) - - -#function() - - # This is a group Observer block for all of the params fields because they all respond the same way - #observe({ - #input$input_pco2 - #input$input_q10 - #input$input_volc - #input$input_aero - #input$input_beta - #input$input_diff - #input$input_ecs - #}) - # ^^ replaced by observeEvent functions above - -#----- End observer function setup - -#----- Custom Functions - - # Renders feedback form - output$feedbackFrame <- renderUI({ - frame_link <- tags$iframe(src="https://docs.google.com/forms/d/e/1FAIpQLSf6inU3DHAE5tZo4vdgtTjtFZvw7OCuH_5xbLvnj5tdqiRVNA/viewform?embedded=true", - height=1100, width=700, seamless=NA) - frame_link - }) - - toggleCustom <- function() - { - shinyjs::disable("input_enableCustom") - } - - testMe <- function() - { - if(!is.na(input$input_beta) && (as.double(input$input_beta) < 0.01 )) - { - updateSliderInput(session = session, inputId = "input_beta", value = 1) - } - } -} - -#----- End Custom Functions diff --git a/inst/shinyApp/ui.r b/inst/shinyApp/ui.r deleted file mode 100644 index 217f0b9..0000000 --- a/inst/shinyApp/ui.r +++ /dev/null @@ -1,560 +0,0 @@ -# -# This is a Shiny web application UI document. It describes the on screen components that define the visual application. - -library(shinyBS) -library(shinyWidgets) - -# Using Shiny Fixed layout -fluidPage(theme = shinythemes::shinytheme("readable"), - shinyalert::useShinyalert(), - title = "HectorUI: An Interactive Climate Model", - - # Code that gets called on first load of application to load in any themes/css etc - # Loads the custom.css file that contains custom styles and overwrites some built in styles - tags$head - ( - tags$link(rel = "stylesheet", type = "text/css", href = "style.css") - ), - shinyjs::useShinyjs(), - - tags$div(class = "container", - tags$img(src = "images/earth-header.png", height = "300px", width = "100%", class = "earth", alt = "Earth's atmosphere"), - tags$div( - a( - img(src = "images/GCIMS_logo_alt.svg", class = "logo"), href = "https://gcims.pnnl.gov/", target = "_blank"), - h1("HectorUI", class = "header-text-title"), - h2("An Interactive Climate Model", class = "header-text-sub", style = "font-weight:normal; "), - ), - ), - br(), - # Main component from which all other components fall under, navbarPage, a multi-page user-interface that includes a navigation bar - navbarPage - ( - id = "nav", - title = "", - collapsible = TRUE, - # Main navigation - tabPanel( - "Home", - fluidRow(column(7, div(class = "home-text", - p("Welcome to the user interface for", - tags$b("Hector:"), - " an open source, object-oriented, and interactive simple global climate carbon-cycle model. - It runs essentially instantaneously while still representing the most critical global scale earth system processes, - and is one of a class of models heavily used for for emulating complex climate models and uncertainty analyses.", style = "float:left"), - p("This interactive version is built upon previous work by developers at the ", - a("Joint Global Change Research Institute (JGCRI)", href="http://globalchange.umd.edu/", target="blank"), - " including the development of the initial C++ version of Hector, and the follow up R Package, \"Hector R\"."), - style = "float: left" - )), - column(4, div( - br(), - br(), - - actionButton(inputId = "launch_scenario", - label = "Explore Hector", - style = "background: #4174C3; color: white; - font-size: 24px; padding: 32px 24px; - box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);"), - align = "center" - )) - ) - ), - tabPanel( - "Guides", - mainPanel( - style="vertical-align: middle;", - h3("Ready to get started?", - tags$a("View the Guide/Tutorial", href="https://jgcri.github.io/hectorui/articles/Tutorial.html", target="blank")), - br(), - HTML('') - - ) - ), - # Main panel for the interactive section of the application - tabPanel( - "Explore Hector", - sidebarPanel( - width = 4, - tabsetPanel( - tabPanel(class = "params", - "Standard Scenarios", - h5("Representative Concentration Pathways (RCPs)"), - # tags$hr(class="hrNav"), - # shinyWidgets::awesomeCheckboxGroup(inputId = "input_RCP", label = "", - # choices = c("2.6", "4.5", "6.0", "8.5"), inline = TRUE, status = "info"), - shinyWidgets::prettyCheckbox(inputId = "input_RCP_2.6", label = "2.6", value = FALSE, width = 45, - inline = TRUE, icon = icon("check"), animation = "jelly", status = "info"), - shinyWidgets::prettyCheckbox(inputId = "input_RCP_4.5", label = "4.5", value = TRUE, width = 45, - inline = TRUE, icon = icon("check"), animation = "jelly", status = "success"), - shinyWidgets::prettyCheckbox(inputId = "input_RCP_6.0", label = "6.0", value = FALSE, width = 45, - inline = TRUE, icon = icon("check"), animation = "jelly", status = "warning"), - shinyWidgets::prettyCheckbox(inputId = "input_RCP_8.5", label = "8.5", value = FALSE, width = 45, - inline = TRUE, icon = icon("check"), animation = "jelly", status = "danger"), - - chooseSliderSkin(skin = "Flat", color = "#375a7f"), - - h5("Model Parameters"), - fluidRow( - column(6, - selectInput("input_paramToggle", label = NULL, - choices = list("Hector Default" = "default", "CanESM2" = "canesm2", - "CESM1-BGC" = "cesm1-bgc", "GFDL-ESM2G" = "gfdl-esm2g", - "MIROC-ESM" = "miroc-esm", "MPI-ESM-LR" = "mpi-esm-lr", - "MRI-ESM1" = "mri-esm1")) - ), - column(6, - actionButton(inputId="reset_Params", label="Reset", - style = "background: #4174C3; color: white; padding:4px; display:center-align") - ), - ), - fluidRow( - column(12, - sliderInput("input_aero", "Aerosol forcing scaling factor", min = 0.01, max = 1, value = 1, width = "90%"), - sliderInput("input_beta", "CO2 fertilization factor", min = 0.01, max = 4, value = 0.36, step = 0.01, width = "90%"), - sliderInput("input_diff", "Ocean heat diffusivity", min = 0.1, max = 5, value = 2.3, step = 0.1, post = " cm2/s", width = "90%"), - sliderInput("input_ecs", "Equilibrium climate sensitivity", min = 1, max = 6, value = 3, step = 0.1, post = " °C", width = "90%"), - #sliderInput("input_pco2", "Preindustrial CO2 conc. (ppmv CO2)", min = 250, max = 300, value = 276.09, post = " ppmv CO2"), #might remove for v3 - sliderInput("input_q10", "Heterotrophic Temperature Sensitivity", min = 1, max = 5, value = 2, step = 0.1, width = "90%"), - sliderInput("input_volc","Volcanic forcing scaling factor", min = 0.01, max = 1, value = 1, width = "90%"), - - # Add hover popups with parameter descriptions - bsPopover("input_aero", "Increasing this means aerosols exert a stronger radiative forcing", - placement = "top", trigger = "hover", options = NULL), - bsPopover("input_beta", "Increasing this means vegetation grows faster as CO2 increases", - placement = "top", trigger = "hover", options = NULL), - bsPopover("input_diff", "Increasing this means heat moves deeper into the ocean quicker", - placement = "top", trigger = "hover", options = NULL), - bsPopover("input_ecs", "Increasing this means a larger temperature rise as CO2 increases", - placement = "top", trigger = "hover", options = NULL), - bsPopover("input_pco2", "Increasing this means a higher atmospheric CO2 as the model starts", - placement = "top", trigger = "hover", options = NULL), - bsPopover("input_q10", "Increasing this means soil microbes respire faster as temperature rises", - placement = "top", trigger = "hover", options = NULL), - bsPopover("input_volc", "Increasing this means that volcanic eruptions exert a stronger radiative forcing", - placement = "top", trigger = "hover", options = NULL) - - #actionButton(inputId="set_Params", label="Set Parameters", style = "background: #4174C3; color: white;"), - ), - ), - - # Divider that holds the custom emissions options/controls - # div(class = "c-emissions", - # h5("Custom Emissions"), - # tags$hr(class="hrNav"), - # p("Note: Custom emissions are only applicable to standard scenarios (not custom created scenarios)"), - # tags$table( - # tags$tr(width = "100%", - # tags$td(width="25%", "Emissions:"), - # tags$td(shiny::selectInput(inputId = "input_custom_emissions", label = NULL, width = 200, multiple = F, - # choices = list('Emissions' = list("Black Carbon Emissions" = 'e_bc', "Organic Carbon Emissions"='e_oc')))) - # ) - # ), - # tags$table( - # tags$tr(width = "100%", - # tags$td(align = "left", shiny::textInput(inputId = "input_custom_start", label = "Start Year:", width = 65)), - # tags$td(width = 15), - # tags$td(align = "left", shiny::textInput(inputId = "input_custom_end", label = "End Year:", width = 65)), - # tags$td(width = 15), - # tags$td(align = "left", shiny::textInput(inputId = "input_emissions_value", label = "Value (Tg):", width = 65)), - # tags$td() - # ) - # ), - # tags$table( - # tags$tr(width = "100%", - # tags$td(width = "15%", align="left", class="tdPushTop", - # popify(div(class="paramDivsPushTop", icon("info-circle", "fa-1x")), title = "Sloping Emissions", - # content = "Choosing this option will create a smooth slope from the starting years value to the specified value at the end year.", placement = "top" )), - # tags$td(width = "85%",shinyWidgets::prettyCheckbox(animation = "pulse", inputId = "input_slope_emissions", label = "Slope Emissions", value = FALSE, inline = TRUE, icon = icon("check"))) - # ) - # ), - # div( - # actionButton(inputId="input_set_custom_emissions", label="Set Emissions", style = "background: #4174C3; color: white;"), - # actionButton(inputId="input_reset_custom_emissions", label="Reset All Emissions", style = "background: #4174C3; color: white;"), - # popify(div(class="paramDivs", icon("info-circle", "fa-1x")), title = "Resetting Emissions", - # content = "This will reset all active Standard Hector cores to their default state, overwriting any custom emissions AND parameter changes.", placement = "top" ) - # ) - # )# ) Collapsible comment - # ) - - ), - # Custom Scenarios Tab Panel - tabPanel - (class = "params", - "Custom Scenarios", - div - ( - h5("Custom Emissions Pathway"), - tags$hr(class="hrNav"), - p("Steps to run your own scenario with custom emissions:"), - tags$ol( - tags$li("Choose a baseline RCP scenario as your starting point"), - tags$li("Give your new custom scenario a name"), - tags$li("Download the emissions file template for that scenario and enter your own emissions"), - tags$li("Upload the new customized emissions file") - ), - p(tags$strong("Do not edit any field names or change the CSV file in any way other than changing the data")), - tags$table( - tags$tr(width = "100%", - tags$td(width = "145", "Baseline Scenario:"), - tags$td(width = "155", selectInput("input_custom_RCP", label = NULL, list("RCP 2.6" = "RCP-2.6","RCP 4.5"="RCP-4.5", "RCP 6.0"="RCP-6.0", "RCP 8.5" = "RCP-8.5"), width=150, selected = "RCP-4.5")) - ), - tags$tr(width = "100%", - tags$td(width = "145", "Your Scenario Name:"), - tags$td(width = "200", textInput("input_custom_scenarioName", label = NULL, width=195, value = "")) - ) - ), - div( - conditionalPanel( - condition = "input.input_custom_RCP == 'RCP-2.6'", - a(h6("Download RCP 2.6 Emissions File Template"), href="input/emissions/RCP26_custom_template.csv") - ), - conditionalPanel( - condition = "input.input_custom_RCP == 'RCP-4.5'", - a(h6("Download RCP 4.5 Emissions File Template"), href="input/emissions/RCP45_custom_template.csv") - ), - conditionalPanel( - condition = "input.input_custom_RCP == 'RCP-6.0'", - a(h6("Download RCP 6.0 Emissions File Template"), href="input/emissions/RCP6_custom_template.csv") - ), - conditionalPanel( - condition = "input.input_custom_RCP == 'RCP-8.5'", - a(h6("Download RCP 8.5 Emissions File Template"), href="input/emissions/RCP85_custom_template.csv") - ), - fileInput("input_custom_emissions_file", "Upload Custom Emissions File:", width=275, buttonLabel = "Choose File", accept = c("text/csv", ".csv", "text/comma-separated-values,text/plain")), - div( - class="paramDivs", actionButton(inputId="input_load_emissions", label="Create Scenario")) - ) - ) # End Div - ) # End Custom Scenarios Tab Panel - ) - ), - # Right hand content panel - Main panel that is used for output - mainPanel - (width = 8, - tabsetPanel - ( - # Graphs Tab - tabPanel - (fixed = TRUE, - p(icon("chart-line","fa-2x"), "Scenario Output", value="outputTab"), - br(), - div( - tags$table - ( - tags$tr - (class = "output-vars", - tags$td - ( - selectInput - ("capabilities", "Choose Output Variables (up to 4):", - list('Carbon Cycle' = list("Atmospheric CO2"="cc_co2", "Atmospheric Carbon Pool"="cc_acp", "FFI Emissions"="cc_ffi", "LUC Emissions"="cc_luc"), - 'Concentrations' = list("Amospheric N2O"='c_an20'), - 'Emissions' = list("Black Carbon Emissions" = 'e_bc', "Organic Carbon Emissions"='e_oc'), #"RF - H2O"='f_h2o', "RF - Ozone"='f_oz', - 'Forcings' = list("RF - Total"='f_rft', "RF - Albedo"='f_alb', "RF - CO2"='f_co2', "RF - N2O"='f_n2o', "RF - Black Carbon"='f_bc', - "RF - Organic Carbon"='f_oc', "RF - SO2 Direct"='f_so2d', "RF - SO2 Indirect"='f_so2i', "RF - SO2 Total"='f_so2t', "RF - Volcanic Activity"='f_va', "RF - CH4"='f_ch4'), - # 'Halocarbon Emissions' = list("CF4 Emissions"='he_cf4', "C2F6 Emissions"='he_c2f6', "HFC-23 Emissions"='he_hfc23', "HFC-32 Emissions"='he_hfc32', "HFC-4310 Emissions"= 'he_hfc4310', "HFC-125 Emissions"='he_hfc125', "HFC-134a Emissions"='he_hfc134a', "HFC-143a Emissions"='he_hfc143a', "HFC-227ea Emissions"='he_hfc227ea', - # "HFC-245fa Emissions"='he_hfc245fa', "SF6 Emissions"='he_sf6', "CFC-11 Emissions"='he_cfc11', "CFC-12 Emissions"='he_cfc12', "CFC-113 Emissions"='he_cfc113',"CFC-114 Emissions"='he_cfc114',"CFC-115 Emissions"='he_cfc115',"CCl4 Emissions"='he_ccl4', "CH3CCl3 Emissions"='he_ch3ccl3', - # "HCFC-22 Emissions"='he_hcfc22', "HCFC-141b Emissions"='he_hcfc141b', "HCFC-142b Emissions"='he_hcfc142b', "Halon-1211 Emissions"='he_halon1211', "Halon-1301 Emissions"='he_halon1301', "Halon-2402 Emissions"='he_halon2402', "CH3Cl Emissions"='he_ch3cl', "CH3Br Emissions"='he_ch3br'), - 'Halocarbon Forcings' = list("CF4 Forcing"='hf_cf4', "C2F6 Forcing"='hf_c2f6', "HFC-23 Forcing"='hf_hfc23', "HFC-4310 Forcing"='hf_hfc4310', "HFC-125 Forcing"='hf_hfc125', "HFC-143a Forcing"='hf_hfc143a', - "HFC-254fa Forcing"='hf_hfc245fa', "SF6 Forcing"='hf_hfcsf6', "CFC-11 Forcing"='hf_cfc11', "CFC-12 Forcing"='hf_cfc12', "CFC-113 Forcing"='hf_cfc113',"CFC-114 Forcing"='hf_cfc114',"CFC-115 Forcing"='hf_cfc115',"CCl4 Forcing"='hf_ccl4', "CH3CCl3 Forcing"='hf_ch3ccl3', - "Halon-1211 Forcing"='hf_halon1211', "Halon-1301 Forcing"='hf_halon1301', "Halon-2402 Forcing"='hf_halon2402', "CH3Cl Forcing"='hf_ch3cl', "CH3Br Forcing"='hf_ch3br'), #"HCFC-22 Forcing"='hf_hcfc22', "HCFC-141b Forcing"='hf_hcfc141b', "HCFC-142b Forcing"='hf_hcfc142b', - 'Methane' = list("Atmospheric CH4"='m_a_ch4', "Emissions CH4"='m_e_ch4'), - # 'Ocean' = list("Ocean Carbon Flux"='o_cf', "Ocean Total Carbon"='o_tc', "Ocean Surface High-Lat Carbon"='o_os_hlc', "Ocean Surface Low-Lat Carbon"='o_os_llc', "Ocean Intermediate Carbon"='o_ic', "Ocean Deep Carbon"='o_dc', "Thermohaline Overturning"='o_to', - # "High-Lat Overturning"='o_hl_o', "Warm-Intermediate Exchange"='o_wie', "Intermediate-Deep Exchange"='o_ide', "High Latitude Ph"='o_hl_ph', "Low Latitude Ph"='o_ll_ph', "Atmosphere-Ocean Flux - High Lat"='o_hl_aof', "Atmosphere-Ocean Flux - Low Lat"='o_ll_aof', - # "Partial Pressure CO2 - High Lat"='o_hl_pp_co2',"Partial Pressure CO2 - Low Lat"='o_ll_pp_co2',"Dissolved Inorganic C - High Lat"='o_hl_dic', "Dissolved Inorganic C - Low Lat"='o_ll_dic', "Ocean Temperature - High Lat"='o_hl_t', "Ocean Temperature - Low Lat"='o_ll_t', - # "Carbonate Concentration - High Lat"='o_hl_cc', "Carbonate Concentration - Low Lat"='o_ll_cc'), # "Land Temp Anomaly"="t_lta", - 'SO2' = list( "Anthropogenic SO2"='so2_a', "Volcanic SO2"='so2_v'), - 'Temperature' = list("Global Mean Temp"='t_gmt', "Equilibrium Global Temp"='t_egt', "Ocean Surface Temp"='t_ost', "Ocean Air Temp"='t_oat', "Heat Flux - Mixed Layer Ocean"='t_hf_mlo', "Heat Flux - Interior Layer Ocean"='t_hf_ilo', "Total Heat Flux - Ocean"='t_hf_t')), - multiple = T, selected = "t_gmt") - ), - ) - ), - actionButton(inputId="loadGraphs", label="Load Graphs", width = '200px', style = "background: #0B3F8F; color: white;"), - downloadButton("downloadData", label="Download Raw Data", style = "background: #0B3F8F; color: white; width: 200px;"), - br(), - br(), - uiOutput("plots", class = "customPlot") - ) - ), # end Graphs Tab - - # Maps Tab - tabPanel - (class = "maps", - p(icon("globe-americas","fa-2x"), "World Maps", value="outputTab"), - br(), - h6("These maps are generated using ", - a("fldgen,", href = "https://doi.org/10.1371/journal.pone.0223542", target = "_blank"), "a tool used to spatially downscale Hector temperature output onto the Earth System Model grid of your choosing."), - p("Please note that some map model patterns are rather large and can take several seconds to load. Due to this, maps will need to be refreshed manually after any changes."), - fluidRow( - column(3, selectInput(inputId = "mapPattern", label = "Choose Model:", width = "400px", - choices = c("CanESM2" = "CanESM2", - "CESM1-BGC" = "CESM1-BGC", - "GFDL-ESM2G" = "GFDL-ESM2G", - "MIROC-ESM" = "MIROC-ESM", - "MPI-ESM-LR" = "MPI-ESM-LR", - "MRI-ESM1" = "MRI-ESM1")) - ), - column(3, selectInput(inputId = "mapVar", label = "Choose Variable:", selected = "tas", width = "400px", - choices = c("Temperature" = "tas", "Precipitation" = "pr"), multiple = F) - ), - column(3, selectInput(inputId = "mapYear", label = "Choose Year:", selected = 2100, width = "400px", - choices = c(2000:2100), multiple = F) - ), - column(3, uiOutput("coreMapping")) - - - - - # tags$tr(class = "maps", - # tags$td( - # selectInput(inputId = "mapPattern", label = "Choose Model:", width = "100%", - # choices = c("CanESM2" = "CanESM2", - # "CESM1-BGC" = "CESM1-BGC", - # "GFDL-ESM2G" = "GFDL-ESM2G", - # "MIROC-ESM" = "MIROC-ESM", - # "MPI-ESM-LR" = "MPI-ESM-LR", - # "MRI-ESM1" = "MRI-ESM1")) - # ), - # tags$td(style="padding-left: 5px;", - # selectInput(inputId = "mapVar", label = "Choose Variable:", selected = "tas", width = "100%", - # choices = c("Temperature" = "tas", "Precipitation" = "pr"), multiple = F) - # ), - # tags$td(style="padding-left: 5px;", - # selectInput(inputId = "mapYear", label = "Choose Year:", selected = 2100, width = "100%", - # choices = c(2000:2100), multiple = F) - # ), - # tags$td(style="padding-left: 5px;", width = "100%", - # uiOutput("coreMapping") - # ) - # ) - ), - tags$table( - tags$tr(width = "100%", - # tags$td(width = "20", align="left", class="tdPushTop", - # popify(div(class="paramDivs", icon("info-circle", "fa-1x")), title = "Enable Comparative Differences", - # content = "This will change the temperature output on the map to show the difference between the computed temperature of the selected year and the temperature from the year 1900.", - # placement = "top")), - tags$td(shinyWidgets::prettyCheckbox(inputId = "input_map_compare", label = "Show as comparison to year 1900", value = FALSE, inline = FALSE, icon = icon("check"))) - ) - ), - tags$table( - tags$tr(width = "100%", - # tags$td(width = "20", align="left", class="tdPushTop", - # popify(div(class="paramDivs", icon("info-circle", "fa-1x")), title = "Filter by Lat/Lon", - # content = "Choosing this option will allow you to zoom in to a specific lat/lon region and have the map rescale to the regional data.", - # placement = "top")), - tags$td(shinyWidgets::prettyCheckbox(inputId = "input_map_filter", label = "Filter by Lat/Lon", value = FALSE, inline = TRUE, icon = icon("check")) - ) - ), - ), - conditionalPanel(condition = "input.input_map_filter == true", - tags$table( - tags$tr(width = "100%", - tags$td(align = "left", shiny::textInput(inputId = "input_lat_min", label = "Lat Min:", width = 65, value = 13)), - tags$td(width = 15), - tags$td(align = "left", shiny::textInput(inputId = "input_lat_max", label = "Lat Max:", width = 65, value = 57)), - tags$td(width = 15), - tags$td(align = "left", shiny::textInput(inputId = "input_lon_min", label = "Lon Min:", width = 65, value = -135)), - tags$td(width = 15), - tags$td(align = "left", shiny::textInput(inputId = "input_lon_max", label = "Lon Max:", width = 65, value = -55)), - tags$td() - ) - ), - ), - actionButton(inputId="loadMaps", label="Load Map", width = 150, style = "background: #0B3F8F; color: white;"), - downloadButton("downloadMap", label="Save Hi-Res Map", width = 150), - br(), - uiOutput("maps", class = "customPlot") - ) # End Maps Tab - - ) # End tabset panel - ) # End mainpanel - ), - tabPanel - ( - "About", - # Main Panel that holds the tabs for the Information section - mainPanel - ( - width = 9, - class = "about-info", - tabsetPanel - ( - # Information Tab Panel - tabPanel - ( - p(icon("info-circle", "fa-2x"), "Hector Information", value="infoTab"), - h5("Background Information"), tags$hr(class="hrNav"), - tags$table( - tags$tr( - tags$td(width = "50%", - h5("Explore the Hector Product Family", style="text-align: left"), - br(), - h6("Source code and contribution is available on the ", - a("HectorUI Github page", href = "https://github.com/JGCRI/hector", target = "_blank")), - ), - ) - ), - br(), - tags$td( - tags$figure( - img(src='https://github.com/JGCRI/hector/wiki/rcp85.png', - height="260px", - class="hector-fig"), - tags$figcaption("Hector's global temperature rise for RCP 8.5 scenario, compared to observations and other model results") - ), style="text-align: center" - ), - br(), - h5("Documentation/Downloads"), - tags$hr(class="hrNav"), - p("The primary link to the Hector model documentation is the ", - a("online manual", href="https://jgcri.github.io/hector/articles/manual", target="blank"), - ", which is included in the vignettes/manual directory. The code is also documented with ", - a("Doxygen-style", href="http://doxygen.org", target="blank"), - " comments."), - p("A formal model description paper via ", - a("Hartin et al. 2015", href="http://www.geosci-model-dev.net/8/939/2015/gmd-8-939-2015.html", target="blank"), - " documents its science internals and performance relative to observed data, the ", - a("CMIP5", href="http://cmip-pcmdi.llnl.gov/cmip5/", target="blank"), - " archive, and the reduced-complexity ", - a("MAGICC",href="http://www.magicc.org", target="blank"), - " model (as of ", - a("version 1.0", href="https://github.com/JGCRI/hector/tree/v1.0", target="blank"), - "). In addition, we have developed two package vignettes demonstrating the ", - a("basics of the Hector R interface", href="http://jgcri.github.io/hector/articles/intro-to-hector.html", target="blank"), - ", and an example application of ", - a("solving for an emissions pathway", href="http://jgcri.github.io/hector/articles/hector_apply.html", target="blank"), - "."), - tags$ul( - tags$li( - h5(tags$a("Hector User Interface package download/source link ", href="https://github.com/JGCRI/Hector-ui", target="blank"))), - tags$li( - h5(tags$a("Hector R / Hector C++ package download/source link", href="https://github.com/JGCRI/Hector", target="blank"))), - tags$li( - h5(tags$a("Code and data for Hector calibration papers", href="https://zenodo.org/record/3515153#.Xg9iGuhKiUl", target="blank"), - tags$img(src="https://zenodo.org/badge/DOI/10.5281/zenodo.3515153.svg", class="zenodo", alt="DOI") - ) - ) - ), - br(), - h5("Tools and software that work with Hector"), - tags$hr(class="hrNav"), - tags$ul( - tags$li( - a("GCAM", href="https://github.com/JGCRI/gcam-core", target="blank"), - ": Hector can be used as the climate component in the GCAM integrated assessment model."), - tags$li( - a("pyHector", href="https://github.com/openclimatedata/pyhector", target="blank"), - ": A python interface to Hector."), - tags$li( - a("R/Shiny", href="https://shiny.rstudio.com/", target="blank"), - ": This application was built as an R-Shiny package wrapper over the existing model code.") - ) - ), - # Citation Tab Panel - tabPanel - ( - p(icon("copyright", "fa-2x"), - "License/How to Cite", - value="citeTab"), - h5("License Information"), - tags$hr(class="hrNav"), - tags$div(class="citationsDiv", style="width: 500px;", - tags$table(class="citationsTable", - tags$tr( - tags$td(rowspan=2, width=45, icon("balance-scale", "fa-2x")), - tags$td(("All Hector applications are licensed under the") - ), - tags$tr( - tags$td( - tags$a( - h6("GNU General Public License v3.0"), href="https://github.com/JGCRI/hector/blob/master/LICENSE.md", target="blank") - ) - ) - ), - tags$table(class="citationsTable", - tags$tr( - tags$td(p("Permissions of this strong copyleft license are conditioned on making available complete source code - of licensed works and modifications, which include larger works using a licensed work, under the same - license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights.") - ) - ) - ) - ) - ), - div(class="citationsDiv", - tags$span(class="citationsHeader", "Permissions"), - tags$ul(class="ul-None", - tags$li(icon("check"),"Commercial use"), - tags$li(icon("check"),"Modification"), - tags$li(icon("check"),"Distribution"), - tags$li(icon("check"),"Patent use"), - tags$li(icon("check"),"Private use")) - ), - div(class="citationsDiv", - tags$span(class="citationsHeader", "Limitations"), - tags$ul(class="ul-None", - tags$li(icon("times")," Liability"), - tags$li(icon("times")," Warranty")) - ), - div(class="citationsDiv", - tags$span(class="citationsHeader", "Conditions"), - tags$ul(class="ul-None", - tags$li(icon("info"),"License and copyright notice"), - tags$li(icon("info"),"State changes"), - tags$li(icon("info"),"Disclose source"), - tags$li(icon("info"),"Same license")) - ), - h5("How to Cite Hector"), - tags$hr(class="hrNav"), - p("When using graphs, figures, or other output from this applicaton please cite both the Hector Core", - br(), - "application as well as the Hector User Interface (this application). The DOI for both is provided below:"), - tags$ul( - tags$li( - h5(tags$a("Hector User Interface DOI", href="https://doi.org/10.5281/zenodo.3603216", target = "blank"), - tags$img(src="https://zenodo.org/badge/DOI/10.5281/zenodo.3603216.svg", alt="DOI", class = "imgNoPadding"))), - tags$li( - h5(tags$a("Hector Core DOI", href="https://doi.org/10.5281/zenodo.3515153", target = "blank"), - tags$img(src="https://zenodo.org/badge/DOI/10.5281/zenodo.3515153.svg", alt="DOI", class = "imgNoPadding"))) - ) - ), - # Feedback Tab Panel - tabPanel - ( - p(icon("comment", "fa-2x"), "Support", value="feedbackTab"), - h5("Submit Feedback"), tags$hr(class="hrNav"), - p("Please use the form below to contact the Hector team regarding any questions, concerns, suggestions, or problems you may encounter."), - htmlOutput("feedbackFrame") - ) - ) - ) - ), - tags$style(HTML(".navbar-nav { - float:none; - margin:0 auto; - display: block; - text-align: center; - color: #000000; - } - - .navbar-nav > li { - display: inline-block; - float:none; - color: #000000; - }")) - ), # End navbarpage - hr(), - p(em("This research was supported in part by the", - a(" U.S. Department of Energy,", href = "https://www.energy.gov/"), - a(" Office of Science", href = "https://www.energy.gov/science/office-science"), - ", as part of research in", - a("MultiSector Dynamics, ", href = "https://climatemodeling.science.energy.gov/program/multisector-dynamics"), - "Earth and Environmental System Modeling Program.", - a("The Pacific Northwest National Laboratory", href = "https://www.pnnl.gov/"), - " is operated for DOE by Battelle Memorial Institute. - The authors also received support for this research through the U.S. Environmental Protection Agency."), - class = "sticky_footer", style = "font-size:12px;") -) # End of everything. - diff --git a/inst/shinyApp/www/custom.css b/inst/shinyApp/www/custom.css deleted file mode 100644 index a5daa10..0000000 --- a/inst/shinyApp/www/custom.css +++ /dev/null @@ -1,407 +0,0 @@ -@charset "utf-8"; -/* CSS Document */ - -body -{ - font-size: 12px; - background-color:#000000; -} - -fas,fab -{ - vertical-align: middle; - border: #A23739 thick; -} - -figcaption -{ - font-style: italic; - padding-bottom: 5px; -} - -h2 -{ - font-size: 28px; - /*font-weight: bold;*/ - /*color:#FAF7F2;*/ -} - -h3 -{ - font-size: 20px; /*font-weight: bold;*/ - /*color:#FAF7F2;*/ -} - -h4 -{ - font-size: 18px;font-weight: bold; - /*color:#FAF7F2;*/ -} - -h5 -{ - font-size: 16px; font-weight:bold; - margin-bottom: 9px; - /*color:#FAF7F2;*/ -} - -h6 -{ - font-size:15px; - font-weight: bold; - margin-top: 5px; - margin-bottom: 10px; - /*color:#FAF7F2;*/ -} - -hr -{ - color: #375a7f; - border-top: 2px solid #375a7f; -} - -iframe -{ - border: none; -} - -img -{ - padding: 10px; -} - -input -{ - padding:5px 10px; -} - -label -{ - font-weight: normal; - margin-bottom: 3px; -} - -li -{ - padding-left: 2px; - list-style-position: outside; -} - -ol -{ - - list-style-position: outside; - /*counter-reset: my-awesome-counter;*/ - padding-left: 10px; -} - -table a:not(.btn), .table a:not(.btn) -{ - text-decoration: none; -} - -table a:not(.btn):hover, .table a:not(.btn):hover -{ - text-decoration: underline; -} - -.btn -{ - padding: 4px 10px; - font-size: 13px; - border: 1px #AC7023 solid; - border-radius: 1px; - margin-right: 2px; - margin-left: 2px; - margin-bottom: 2px; - /*background-color: #375a7f;*/ -} - -.changedParamsTrue -{ - border: #AC7023 thick; - font-size: 25px; -} - -.changedParamsFalse -{ - border: none; -} - -.checkbox -{ - display: inline-block; -} - -.citationsDiv -{ - display: inline-block; - vertical-align: top; - padding: 10px; -} - -.citationsTable -{ - padding:3px; -} - - -.citationsTable a -{ - text-decoration: none; -} - -.citationsTable .hover -{ - text-decoration: underline; -} - -.citationsHeader -{ - font-size: 15px; - font-weight: bold; -} - - -.col-sm-3 -{ - padding-right: 10px; - padding-left: 5px; -} - -.col-sm-9 -{ - padding-left: 9px; -} - -.container -{ - width: 1480px; - background-color:#222222; -} - -.container-fluid -{ - padding-left: 10px; -} - -.customPlot -{ - display:inline-block; -} - -.fa-check -{ - color:limegreen; - padding:2px; - padding-right: 4px; -} - -.fa-info -{ - color:cornflowerblue; - padding:2px; - padding-right: 4px; -} - -.fa-times -{ - color: red; - padding:2px; - padding-right: 4px; -} - -.form-control -{ - height: 27px; - font-size: 12px; - padding-right: 12px; - padding-left: 12px; - -} - -.form-control-small -{ - display: inline; - vertical-align:top; - -} - -.form-dropDownDiv -{ - display:inline; - padding-right:15px; -} - -.form-group -{ - margin-bottom: 10px; -} - -.gtitle, .g-title, .g-gtitle -{ - padding-top: 15px; -} - -.group-output -{ - display:inline-block; - padding: 5px; -} - -.hrNav -{ - margin-top: -5px; - margin-bottom: 10px; - -} - -.imgNoPadding -{ - padding: 3px; -} - -.js-plotly-plot .plotly .modebar -{ - padding-top: 24px; - position: absolute; - left:36px!important; -} - -.main-container -{ - padding-bottom: 10px; -} - -.nav-tabs>li>a -{ - border: 1px solid #464545; - padding: 10px 10px 5px 10px; -} - -.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus -{ - color: #FFFFFF; - background-color: #375a7f; - -} - -.navbar -{ - min-height: 50px; - margin-bottom: 15px; -} - -.navbar-brand:hover -{ - color: #FFFFFF!important; -} - -.paramDivs -{ - display:inline-block; -} - -.paramDivsTopItem -{ - width: 205px; - display:inline-block; - vertical-align:middle; -} - -.popover -{ - border: solid 2px; - border-color: #AC7023; -} - -.pretty input:checked~.state.p-primary label:after -{ - background-color:#db735c!important; -} - -.pretty input:checked~.state.p-success label:after -{ - background-color:#EFA86E!important; -} - -.pretty input:checked~.state.p-warning label:after -{ - background-color:#9A8A76!important; -} - -.pretty input:checked~.state.p-danger label:after -{ - background-color:#7A6752!important; -} - -.progress -{ - margin-bottom: 10px; -} - -.selectize-input -{ - padding-top: 4px; - padding-bottom: 3px; - min-height: 30px; -} - -.tdPushTop -{ - vertical-align: top; -} - -.tdPushBottom -{ - vertical-align: bottom; -} - -.titleText -{ - text-align: left; - margin-top: 15px; - padding-left: 420px; -} - -.ul-None { - list-style: none; - padding: 2px; - padding-left: 4px; -} - -.ul-None li -{ - padding:1px; -} - -.well -{ - padding: 12px; - padding-top: 8px; - margin-bottom: 0; - background-color: #3e3e3e; -} - -.zenodo -{ - padding-top: 0px!important; - padding-bottom: 0px!important; -} - - -#shiny-notification-panel -{ - top: 50% !important; - left: 50% !important; - margin-top: -100px !important; - margin-left: -250px !important; - /*color: blue; - border: solid 2px; - border-color: #AC7023;;*/ - font-size: 20px; - font-style: italic; - height: auto; - width: 250px; -} - diff --git a/inst/shinyApp/www/google-analytics.js b/inst/shinyApp/www/google-analytics.js deleted file mode 100644 index 9306ded..0000000 --- a/inst/shinyApp/www/google-analytics.js +++ /dev/null @@ -1,10 +0,0 @@ -// JavaScript Document - - - diff --git a/inst/shinyApp/www/input/api-example.ini b/inst/shinyApp/www/input/api-example.ini deleted file mode 100644 index 64353ea..0000000 --- a/inst/shinyApp/www/input/api-example.ini +++ /dev/null @@ -1,373 +0,0 @@ -; Config file for hector model: RCP4.5 -[core] -run_name=coupling-test -startDate=1745 -endDate=2100 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=5000 ; maximum steps allowed for spinup (default=2000) - -[onelineocean] -enabled=0 ; putting 'enabled=0' will disable any component -;output=0 ; uncomment this line to disable this component's output -ocean_c=38000, Pg C - -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt = 72000000 ; 7.2e7 thermohaline circulation, m3/s -tu = 49000000 ; 4.9e7 high latitude overturning, m3/s -twi = 12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid = 200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv ; some flux record -k = 0.2 ; ocean heat uptake efficiency (W/m2/K) - -[simpleNbox] -; Initial (preindustrial) carbon pools -;atmos_c=750.071 -atmos_c=588.071 ; Pg C in CO2, from Murakami (2010) -; could also specify as "C0=276", in ppmv - -; If using biomes (e.g. boreal.veg_c ) must have data for all pools*biomes -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; e.g. -veg_c=550 ; Pg C - -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; Pg C - -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; Pg C 2000 - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus -f_litterd=0.98 ; Fraction of litter to detritus -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus - -; Anthropogenic contributions: direct emissions, Pg (or Gt) C/yr -ffi_emissions=csv:emissions/gcam_emissions.csv ; historical emissions data only. Future emissions will be provided by GCAM - -; Anthropogenic contributions: land use change -luc_emissions=csv:emissions/gcam_emissions.csv - -; Atmospheric CO2 levels -; If we supply [CO2], the model will match these values -; Any residual between model [CO2] and model [CO2] will be put into luc_emissions -; If we've also supplied luc_emissions, then the residual will be eliminated by -; scaling the natural atmosphere fluxes (NPP, RH, ocean, etc). -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -;Ca_constrain=csv:constraints/rcp45_co2ppm.csv - -; Initial (preindustrial) carbon fluxes -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; Preindustrial NPP, Pg C/yr - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.45 ; 2.0 respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., region will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C yr-1 - -[so2] -S0= 53841.2 ; historical sulphate from year 2000 (Ggrams) -SN=42000 ; natural sulfur emissions (Ggrams) -;SO2_emissions = csv:emissions/RCP45_emissions.csv -SO2_emissions = csv:emissions/gcam_emissions.csv -;SV = csv:emissions/volcanic_RF.csv - -[methane] -M0=700.0 ; preindustrial methane (ppbv) 700 ppbv IPCC, 2001 Table 6.1 -;UC_CH4=2.746 ; Tg(CH4)/ppb unit conversion between emissions and concentrations - -Ma = csv:concentrations/RCP45_ch4n2o_conc.csv -;CH4_emissions=csv:emissions/RCP45_emissions.csv ; concentration time series -;molarMass = 16.04 ; grams -;tau = 10 ; lifetime in years oucher et al 2009 - -[ozone] -enabled=1 -;NOX0=0 ;pre-industrial value -NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -;CO0=0 ;pre-industrial value -CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -;NMVOC0=0 ;pre-industrial value -NMVOC_emissions=csv:emissions/gcam_emissions.csv ; emissions time series - -Ma = csv:concentrations/RCP45_ch4n2o_conc.csv -;molarMass = 16.04 ; grams -;tau = 10 ; lifetime in years oucher et al 2009 - -[nitrous] -N0=273.0 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -Na = csv:concentrations/RCP45_ch4n2o_conc.csv -;N2O_emissions=csv:emissions/RCP45_emissions.csv ; concentration time series -;molarMass = 44.01 ; grams -;tau = 120; - -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -[temperature] -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -;tgav_constrain=csv:cmip5_tgav_RCP45_test.csv ; CMIP5 global temperature, RCP 4.5 - -[bc] -; need to be in kg/yr -BC_emissions=csv:emissions/gcam_emissions.csv - -[oc] -; need to be in kg/yr -OC_emissions=csv:emissions/gcam_emissions.csv - -; -------------------------------------------------------------------------- -; Halocarbons in kt/yr -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) -; Concentration (ppt) data from: http://www.pik-potsdam.de/~mmalte/rcps/ - -[CF4_halocarbon] -tau = 50000.0 ; lifetime in years -rho = 0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions = csv:emissions/gcam_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau= 10000.0 -rho= 0.00026 -C2F6_emissions = csv:emissions/RCP45_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau= 2600.0 -;rho= 0.00033 -;C4F10_emissions = csv:emissions/RCP45_emissions.csv -;molarMass=238.0 - - -[HFC23_halocarbon] -tau= 270.0 -rho= 0.00019 -HFC23_emissions = csv:emissions/RCP45_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau= 4.9 -rho= 0.00011 -HFC32_emissions = csv:emissions/RCP45_emissions.csv -molarMass=52.0 - - -[HFC4310_halocarbon] -tau= 15.9 -rho= 0.0004 -HFC4310_emissions = csv:emissions/RCP45_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau= 29.0 -rho= 0.00023 -HFC125_emissions = csv:emissions/RCP45_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau= 14.0 -rho= 0.00016 -HFC134a_emissions = csv:emissions/RCP45_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau= 52.0 -rho= 0.00013 -HFC143a_emissions = csv:emissions/RCP45_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau= 1.4 -;rho= 0.00009 -;HFC152a_emissions = csv:emissions/RCP45_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau= 34.2 -rho= 0.00026 -HFC227ea_emissions = csv:emissions/RCP45_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau= 7.6 -rho= 0.00028 -HFC245fa_emissions = csv:emissions/RCP45_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau= 240.0 -;rho= 0.00028 -;HFC236fa_emissions = csv:emissions/RCP45_emissions.csv -;molarMass=152.0 - - -[SF6_halocarbon] -tau= 3200.0 -rho= 0.00052 -SF6_emissions= csv:emissions/RCP45_emissions.csv -molarMass=146.06 - - -[CFC11_halocarbon] -tau= 45.0 -rho= 0.00025 -CFC11_emissions= csv:emissions/RCP45_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - - -[CFC12_halocarbon] -tau= 100 -rho= 0.00032 -CFC12_emissions= csv:emissions/RCP45_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau= 85.0 -rho= 0.0003 -CFC113_emissions= csv:emissions/RCP45_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - - -[CFC114_halocarbon] -tau= 300 -rho= 0.00031 -CFC114_emissions= csv:emissions/RCP45_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau= 1700 -rho= 0.00018 -CFC115_emissions= csv:emissions/RCP45_emissions.csv -molarMass=154.45 - - -[CCl4_halocarbon] -tau= 26.0 -rho= 0.00013 -CCl4_emissions= csv:emissions/RCP45_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau= 5.0 -rho= 0.00006 -CH3CCl3_emissions= csv:emissions/RCP45_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau= 16.0 -rho= 0.00003 -halon1211_emissions= csv:emissions/RCP45_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau= 65.0 -rho= 0.00032 -halon1301_emissions= csv:emissions/RCP45_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau= 20.0 -rho= 0.00033 -halon2402_emissions= csv:emissions/RCP45_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCF22_halocarbon] -tau= 12.0 -rho= 0.0002 -HCF22_emissions= csv:emissions/gcam_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCF141b_halocarbon] -tau= 9.3 -rho= 0.00014 -HCF141b_emissions= csv:emissions/RCP45_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCF142b_halocarbon] -tau= 17.9 -rho= 0.0002 -HCF142b_emissions= csv:emissions/RCP45_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau= 1.3 -;rho= 0.00014 -;HCFC143_emissions= csv:emissions/RCP45_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau= 1.3 -rho= 0.00001 -H0 = 3100.21 -CH3Cl_emissions= csv:emissions/RCP45_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau= 0.7 -rho= 0.00001 -H0 = 157.267 -CH3Br_emissions= csv:emissions/RCP45_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/constraints/MAGICC_RF_4.5.csv b/inst/shinyApp/www/input/constraints/MAGICC_RF_4.5.csv deleted file mode 100644 index 56ee3be..0000000 --- a/inst/shinyApp/www/input/constraints/MAGICC_RF_4.5.csv +++ /dev/null @@ -1,538 +0,0 @@ -; total RF including volcanic from MAGICC6 RCP45, -year,Ftot_constrain -1765,0.00E+00 -1766,9.80E-03 -1767,4.06E-02 -1768,4.64E-02 -1769,9.60E-03 -1770,1.04E-02 -1771,5.17E-02 -1772,6.74E-02 -1773,5.83E-02 -1774,4.57E-02 -1775,3.64E-02 -1776,4.44E-02 -1777,7.33E-02 -1778,1.05E-01 -1779,1.15E-01 -1780,1.09E-01 -1781,1.01E-01 -1782,5.86E-02 -1783,-5.68E-02 -1784,-1.42E-01 -1785,-7.00E-02 -1786,5.71E-02 -1787,1.21E-01 -1788,1.29E-01 -1789,1.86E-02 -1790,-1.44E-01 -1791,-1.24E-01 -1792,3.54E-04 -1793,6.21E-02 -1794,5.93E-02 -1795,2.44E-02 -1796,1.26E-02 -1797,2.96E-02 -1798,4.50E-02 -1799,5.32E-02 -1800,7.10E-02 -1801,9.34E-02 -1802,9.05E-02 -1803,7.59E-02 -1804,7.38E-02 -1805,7.31E-02 -1806,6.41E-02 -1807,5.49E-02 -1808,-4.39E-01 -1809,-1.58E+00 -1810,-1.98E+00 -1811,-1.19E+00 -1812,-5.12E-01 -1813,-3.10E-01 -1814,-8.31E-01 -1815,-2.29E+00 -1816,-2.80E+00 -1817,-1.63E+00 -1818,-4.98E-01 -1819,-4.71E-02 -1820,7.94E-02 -1821,8.65E-02 -1822,8.91E-02 -1823,9.31E-02 -1824,1.01E-01 -1825,1.15E-01 -1826,1.34E-01 -1827,1.53E-01 -1828,1.63E-01 -1829,1.37E-01 -1830,-8.09E-02 -1831,-4.75E-01 -1832,-5.83E-01 -1833,-2.94E-01 -1834,-4.48E-01 -1835,-1.05E+00 -1836,-9.68E-01 -1837,-3.57E-01 -1838,1.67E-02 -1839,1.31E-01 -1840,1.11E-01 -1841,8.69E-02 -1842,8.75E-02 -1843,6.10E-02 -1844,5.61E-02 -1845,1.06E-01 -1846,1.59E-01 -1847,1.97E-01 -1848,2.26E-01 -1849,2.13E-01 -1850,1.73E-01 -1851,1.66E-01 -1852,1.68E-01 -1853,1.61E-01 -1854,1.52E-01 -1855,1.04E-02 -1856,-4.44E-01 -1857,-6.77E-01 -1858,-3.29E-01 -1859,2.97E-02 -1860,1.58E-01 -1861,1.25E-01 -1862,2.57E-02 -1863,3.15E-02 -1864,1.04E-01 -1865,1.38E-01 -1866,1.43E-01 -1867,1.47E-01 -1868,1.72E-01 -1869,2.08E-01 -1870,2.37E-01 -1871,2.36E-01 -1872,1.90E-01 -1873,1.37E-01 -1874,1.21E-01 -1875,1.00E-01 -1876,5.59E-02 -1877,6.05E-02 -1878,1.02E-01 -1879,1.36E-01 -1880,1.68E-01 -1881,1.97E-01 -1882,1.07E-01 -1883,-7.96E-01 -1884,-1.53E+00 -1885,-9.51E-01 -1886,-4.68E-01 -1887,-3.50E-01 -1888,-2.49E-01 -1889,-3.17E-01 -1890,-3.56E-01 -1891,-2.61E-01 -1892,-6.10E-02 -1893,1.08E-01 -1894,2.26E-01 -1895,2.03E-01 -1896,3.05E-02 -1897,-6.93E-02 -1898,2.63E-02 -1899,1.36E-01 -1900,1.82E-01 -1901,1.66E-01 -1902,-2.74E-01 -1903,-6.36E-01 -1904,-3.14E-01 -1905,5.26E-02 -1906,1.57E-01 -1907,1.37E-01 -1908,1.54E-01 -1909,2.20E-01 -1910,2.42E-01 -1911,2.43E-01 -1912,5.43E-03 -1913,-8.96E-02 -1914,1.55E-01 -1915,3.12E-01 -1916,3.87E-01 -1917,4.23E-01 -1918,4.30E-01 -1919,4.08E-01 -1920,3.06E-01 -1921,2.81E-01 -1922,3.67E-01 -1923,3.86E-01 -1924,3.89E-01 -1925,4.24E-01 -1926,4.69E-01 -1927,4.89E-01 -1928,4.42E-01 -1929,3.92E-01 -1930,4.20E-01 -1931,4.46E-01 -1932,4.13E-01 -1933,4.24E-01 -1934,4.85E-01 -1935,5.41E-01 -1936,5.99E-01 -1937,6.13E-01 -1938,6.01E-01 -1939,6.05E-01 -1940,6.16E-01 -1941,6.08E-01 -1942,5.64E-01 -1943,5.40E-01 -1944,5.69E-01 -1945,6.08E-01 -1946,6.42E-01 -1947,6.57E-01 -1948,6.66E-01 -1949,6.46E-01 -1950,6.09E-01 -1951,5.69E-01 -1952,5.34E-01 -1953,5.14E-01 -1954,5.22E-01 -1955,5.83E-01 -1956,6.67E-01 -1957,7.34E-01 -1958,7.50E-01 -1959,7.36E-01 -1960,6.48E-01 -1961,5.19E-01 -1962,4.13E-01 -1963,-7.04E-02 -1964,-4.18E-01 -1965,-6.98E-02 -1966,3.61E-01 -1967,5.36E-01 -1968,3.77E-01 -1969,3.43E-01 -1970,6.15E-01 -1971,8.05E-01 -1972,8.65E-01 -1973,8.30E-01 -1974,6.83E-01 -1975,5.89E-01 -1976,7.45E-01 -1977,9.66E-01 -1978,1.04E+00 -1979,1.12E+00 -1980,1.23E+00 -1981,1.18E+00 -1982,4.82E-01 -1983,1.76E-01 -1984,7.19E-01 -1985,1.02E+00 -1986,1.11E+00 -1987,1.20E+00 -1988,1.34E+00 -1989,1.47E+00 -1990,1.51E+00 -1991,5.74E-01 -1992,-4.93E-02 -1993,6.65E-01 -1994,1.20E+00 -1995,1.41E+00 -1996,1.51E+00 -1997,1.58E+00 -1998,1.69E+00 -1999,1.80E+00 -2000,1.86E+00 -2001,1.90E+00 -2002,1.91E+00 -2003,1.91E+00 -2004,1.89E+00 -2005,1.90E+00 -2006,1.92E+00 -2007,1.95E+00 -2008,1.99E+00 -2009,2.07E+00 -2010,2.16E+00 -2011,2.19E+00 -2012,2.23E+00 -2013,2.28E+00 -2014,2.32E+00 -2015,2.36E+00 -2016,2.41E+00 -2017,2.45E+00 -2018,2.49E+00 -2019,2.54E+00 -2020,2.58E+00 -2021,2.62E+00 -2022,2.66E+00 -2023,2.70E+00 -2024,2.75E+00 -2025,2.79E+00 -2026,2.83E+00 -2027,2.87E+00 -2028,2.91E+00 -2029,2.95E+00 -2030,3.00E+00 -2031,3.04E+00 -2032,3.08E+00 -2033,3.12E+00 -2034,3.16E+00 -2035,3.20E+00 -2036,3.24E+00 -2037,3.28E+00 -2038,3.32E+00 -2039,3.36E+00 -2040,3.40E+00 -2041,3.43E+00 -2042,3.47E+00 -2043,3.51E+00 -2044,3.54E+00 -2045,3.58E+00 -2046,3.61E+00 -2047,3.65E+00 -2048,3.68E+00 -2049,3.71E+00 -2050,3.74E+00 -2051,3.77E+00 -2052,3.80E+00 -2053,3.83E+00 -2054,3.85E+00 -2055,3.88E+00 -2056,3.90E+00 -2057,3.92E+00 -2058,3.95E+00 -2059,3.97E+00 -2060,3.99E+00 -2061,4.01E+00 -2062,4.03E+00 -2063,4.05E+00 -2064,4.06E+00 -2065,4.08E+00 -2066,4.09E+00 -2067,4.11E+00 -2068,4.12E+00 -2069,4.13E+00 -2070,4.14E+00 -2071,4.15E+00 -2072,4.16E+00 -2073,4.17E+00 -2074,4.18E+00 -2075,4.18E+00 -2076,4.19E+00 -2077,4.19E+00 -2078,4.20E+00 -2079,4.20E+00 -2080,4.20E+00 -2081,4.20E+00 -2082,4.20E+00 -2083,4.19E+00 -2084,4.19E+00 -2085,4.19E+00 -2086,4.20E+00 -2087,4.20E+00 -2088,4.20E+00 -2089,4.20E+00 -2090,4.20E+00 -2091,4.21E+00 -2092,4.21E+00 -2093,4.21E+00 -2094,4.22E+00 -2095,4.22E+00 -2096,4.22E+00 -2097,4.23E+00 -2098,4.23E+00 -2099,4.24E+00 -2100,4.24E+00 -2101,4.25E+00 -2102,4.25E+00 -2103,4.25E+00 -2104,4.26E+00 -2105,4.26E+00 -2106,4.26E+00 -2107,4.27E+00 -2108,4.27E+00 -2109,4.27E+00 -2110,4.27E+00 -2111,4.28E+00 -2112,4.28E+00 -2113,4.28E+00 -2114,4.28E+00 -2115,4.28E+00 -2116,4.28E+00 -2117,4.28E+00 -2118,4.28E+00 -2119,4.28E+00 -2120,4.28E+00 -2121,4.28E+00 -2122,4.28E+00 -2123,4.28E+00 -2124,4.28E+00 -2125,4.28E+00 -2126,4.28E+00 -2127,4.28E+00 -2128,4.28E+00 -2129,4.28E+00 -2130,4.28E+00 -2131,4.28E+00 -2132,4.28E+00 -2133,4.28E+00 -2134,4.28E+00 -2135,4.28E+00 -2136,4.28E+00 -2137,4.28E+00 -2138,4.28E+00 -2139,4.28E+00 -2140,4.28E+00 -2141,4.28E+00 -2142,4.28E+00 -2143,4.28E+00 -2144,4.28E+00 -2145,4.28E+00 -2146,4.28E+00 -2147,4.28E+00 -2148,4.28E+00 -2149,4.28E+00 -2150,4.28E+00 -2151,4.28E+00 -2152,4.27E+00 -2153,4.27E+00 -2154,4.27E+00 -2155,4.27E+00 -2156,4.27E+00 -2157,4.27E+00 -2158,4.27E+00 -2159,4.27E+00 -2160,4.27E+00 -2161,4.27E+00 -2162,4.27E+00 -2163,4.27E+00 -2164,4.27E+00 -2165,4.27E+00 -2166,4.27E+00 -2167,4.27E+00 -2168,4.27E+00 -2169,4.27E+00 -2170,4.27E+00 -2171,4.27E+00 -2172,4.27E+00 -2173,4.27E+00 -2174,4.27E+00 -2175,4.27E+00 -2176,4.27E+00 -2177,4.27E+00 -2178,4.27E+00 -2179,4.27E+00 -2180,4.27E+00 -2181,4.27E+00 -2182,4.27E+00 -2183,4.27E+00 -2184,4.27E+00 -2185,4.27E+00 -2186,4.27E+00 -2187,4.27E+00 -2188,4.27E+00 -2189,4.27E+00 -2190,4.27E+00 -2191,4.27E+00 -2192,4.27E+00 -2193,4.27E+00 -2194,4.27E+00 -2195,4.27E+00 -2196,4.27E+00 -2197,4.27E+00 -2198,4.27E+00 -2199,4.27E+00 -2200,4.27E+00 -2201,4.27E+00 -2202,4.27E+00 -2203,4.27E+00 -2204,4.27E+00 -2205,4.27E+00 -2206,4.27E+00 -2207,4.27E+00 -2208,4.27E+00 -2209,4.27E+00 -2210,4.27E+00 -2211,4.27E+00 -2212,4.27E+00 -2213,4.27E+00 -2214,4.27E+00 -2215,4.27E+00 -2216,4.27E+00 -2217,4.27E+00 -2218,4.27E+00 -2219,4.27E+00 -2220,4.27E+00 -2221,4.27E+00 -2222,4.27E+00 -2223,4.27E+00 -2224,4.27E+00 -2225,4.27E+00 -2226,4.27E+00 -2227,4.27E+00 -2228,4.27E+00 -2229,4.27E+00 -2230,4.27E+00 -2231,4.27E+00 -2232,4.27E+00 -2233,4.27E+00 -2234,4.27E+00 -2235,4.27E+00 -2236,4.27E+00 -2237,4.27E+00 -2238,4.27E+00 -2239,4.27E+00 -2240,4.27E+00 -2241,4.27E+00 -2242,4.27E+00 -2243,4.27E+00 -2244,4.27E+00 -2245,4.27E+00 -2246,4.27E+00 -2247,4.27E+00 -2248,4.27E+00 -2249,4.27E+00 -2250,4.27E+00 -2251,4.27E+00 -2252,4.27E+00 -2253,4.27E+00 -2254,4.27E+00 -2255,4.27E+00 -2256,4.27E+00 -2257,4.27E+00 -2258,4.27E+00 -2259,4.27E+00 -2260,4.27E+00 -2261,4.27E+00 -2262,4.27E+00 -2263,4.27E+00 -2264,4.27E+00 -2265,4.27E+00 -2266,4.27E+00 -2267,4.27E+00 -2268,4.27E+00 -2269,4.27E+00 -2270,4.27E+00 -2271,4.27E+00 -2272,4.27E+00 -2273,4.27E+00 -2274,4.27E+00 -2275,4.27E+00 -2276,4.27E+00 -2277,4.27E+00 -2278,4.27E+00 -2279,4.27E+00 -2280,4.27E+00 -2281,4.27E+00 -2282,4.27E+00 -2283,4.27E+00 -2284,4.27E+00 -2285,4.27E+00 -2286,4.27E+00 -2287,4.27E+00 -2288,4.27E+00 -2289,4.27E+00 -2290,4.27E+00 -2291,4.27E+00 -2292,4.27E+00 -2293,4.27E+00 -2294,4.27E+00 -2295,4.27E+00 -2296,4.27E+00 -2297,4.27E+00 -2298,4.27E+00 -2299,4.27E+00 -2300,4.27E+00 diff --git a/inst/shinyApp/www/input/constraints/lawdome_co2.csv b/inst/shinyApp/www/input/constraints/lawdome_co2.csv deleted file mode 100644 index bcc2ae5..0000000 --- a/inst/shinyApp/www/input/constraints/lawdome_co2.csv +++ /dev/null @@ -1,232 +0,0 @@ -; Historical CO2 record derived from a spline fit (75 year cutoff) of the Law Dome , -; from http://cdiac.ornl.gov/ftp/trends/co2/lawdome.smoothed.yr75, -Date,Ca_constrain -UNITS,ppmv CO2 -1010,279.5 -1015,279.6 -1020,279.7 -1025,279.8 -1030,279.9 -1035,280 -1040,280.2 -1045,280.3 -1050,280.5 -1055,280.7 -1060,280.9 -1065,281.1 -1070,281.3 -1075,281.5 -1080,281.7 -1085,281.9 -1090,282.1 -1095,282.3 -1100,282.5 -1105,282.7 -1110,282.9 -1115,283 -1120,283.2 -1125,283.3 -1130,283.5 -1135,283.6 -1140,283.7 -1145,283.8 -1150,283.9 -1155,284 -1160,284 -1165,284.1 -1170,284.1 -1175,284.1 -1180,284 -1185,284 -1190,283.9 -1195,283.8 -1200,283.6 -1205,283.4 -1210,283.2 -1215,283 -1220,282.8 -1225,282.5 -1230,282.3 -1235,282.2 -1240,282 -1245,281.9 -1250,281.9 -1255,281.9 -1260,282 -1265,282.1 -1270,282.2 -1275,282.3 -1280,282.5 -1285,282.6 -1290,282.8 -1295,282.9 -1300,283 -1305,283.1 -1310,283.2 -1315,283.3 -1320,283.3 -1325,283.2 -1330,283.1 -1335,282.9 -1340,282.7 -1345,282.4 -1350,282.1 -1355,281.8 -1360,281.5 -1365,281.2 -1370,281 -1375,280.7 -1380,280.5 -1385,280.4 -1390,280.3 -1395,280.3 -1400,280.3 -1405,280.4 -1410,280.5 -1415,280.6 -1420,280.7 -1425,280.8 -1430,280.9 -1435,280.9 -1440,280.9 -1445,280.9 -1450,280.8 -1455,280.7 -1460,280.6 -1465,280.6 -1470,280.6 -1475,280.8 -1480,281 -1485,281.3 -1490,281.6 -1495,281.9 -1500,282.2 -1505,282.5 -1510,282.7 -1515,282.9 -1520,283.1 -1525,283.2 -1530,283.2 -1535,283.2 -1540,283.1 -1545,283 -1550,282.8 -1555,282.6 -1560,282.2 -1565,281.8 -1570,281.2 -1575,280.5 -1580,279.7 -1585,278.8 -1590,278 -1595,277.1 -1600,276.4 -1605,275.8 -1610,275.5 -1615,275.3 -1620,275.3 -1625,275.4 -1630,275.6 -1635,275.9 -1640,276.1 -1645,276.3 -1650,276.4 -1655,276.5 -1660,276.5 -1665,276.5 -1670,276.4 -1675,276.4 -1680,276.4 -1685,276.4 -1690,276.5 -1695,276.6 -1700,276.7 -1705,276.8 -1710,276.9 -1715,277 -1720,277 -1725,277 -1730,277 -1735,276.9 -1740,276.9 -1745,276.9 -1750,277 -1755,277.2 -1760,277.6 -1765,278 -1770,278.6 -1775,279.3 -1780,280.1 -1785,280.8 -1790,281.6 -1795,282.3 -1800,282.9 -1805,283.4 -1810,283.8 -1815,284 -1820,284.2 -1825,284.3 -1830,284.4 -1835,284.5 -1840,284.6 -1845,284.8 -1850,285.2 -1855,285.7 -1860,286.3 -1865,287.2 -1870,288.2 -1875,289.4 -1880,290.8 -1885,292.3 -1890,293.7 -1895,295.2 -1900,296.7 -1905,298.2 -1910,299.9 -1915,301.5 -1920,303.2 -1925,304.9 -1930,306.5 -1935,308 -1940,309.3 -1945,310.5 -1950,312 -1955,314.1 -1960,316.9 -1965,320.5 -1970,324.7 -1975,329.4 -; following records are from Mauna Loa, -1976,332.15 -1977,333.9 -1978,335.51 -1979,336.85 -1980,338.69 -1981,339.93 -1982,341.13 -1983,342.78 -1984,344.42 -1985,345.9 -1986,347.15 -1987,348.93 -1988,351.48 -1989,352.91 -1990,354.19 -1991,355.59 -1992,356.37 -1993,357.04 -1994,358.89 -1995,360.88 -1996,362.64 -1997,363.76 -1998,366.63 -1999,368.31 -2000,369.48 -2001,371.02 -2002,373.1 -2003,375.64 -2004,377.38 -2005,379.67 -2006,381.84 -2007,383.55 -2008,385.34 diff --git a/inst/shinyApp/www/input/constraints/rcp26_co2ppm.csv b/inst/shinyApp/www/input/constraints/rcp26_co2ppm.csv deleted file mode 100644 index 194ebde..0000000 --- a/inst/shinyApp/www/input/constraints/rcp26_co2ppm.csv +++ /dev/null @@ -1,538 +0,0 @@ -; RCP2.6 CO2 concentrations in ppm, -Date,Ca_constrain -1765,278.05158 -1766,278.10615 -1767,278.22039 -1768,278.34305 -1769,278.47058 -1770,278.60047 -1771,278.73275 -1772,278.86881 -1773,279.00907 -1774,279.15318 -1775,279.3018 -1776,279.4568 -1777,279.61808 -1778,279.78192 -1779,279.9432 -1780,280.0974 -1781,280.2428 -1782,280.38168 -1783,280.51832 -1784,280.6572 -1785,280.8026 -1786,280.9568 -1787,281.11808 -1788,281.28192 -1789,281.4432 -1790,281.5982 -1791,281.74682 -1792,281.89093 -1793,282.03119 -1794,282.16725 -1795,282.29901 -1796,282.4268 -1797,282.55093 -1798,282.67123 -1799,282.7873 -1800,282.89901 -1801,283.00677 -1802,283.11093 -1803,283.21129 -1804,283.30737 -1805,283.39963 -1806,283.48978 -1807,283.57796 -1808,283.66116 -1809,283.73511 -1810,283.79676 -1811,283.84667 -1812,283.88853 -1813,283.92613 -1814,283.96267 -1815,284.00107 -1816,284.04267 -1817,284.08613 -1818,284.12853 -1819,284.16667 -1820,284.1982 -1821,284.22333 -1822,284.24427 -1823,284.26307 -1824,284.28133 -1825,284.30027 -1826,284.32 -1827,284.34 -1828,284.36 -1829,284.38 -1830,284.4 -1831,284.385 -1832,284.28 -1833,284.125 -1834,283.975 -1835,283.825 -1836,283.675 -1837,283.525 -1838,283.425 -1839,283.4 -1840,283.4 -1841,283.425 -1842,283.5 -1843,283.6 -1844,283.725 -1845,283.9 -1846,284.075 -1847,284.225 -1848,284.4 -1849,284.575 -1850,284.725 -1851,284.875 -1852,285 -1853,285.125 -1854,285.275 -1855,285.425 -1856,285.575 -1857,285.725 -1858,285.9 -1859,286.075 -1860,286.225 -1861,286.375 -1862,286.5 -1863,286.625 -1864,286.775 -1865,286.9 -1866,287 -1867,287.1 -1868,287.225 -1869,287.375 -1870,287.525 -1871,287.7 -1872,287.9 -1873,288.125 -1874,288.4 -1875,288.7 -1876,289.025 -1877,289.4 -1878,289.8 -1879,290.225 -1880,290.7 -1881,291.2 -1882,291.675 -1883,292.125 -1884,292.575 -1885,292.975 -1886,293.3 -1887,293.575 -1888,293.8 -1889,294 -1890,294.175 -1891,294.325 -1892,294.475 -1893,294.6 -1894,294.7 -1895,294.8 -1896,294.9 -1897,295.025 -1898,295.225 -1899,295.5 -1900,295.8 -1901,296.125 -1902,296.475 -1903,296.825 -1904,297.2 -1905,297.625 -1906,298.075 -1907,298.5 -1908,298.9 -1909,299.3 -1910,299.7 -1911,300.075 -1912,300.425 -1913,300.775 -1914,301.1 -1915,301.4 -1916,301.725 -1917,302.075 -1918,302.4 -1919,302.7 -1920,303.025 -1921,303.4 -1922,303.775 -1923,304.125 -1924,304.525 -1925,304.975 -1926,305.4 -1927,305.825 -1928,306.3 -1929,306.775 -1930,307.225 -1931,307.7 -1932,308.175 -1933,308.6 -1934,309 -1935,309.4 -1936,309.75 -1937,310 -1938,310.175 -1939,310.3 -1940,310.375 -1941,310.375 -1942,310.3 -1943,310.2 -1944,310.125 -1945,310.1 -1946,310.125 -1947,310.2 -1948,310.325 -1949,310.5 -1950,310.75 -1951,311.1 -1952,311.5 -1953,311.925 -1954,312.425 -1955,313 -1956,313.6 -1957,314.225 -1958,314.8475 -1959,315.5 -1960,316.2725 -1961,317.075 -1962,317.795 -1963,318.3975 -1964,318.925 -1965,319.6475 -1966,320.6475 -1967,321.605 -1968,322.635 -1969,323.9025 -1970,324.985 -1971,325.855 -1972,327.14 -1973,328.6775 -1974,329.7425 -1975,330.585 -1976,331.7475 -1977,333.2725 -1978,334.8475 -1979,336.525 -1980,338.36 -1981,339.7275 -1982,340.7925 -1983,342.1975 -1984,343.7825 -1985,345.2825 -1986,346.7975 -1987,348.645 -1988,350.7375 -1989,352.4875 -1990,353.855 -1991,355.0175 -1992,355.885 -1993,356.7775 -1994,358.1275 -1995,359.8375 -1996,361.4625 -1997,363.155 -1998,365.3225 -1999,367.3475 -2000,368.865 -2001,370.4675 -2002,372.5225 -2003,374.76 -2004,376.8125 -2005,378.8125 -2006,380.8275 -2007,382.7775 -2008,384.8 -2009,387.00054 -2010,389.28521 -2011,391.56252 -2012,393.84273 -2013,396.11734 -2014,398.39568 -2015,400.68068 -2016,402.9683 -2017,405.25182 -2018,407.52882 -2019,409.80029 -2020,412.06783 -2021,414.32565 -2022,416.51662 -2023,418.60322 -2024,420.60132 -2025,422.51575 -2026,424.34901 -2027,426.09675 -2028,427.75232 -2029,429.31381 -2030,430.78315 -2031,432.16344 -2032,433.43618 -2033,434.59273 -2034,435.65302 -2035,436.62804 -2036,437.52158 -2037,438.33433 -2038,439.06015 -2039,439.69061 -2040,440.2224 -2041,440.65666 -2042,441.02476 -2043,441.34651 -2044,441.621 -2045,441.8644 -2046,442.08482 -2047,442.2834 -2048,442.4583 -2049,442.60091 -2050,442.70046 -2051,442.75184 -2052,442.761 -2053,442.73417 -2054,442.66263 -2055,442.54767 -2056,442.40642 -2057,442.24833 -2058,442.07535 -2059,441.88625 -2060,441.67274 -2061,441.42415 -2062,441.1345 -2063,440.80284 -2064,440.43041 -2065,440.01021 -2066,439.54473 -2067,439.05222 -2068,438.54291 -2069,438.01932 -2070,437.48062 -2071,436.91878 -2072,436.34251 -2073,435.76436 -2074,435.18189 -2075,434.595 -2076,433.99542 -2077,433.38456 -2078,432.77961 -2079,432.18978 -2080,431.61659 -2081,431.05847 -2082,430.51026 -2083,429.96413 -2084,429.41411 -2085,428.85906 -2086,428.2991 -2087,427.72652 -2088,427.14308 -2089,426.56607 -2090,426.00472 -2091,425.46065 -2092,424.93745 -2093,424.43129 -2094,423.93083 -2095,423.43058 -2096,422.92945 -2097,422.42761 -2098,421.91753 -2099,421.40111 -2100,420.89546 -2101,420.40998 -2102,419.94532 -2103,419.49831 -2104,419.05981 -2105,418.61902 -2106,418.17082 -2107,417.71454 -2108,417.2507 -2109,416.77219 -2110,416.28127 -2111,415.79518 -2112,415.32319 -2113,414.86696 -2114,414.42496 -2115,413.98893 -2116,413.54867 -2117,413.09942 -2118,412.64076 -2119,412.17338 -2120,411.69045 -2121,411.19435 -2122,410.70228 -2123,410.22339 -2124,409.7593 -2125,409.30847 -2126,408.8627 -2127,408.41656 -2128,407.96956 -2129,407.52073 -2130,407.07051 -2131,406.61189 -2132,406.14707 -2133,405.69286 -2134,405.25809 -2135,404.84413 -2136,404.44922 -2137,404.06507 -2138,403.68161 -2139,403.29415 -2140,402.90226 -2141,402.50662 -2142,402.10056 -2143,401.68653 -2144,401.28131 -2145,400.89375 -2146,400.52523 -2147,400.17404 -2148,399.83204 -2149,399.4893 -2150,399.14131 -2151,398.78772 -2152,398.42927 -2153,398.0595 -2154,397.68091 -2155,397.31021 -2156,396.95616 -2157,396.62009 -2158,396.3003 -2159,395.98871 -2160,395.67554 -2161,395.35634 -2162,395.03085 -2163,394.69985 -2164,394.357 -2165,394.00489 -2166,393.6601 -2167,393.33128 -2168,393.01974 -2169,392.72374 -2170,392.43525 -2171,392.1446 -2172,391.84744 -2173,391.54354 -2174,391.2337 -2175,390.91172 -2176,390.58024 -2177,390.25571 -2178,389.94668 -2179,389.65441 -2180,389.37713 -2181,389.10687 -2182,388.83404 -2183,388.55437 -2184,388.26765 -2185,387.97473 -2186,387.6695 -2187,387.35465 -2188,387.04651 -2189,386.75353 -2190,386.47692 -2191,386.21487 -2192,385.95946 -2193,385.70118 -2194,385.43582 -2195,385.16322 -2196,384.88424 -2197,384.59286 -2198,384.29183 -2199,383.99735 -2200,383.71778 -2201,383.45425 -2202,383.20495 -2203,382.96197 -2204,382.71591 -2205,382.4626 -2206,382.20191 -2207,381.93471 -2208,381.6551 -2209,381.36585 -2210,381.08304 -2211,380.81494 -2212,380.56263 -2213,380.32426 -2214,380.09195 -2215,379.85638 -2216,379.61345 -2217,379.36304 -2218,379.10604 -2219,378.83665 -2220,378.55765 -2221,378.28503 -2222,378.02696 -2223,377.78445 -2224,377.55563 -2225,377.33266 -2226,377.10629 -2227,376.87246 -2228,376.63109 -2229,376.38308 -2230,376.12271 -2231,375.85281 -2232,375.58923 -2233,375.34006 -2234,375.10628 -2235,374.88595 -2236,374.67128 -2237,374.4531 -2238,374.22739 -2239,373.9941 -2240,373.75412 -2241,373.50184 -2242,373.24011 -2243,372.98467 -2244,372.74353 -2245,372.51759 -2246,372.30492 -2247,372.09773 -2248,371.88692 -2249,371.66854 -2250,371.44254 -2251,371.20984 -2252,370.96489 -2253,370.71059 -2254,370.46256 -2255,370.22872 -2256,370.00993 -2257,369.80422 -2258,369.60385 -2259,369.39976 -2260,369.18806 -2261,368.96871 -2262,368.74266 -2263,368.50442 -2264,368.25693 -2265,368.0157 -2266,367.78857 -2267,367.57635 -2268,367.37703 -2269,367.1829 -2270,366.98498 -2271,366.77941 -2272,366.56619 -2273,366.34625 -2274,366.11421 -2275,365.873 -2276,365.63806 -2277,365.41713 -2278,365.21098 -2279,365.01757 -2280,364.82921 -2281,364.63699 -2282,364.4371 -2283,364.22954 -2284,364.01526 -2285,363.78896 -2286,363.5536 -2287,363.32451 -2288,363.10935 -2289,362.90884 -2290,362.72091 -2291,362.53791 -2292,362.35099 -2293,362.15637 -2294,361.95408 -2295,361.74508 -2296,361.52413 -2297,361.29423 -2298,361.0706 -2299,360.86083 -2300,360.66558 \ No newline at end of file diff --git a/inst/shinyApp/www/input/constraints/rcp45_co2ppm.csv b/inst/shinyApp/www/input/constraints/rcp45_co2ppm.csv deleted file mode 100644 index efb929a..0000000 --- a/inst/shinyApp/www/input/constraints/rcp45_co2ppm.csv +++ /dev/null @@ -1,538 +0,0 @@ -; RCP4.5 CO2 concentrations in ppm, -Date,Ca_constrain -1765,278.05158 -1766,278.10615 -1767,278.22039 -1768,278.34305 -1769,278.47058 -1770,278.60047 -1771,278.73275 -1772,278.86881 -1773,279.00907 -1774,279.15318 -1775,279.3018 -1776,279.4568 -1777,279.61808 -1778,279.78192 -1779,279.9432 -1780,280.0974 -1781,280.2428 -1782,280.38168 -1783,280.51832 -1784,280.6572 -1785,280.8026 -1786,280.9568 -1787,281.11808 -1788,281.28192 -1789,281.4432 -1790,281.5982 -1791,281.74682 -1792,281.89093 -1793,282.03119 -1794,282.16725 -1795,282.29901 -1796,282.4268 -1797,282.55093 -1798,282.67123 -1799,282.7873 -1800,282.89901 -1801,283.00677 -1802,283.11093 -1803,283.21129 -1804,283.30737 -1805,283.39963 -1806,283.48978 -1807,283.57796 -1808,283.66116 -1809,283.73511 -1810,283.79676 -1811,283.84667 -1812,283.88853 -1813,283.92613 -1814,283.96267 -1815,284.00107 -1816,284.04267 -1817,284.08613 -1818,284.12853 -1819,284.16667 -1820,284.1982 -1821,284.22333 -1822,284.24427 -1823,284.26307 -1824,284.28133 -1825,284.30027 -1826,284.32 -1827,284.34 -1828,284.36 -1829,284.38 -1830,284.4 -1831,284.385 -1832,284.28 -1833,284.125 -1834,283.975 -1835,283.825 -1836,283.675 -1837,283.525 -1838,283.425 -1839,283.4 -1840,283.4 -1841,283.425 -1842,283.5 -1843,283.6 -1844,283.725 -1845,283.9 -1846,284.075 -1847,284.225 -1848,284.4 -1849,284.575 -1850,284.725 -1851,284.875 -1852,285 -1853,285.125 -1854,285.275 -1855,285.425 -1856,285.575 -1857,285.725 -1858,285.9 -1859,286.075 -1860,286.225 -1861,286.375 -1862,286.5 -1863,286.625 -1864,286.775 -1865,286.9 -1866,287 -1867,287.1 -1868,287.225 -1869,287.375 -1870,287.525 -1871,287.7 -1872,287.9 -1873,288.125 -1874,288.4 -1875,288.7 -1876,289.025 -1877,289.4 -1878,289.8 -1879,290.225 -1880,290.7 -1881,291.2 -1882,291.675 -1883,292.125 -1884,292.575 -1885,292.975 -1886,293.3 -1887,293.575 -1888,293.8 -1889,294 -1890,294.175 -1891,294.325 -1892,294.475 -1893,294.6 -1894,294.7 -1895,294.8 -1896,294.9 -1897,295.025 -1898,295.225 -1899,295.5 -1900,295.8 -1901,296.125 -1902,296.475 -1903,296.825 -1904,297.2 -1905,297.625 -1906,298.075 -1907,298.5 -1908,298.9 -1909,299.3 -1910,299.7 -1911,300.075 -1912,300.425 -1913,300.775 -1914,301.1 -1915,301.4 -1916,301.725 -1917,302.075 -1918,302.4 -1919,302.7 -1920,303.025 -1921,303.4 -1922,303.775 -1923,304.125 -1924,304.525 -1925,304.975 -1926,305.4 -1927,305.825 -1928,306.3 -1929,306.775 -1930,307.225 -1931,307.7 -1932,308.175 -1933,308.6 -1934,309 -1935,309.4 -1936,309.75 -1937,310 -1938,310.175 -1939,310.3 -1940,310.375 -1941,310.375 -1942,310.3 -1943,310.2 -1944,310.125 -1945,310.1 -1946,310.125 -1947,310.2 -1948,310.325 -1949,310.5 -1950,310.75 -1951,311.1 -1952,311.5 -1953,311.925 -1954,312.425 -1955,313 -1956,313.6 -1957,314.225 -1958,314.8475 -1959,315.5 -1960,316.2725 -1961,317.075 -1962,317.795 -1963,318.3975 -1964,318.925 -1965,319.6475 -1966,320.6475 -1967,321.605 -1968,322.635 -1969,323.9025 -1970,324.985 -1971,325.855 -1972,327.14 -1973,328.6775 -1974,329.7425 -1975,330.585 -1976,331.7475 -1977,333.2725 -1978,334.8475 -1979,336.525 -1980,338.36 -1981,339.7275 -1982,340.7925 -1983,342.1975 -1984,343.7825 -1985,345.2825 -1986,346.7975 -1987,348.645 -1988,350.7375 -1989,352.4875 -1990,353.855 -1991,355.0175 -1992,355.885 -1993,356.7775 -1994,358.1275 -1995,359.8375 -1996,361.4625 -1997,363.155 -1998,365.3225 -1999,367.3475 -2000,368.865 -2001,370.4675 -2002,372.5225 -2003,374.76 -2004,376.8125 -2005,378.8125 -2006,380.8275 -2007,382.7775 -2008,384.8 -2009,386.9516 -2010,389.12785 -2011,391.27357 -2012,393.4211 -2013,395.58283 -2014,397.76408 -2015,399.96631 -2016,402.18432 -2017,404.41077 -2018,406.64292 -2019,408.8817 -2020,411.12868 -2021,413.37804 -2022,415.63944 -2023,417.93551 -2024,420.27395 -2025,422.65593 -2026,425.07983 -2027,427.53791 -2028,430.0206 -2029,432.5234 -2030,435.04594 -2031,437.58886 -2032,440.13137 -2033,442.66419 -2034,445.20699 -2035,447.76978 -2036,450.35539 -2037,452.96337 -2038,455.58649 -2039,458.2152 -2040,460.84499 -2041,463.47549 -2042,466.09336 -2043,468.67807 -2044,471.23389 -2045,473.78031 -2046,476.32819 -2047,478.88085 -2048,481.43826 -2049,483.99308 -2050,486.53532 -2051,489.06035 -2052,491.53558 -2053,493.93186 -2054,496.24365 -2055,498.47436 -2056,500.64502 -2057,502.76788 -2058,504.84729 -2059,506.88408 -2060,508.87135 -2061,510.79905 -2062,512.64717 -2063,514.40151 -2064,516.06461 -2065,517.62854 -2066,519.09606 -2067,520.48828 -2068,521.81772 -2069,523.08871 -2070,524.30217 -2071,525.45089 -2072,526.50901 -2073,527.45707 -2074,528.29593 -2075,529.02718 -2076,529.64253 -2077,530.14419 -2078,530.55341 -2079,530.88313 -2080,531.13797 -2081,531.31935 -2082,531.48991 -2083,531.70213 -2084,531.94208 -2085,532.20472 -2086,532.48672 -2087,532.77553 -2088,533.06978 -2089,533.38792 -2090,533.74072 -2091,534.13086 -2092,534.55754 -2093,535.01142 -2094,535.47962 -2095,535.95487 -2096,536.4351 -2097,536.91986 -2098,537.39855 -2099,537.87136 -2100,538.3583 -2101,538.8715 -2102,539.38819 -2103,539.88381 -2104,540.35213 -2105,540.78203 -2106,541.16804 -2107,541.50962 -2108,541.80769 -2109,542.05261 -2110,542.24555 -2111,542.40767 -2112,542.55941 -2113,542.71221 -2114,542.86612 -2115,543.01262 -2116,543.13926 -2117,543.23925 -2118,543.31105 -2119,543.35475 -2120,543.35993 -2121,543.32712 -2122,543.28815 -2123,543.26597 -2124,543.26382 -2125,543.28162 -2126,543.31031 -2127,543.337 -2128,543.35452 -2129,543.36102 -2130,543.35628 -2131,543.32954 -2132,543.28277 -2133,543.23814 -2134,543.20814 -2135,543.19691 -2136,543.20476 -2137,543.22301 -2138,543.23901 -2139,543.2458 -2140,543.24169 -2141,543.22663 -2142,543.18977 -2143,543.13128 -2144,543.07193 -2145,543.02451 -2146,542.9934 -2147,542.97911 -2148,542.97309 -2149,542.96279 -2150,542.95532 -2151,542.95532 -2152,542.95532 -2153,542.95532 -2154,542.95532 -2155,542.95532 -2156,542.95532 -2157,542.95532 -2158,542.95532 -2159,542.95532 -2160,542.95532 -2161,542.95532 -2162,542.95532 -2163,542.95532 -2164,542.95532 -2165,542.95532 -2166,542.95532 -2167,542.95532 -2168,542.95532 -2169,542.95532 -2170,542.95532 -2171,542.95532 -2172,542.95532 -2173,542.95532 -2174,542.95532 -2175,542.95532 -2176,542.95532 -2177,542.95532 -2178,542.95532 -2179,542.95532 -2180,542.95532 -2181,542.95532 -2182,542.95532 -2183,542.95532 -2184,542.95532 -2185,542.95532 -2186,542.95532 -2187,542.95532 -2188,542.95532 -2189,542.95532 -2190,542.95532 -2191,542.95532 -2192,542.95532 -2193,542.95532 -2194,542.95532 -2195,542.95532 -2196,542.95532 -2197,542.95532 -2198,542.95532 -2199,542.95532 -2200,542.95532 -2201,542.95532 -2202,542.95532 -2203,542.95532 -2204,542.95532 -2205,542.95532 -2206,542.95532 -2207,542.95532 -2208,542.95532 -2209,542.95532 -2210,542.95532 -2211,542.95532 -2212,542.95532 -2213,542.95532 -2214,542.95532 -2215,542.95532 -2216,542.95532 -2217,542.95532 -2218,542.95532 -2219,542.95532 -2220,542.95532 -2221,542.95532 -2222,542.95532 -2223,542.95532 -2224,542.95532 -2225,542.95532 -2226,542.95532 -2227,542.95532 -2228,542.95532 -2229,542.95532 -2230,542.95532 -2231,542.95532 -2232,542.95532 -2233,542.95532 -2234,542.95532 -2235,542.95532 -2236,542.95532 -2237,542.95532 -2238,542.95532 -2239,542.95532 -2240,542.95532 -2241,542.95532 -2242,542.95532 -2243,542.95532 -2244,542.95532 -2245,542.95532 -2246,542.95532 -2247,542.95532 -2248,542.95532 -2249,542.95532 -2250,542.95532 -2251,542.95532 -2252,542.95532 -2253,542.95532 -2254,542.95532 -2255,542.95532 -2256,542.95532 -2257,542.95532 -2258,542.95532 -2259,542.95532 -2260,542.95532 -2261,542.95532 -2262,542.95532 -2263,542.95532 -2264,542.95532 -2265,542.95532 -2266,542.95532 -2267,542.95532 -2268,542.95532 -2269,542.95532 -2270,542.95532 -2271,542.95532 -2272,542.95532 -2273,542.95532 -2274,542.95532 -2275,542.95532 -2276,542.95532 -2277,542.95532 -2278,542.95532 -2279,542.95532 -2280,542.95532 -2281,542.95532 -2282,542.95532 -2283,542.95532 -2284,542.95532 -2285,542.95532 -2286,542.95532 -2287,542.95532 -2288,542.95532 -2289,542.95532 -2290,542.95532 -2291,542.95532 -2292,542.95532 -2293,542.95532 -2294,542.95532 -2295,542.95532 -2296,542.95532 -2297,542.95532 -2298,542.95532 -2299,542.95532 -2300,542.95532 \ No newline at end of file diff --git a/inst/shinyApp/www/input/constraints/rcp60_co2ppm.csv b/inst/shinyApp/www/input/constraints/rcp60_co2ppm.csv deleted file mode 100644 index c25821d..0000000 --- a/inst/shinyApp/www/input/constraints/rcp60_co2ppm.csv +++ /dev/null @@ -1,538 +0,0 @@ -; RCP6.0 CO2 concentrations in ppm, -Date,Ca_constrain -1765,278.05158 -1766,278.10615 -1767,278.22039 -1768,278.34305 -1769,278.47058 -1770,278.60047 -1771,278.73275 -1772,278.86881 -1773,279.00907 -1774,279.15318 -1775,279.3018 -1776,279.4568 -1777,279.61808 -1778,279.78192 -1779,279.9432 -1780,280.0974 -1781,280.2428 -1782,280.38168 -1783,280.51832 -1784,280.6572 -1785,280.8026 -1786,280.9568 -1787,281.11808 -1788,281.28192 -1789,281.4432 -1790,281.5982 -1791,281.74682 -1792,281.89093 -1793,282.03119 -1794,282.16725 -1795,282.29901 -1796,282.4268 -1797,282.55093 -1798,282.67123 -1799,282.7873 -1800,282.89901 -1801,283.00677 -1802,283.11093 -1803,283.21129 -1804,283.30737 -1805,283.39963 -1806,283.48978 -1807,283.57796 -1808,283.66116 -1809,283.73511 -1810,283.79676 -1811,283.84667 -1812,283.88853 -1813,283.92613 -1814,283.96267 -1815,284.00107 -1816,284.04267 -1817,284.08613 -1818,284.12853 -1819,284.16667 -1820,284.1982 -1821,284.22333 -1822,284.24427 -1823,284.26307 -1824,284.28133 -1825,284.30027 -1826,284.32 -1827,284.34 -1828,284.36 -1829,284.38 -1830,284.4 -1831,284.385 -1832,284.28 -1833,284.125 -1834,283.975 -1835,283.825 -1836,283.675 -1837,283.525 -1838,283.425 -1839,283.4 -1840,283.4 -1841,283.425 -1842,283.5 -1843,283.6 -1844,283.725 -1845,283.9 -1846,284.075 -1847,284.225 -1848,284.4 -1849,284.575 -1850,284.725 -1851,284.875 -1852,285 -1853,285.125 -1854,285.275 -1855,285.425 -1856,285.575 -1857,285.725 -1858,285.9 -1859,286.075 -1860,286.225 -1861,286.375 -1862,286.5 -1863,286.625 -1864,286.775 -1865,286.9 -1866,287 -1867,287.1 -1868,287.225 -1869,287.375 -1870,287.525 -1871,287.7 -1872,287.9 -1873,288.125 -1874,288.4 -1875,288.7 -1876,289.025 -1877,289.4 -1878,289.8 -1879,290.225 -1880,290.7 -1881,291.2 -1882,291.675 -1883,292.125 -1884,292.575 -1885,292.975 -1886,293.3 -1887,293.575 -1888,293.8 -1889,294 -1890,294.175 -1891,294.325 -1892,294.475 -1893,294.6 -1894,294.7 -1895,294.8 -1896,294.9 -1897,295.025 -1898,295.225 -1899,295.5 -1900,295.8 -1901,296.125 -1902,296.475 -1903,296.825 -1904,297.2 -1905,297.625 -1906,298.075 -1907,298.5 -1908,298.9 -1909,299.3 -1910,299.7 -1911,300.075 -1912,300.425 -1913,300.775 -1914,301.1 -1915,301.4 -1916,301.725 -1917,302.075 -1918,302.4 -1919,302.7 -1920,303.025 -1921,303.4 -1922,303.775 -1923,304.125 -1924,304.525 -1925,304.975 -1926,305.4 -1927,305.825 -1928,306.3 -1929,306.775 -1930,307.225 -1931,307.7 -1932,308.175 -1933,308.6 -1934,309 -1935,309.4 -1936,309.75 -1937,310 -1938,310.175 -1939,310.3 -1940,310.375 -1941,310.375 -1942,310.3 -1943,310.2 -1944,310.125 -1945,310.1 -1946,310.125 -1947,310.2 -1948,310.325 -1949,310.5 -1950,310.75 -1951,311.1 -1952,311.5 -1953,311.925 -1954,312.425 -1955,313 -1956,313.6 -1957,314.225 -1958,314.8475 -1959,315.5 -1960,316.2725 -1961,317.075 -1962,317.795 -1963,318.3975 -1964,318.925 -1965,319.6475 -1966,320.6475 -1967,321.605 -1968,322.635 -1969,323.9025 -1970,324.985 -1971,325.855 -1972,327.14 -1973,328.6775 -1974,329.7425 -1975,330.585 -1976,331.7475 -1977,333.2725 -1978,334.8475 -1979,336.525 -1980,338.36 -1981,339.7275 -1982,340.7925 -1983,342.1975 -1984,343.7825 -1985,345.2825 -1986,346.7975 -1987,348.645 -1988,350.7375 -1989,352.4875 -1990,353.855 -1991,355.0175 -1992,355.885 -1993,356.7775 -1994,358.1275 -1995,359.8375 -1996,361.4625 -1997,363.155 -1998,365.3225 -1999,367.3475 -2000,368.865 -2001,370.4675 -2002,372.5225 -2003,374.76 -2004,376.8125 -2005,378.8125 -2006,380.8275 -2007,382.7775 -2008,384.8 -2009,386.93455 -2010,389.0715 -2011,391.1665 -2012,393.24066 -2013,395.29786 -2014,397.34576 -2015,399.38717 -2016,401.41789 -2017,403.43127 -2018,405.42513 -2019,407.40083 -2020,409.36026 -2021,411.29764 -2022,413.21903 -2023,415.14445 -2024,417.08292 -2025,419.03635 -2026,421.0038 -2027,422.97812 -2028,424.95028 -2029,426.91631 -2030,428.87629 -2031,430.832 -2032,432.80746 -2033,434.83148 -2034,436.91619 -2035,439.06785 -2036,441.28581 -2037,443.5672 -2038,445.90288 -2039,448.28176 -2040,450.69811 -2041,453.15021 -2042,455.64509 -2043,458.18181 -2044,460.76247 -2045,463.4053 -2046,466.11968 -2047,468.90757 -2048,471.76784 -2049,474.69236 -2050,477.67043 -2051,480.69694 -2052,483.77696 -2053,486.9156 -2054,490.1025 -2055,493.33845 -2056,496.64173 -2057,500.02229 -2058,503.48287 -2059,507.02296 -2060,510.63443 -2061,514.30531 -2062,518.02671 -2063,521.79702 -2064,525.61935 -2065,529.48604 -2066,533.3998 -2067,537.38147 -2068,541.44308 -2069,545.58888 -2070,549.81989 -2071,554.12904 -2072,558.48622 -2073,562.86724 -2074,567.27205 -2075,571.70141 -2076,576.14574 -2077,580.6064 -2078,585.10462 -2079,589.65317 -2080,594.25683 -2081,598.9179 -2082,603.53811 -2083,608.01988 -2084,612.36372 -2085,616.57173 -2086,620.64773 -2087,624.58304 -2088,628.38085 -2089,632.06458 -2090,635.64876 -2091,639.14086 -2092,642.59729 -2093,646.06094 -2094,649.51513 -2095,652.95074 -2096,656.36419 -2097,659.75421 -2098,663.10742 -2099,666.42313 -2100,669.72317 -2101,673.02173 -2102,676.29128 -2103,679.50127 -2104,682.64541 -2105,685.71141 -2106,688.69282 -2107,691.58868 -2108,694.39983 -2109,697.11406 -2110,699.73157 -2111,702.27614 -2112,704.7639 -2113,707.20265 -2114,709.5953 -2115,711.93394 -2116,714.20507 -2117,716.40081 -2118,718.51915 -2119,720.56005 -2120,722.51007 -2121,724.36814 -2122,726.15805 -2123,727.8964 -2124,729.59084 -2125,731.24405 -2126,732.84773 -2127,734.38928 -2128,735.86182 -2129,737.26278 -2130,738.59171 -2131,739.83434 -2132,740.98904 -2133,742.0798 -2134,743.1235 -2135,744.12799 -2136,745.09601 -2137,746.01899 -2138,746.88224 -2139,747.67691 -2140,748.40031 -2141,749.05184 -2142,749.6169 -2143,750.09334 -2144,750.50572 -2145,750.87141 -2146,751.19813 -2147,751.4889 -2148,751.73512 -2149,751.92185 -2150,751.99877 -2151,751.99877 -2152,751.99877 -2153,751.99877 -2154,751.99877 -2155,751.99877 -2156,751.99877 -2157,751.99877 -2158,751.99877 -2159,751.99877 -2160,751.99877 -2161,751.99877 -2162,751.99877 -2163,751.99877 -2164,751.99877 -2165,751.99877 -2166,751.99877 -2167,751.99877 -2168,751.99877 -2169,751.99877 -2170,751.99877 -2171,751.99877 -2172,751.99877 -2173,751.99877 -2174,751.99877 -2175,751.99877 -2176,751.99877 -2177,751.99877 -2178,751.99877 -2179,751.99877 -2180,751.99877 -2181,751.99877 -2182,751.99877 -2183,751.99877 -2184,751.99877 -2185,751.99877 -2186,751.99877 -2187,751.99877 -2188,751.99877 -2189,751.99877 -2190,751.99877 -2191,751.99877 -2192,751.99877 -2193,751.99877 -2194,751.99877 -2195,751.99877 -2196,751.99877 -2197,751.99877 -2198,751.99877 -2199,751.99877 -2200,751.99877 -2201,751.99877 -2202,751.99877 -2203,751.99877 -2204,751.99877 -2205,751.99877 -2206,751.99877 -2207,751.99877 -2208,751.99877 -2209,751.99877 -2210,751.99877 -2211,751.99877 -2212,751.99877 -2213,751.99877 -2214,751.99877 -2215,751.99877 -2216,751.99877 -2217,751.99877 -2218,751.99877 -2219,751.99877 -2220,751.99877 -2221,751.99877 -2222,751.99877 -2223,751.99877 -2224,751.99877 -2225,751.99877 -2226,751.99877 -2227,751.99877 -2228,751.99877 -2229,751.99877 -2230,751.99877 -2231,751.99877 -2232,751.99877 -2233,751.99877 -2234,751.99877 -2235,751.99877 -2236,751.99877 -2237,751.99877 -2238,751.99877 -2239,751.99877 -2240,751.99877 -2241,751.99877 -2242,751.99877 -2243,751.99877 -2244,751.99877 -2245,751.99877 -2246,751.99877 -2247,751.99877 -2248,751.99877 -2249,751.99877 -2250,751.99877 -2251,751.99877 -2252,751.99877 -2253,751.99877 -2254,751.99877 -2255,751.99877 -2256,751.99877 -2257,751.99877 -2258,751.99877 -2259,751.99877 -2260,751.99877 -2261,751.99877 -2262,751.99877 -2263,751.99877 -2264,751.99877 -2265,751.99877 -2266,751.99877 -2267,751.99877 -2268,751.99877 -2269,751.99877 -2270,751.99877 -2271,751.99877 -2272,751.99877 -2273,751.99877 -2274,751.99877 -2275,751.99877 -2276,751.99877 -2277,751.99877 -2278,751.99877 -2279,751.99877 -2280,751.99877 -2281,751.99877 -2282,751.99877 -2283,751.99877 -2284,751.99877 -2285,751.99877 -2286,751.99877 -2287,751.99877 -2288,751.99877 -2289,751.99877 -2290,751.99877 -2291,751.99877 -2292,751.99877 -2293,751.99877 -2294,751.99877 -2295,751.99877 -2296,751.99877 -2297,751.99877 -2298,751.99877 -2299,751.99877 -2300,751.99877 \ No newline at end of file diff --git a/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv b/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv deleted file mode 100644 index 5f30505..0000000 --- a/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv +++ /dev/null @@ -1,538 +0,0 @@ -; RCP8.5 CO2 concentrations in ppm, -Date,Ca_constrain -1765,278.05158 -1766,278.10615 -1767,278.22039 -1768,278.34305 -1769,278.47058 -1770,278.60047 -1771,278.73275 -1772,278.86881 -1773,279.00907 -1774,279.15318 -1775,279.3018 -1776,279.4568 -1777,279.61808 -1778,279.78192 -1779,279.9432 -1780,280.0974 -1781,280.2428 -1782,280.38168 -1783,280.51832 -1784,280.6572 -1785,280.8026 -1786,280.9568 -1787,281.11808 -1788,281.28192 -1789,281.4432 -1790,281.5982 -1791,281.74682 -1792,281.89093 -1793,282.03119 -1794,282.16725 -1795,282.29901 -1796,282.4268 -1797,282.55093 -1798,282.67123 -1799,282.7873 -1800,282.89901 -1801,283.00677 -1802,283.11093 -1803,283.21129 -1804,283.30737 -1805,283.39963 -1806,283.48978 -1807,283.57796 -1808,283.66116 -1809,283.73511 -1810,283.79676 -1811,283.84667 -1812,283.88853 -1813,283.92613 -1814,283.96267 -1815,284.00107 -1816,284.04267 -1817,284.08613 -1818,284.12853 -1819,284.16667 -1820,284.1982 -1821,284.22333 -1822,284.24427 -1823,284.26307 -1824,284.28133 -1825,284.30027 -1826,284.32 -1827,284.34 -1828,284.36 -1829,284.38 -1830,284.4 -1831,284.385 -1832,284.28 -1833,284.125 -1834,283.975 -1835,283.825 -1836,283.675 -1837,283.525 -1838,283.425 -1839,283.4 -1840,283.4 -1841,283.425 -1842,283.5 -1843,283.6 -1844,283.725 -1845,283.9 -1846,284.075 -1847,284.225 -1848,284.4 -1849,284.575 -1850,284.725 -1851,284.875 -1852,285 -1853,285.125 -1854,285.275 -1855,285.425 -1856,285.575 -1857,285.725 -1858,285.9 -1859,286.075 -1860,286.225 -1861,286.375 -1862,286.5 -1863,286.625 -1864,286.775 -1865,286.9 -1866,287 -1867,287.1 -1868,287.225 -1869,287.375 -1870,287.525 -1871,287.7 -1872,287.9 -1873,288.125 -1874,288.4 -1875,288.7 -1876,289.025 -1877,289.4 -1878,289.8 -1879,290.225 -1880,290.7 -1881,291.2 -1882,291.675 -1883,292.125 -1884,292.575 -1885,292.975 -1886,293.3 -1887,293.575 -1888,293.8 -1889,294 -1890,294.175 -1891,294.325 -1892,294.475 -1893,294.6 -1894,294.7 -1895,294.8 -1896,294.9 -1897,295.025 -1898,295.225 -1899,295.5 -1900,295.8 -1901,296.125 -1902,296.475 -1903,296.825 -1904,297.2 -1905,297.625 -1906,298.075 -1907,298.5 -1908,298.9 -1909,299.3 -1910,299.7 -1911,300.075 -1912,300.425 -1913,300.775 -1914,301.1 -1915,301.4 -1916,301.725 -1917,302.075 -1918,302.4 -1919,302.7 -1920,303.025 -1921,303.4 -1922,303.775 -1923,304.125 -1924,304.525 -1925,304.975 -1926,305.4 -1927,305.825 -1928,306.3 -1929,306.775 -1930,307.225 -1931,307.7 -1932,308.175 -1933,308.6 -1934,309 -1935,309.4 -1936,309.75 -1937,310 -1938,310.175 -1939,310.3 -1940,310.375 -1941,310.375 -1942,310.3 -1943,310.2 -1944,310.125 -1945,310.1 -1946,310.125 -1947,310.2 -1948,310.325 -1949,310.5 -1950,310.75 -1951,311.1 -1952,311.5 -1953,311.925 -1954,312.425 -1955,313 -1956,313.6 -1957,314.225 -1958,314.8475 -1959,315.5 -1960,316.2725 -1961,317.075 -1962,317.795 -1963,318.3975 -1964,318.925 -1965,319.6475 -1966,320.6475 -1967,321.605 -1968,322.635 -1969,323.9025 -1970,324.985 -1971,325.855 -1972,327.14 -1973,328.6775 -1974,329.7425 -1975,330.585 -1976,331.7475 -1977,333.2725 -1978,334.8475 -1979,336.525 -1980,338.36 -1981,339.7275 -1982,340.7925 -1983,342.1975 -1984,343.7825 -1985,345.2825 -1986,346.7975 -1987,348.645 -1988,350.7375 -1989,352.4875 -1990,353.855 -1991,355.0175 -1992,355.885 -1993,356.7775 -1994,358.1275 -1995,359.8375 -1996,361.4625 -1997,363.155 -1998,365.3225 -1999,367.3475 -2000,368.865 -2001,370.4675 -2002,372.5225 -2003,374.76 -2004,376.8125 -2005,378.8125 -2006,380.8275 -2007,382.7775 -2008,384.8 -2009,387.01226 -2010,389.32416 -2011,391.63801 -2012,394.00866 -2013,396.46384 -2014,399.00402 -2015,401.62793 -2016,404.32819 -2017,407.09588 -2018,409.92701 -2019,412.82151 -2020,415.78022 -2021,418.79629 -2022,421.86439 -2023,424.99469 -2024,428.19734 -2025,431.47473 -2026,434.82619 -2027,438.24456 -2028,441.7208 -2029,445.25085 -2030,448.83485 -2031,452.47359 -2032,456.177 -2033,459.96398 -2034,463.85181 -2035,467.85003 -2036,471.96047 -2037,476.18237 -2038,480.50799 -2039,484.92724 -2040,489.43545 -2041,494.03235 -2042,498.7297 -2043,503.52959 -2044,508.43266 -2045,513.45614 -2046,518.61062 -2047,523.90006 -2048,529.32418 -2049,534.8752 -2050,540.54279 -2051,546.32201 -2052,552.21189 -2053,558.2122 -2054,564.31311 -2055,570.51669 -2056,576.84343 -2057,583.30471 -2058,589.90539 -2059,596.64656 -2060,603.52045 -2061,610.5165 -2062,617.60526 -2063,624.76367 -2064,631.99471 -2065,639.29052 -2066,646.65274 -2067,654.09843 -2068,661.64491 -2069,669.30474 -2070,677.07762 -2071,684.95429 -2072,692.90196 -2073,700.89416 -2074,708.93159 -2075,717.01548 -2076,725.13597 -2077,733.30667 -2078,741.52368 -2079,749.80466 -2080,758.1823 -2081,766.64451 -2082,775.17446 -2083,783.75141 -2084,792.36578 -2085,801.0188 -2086,809.71464 -2087,818.42214 -2088,827.15719 -2089,835.95594 -2090,844.80471 -2091,853.72536 -2092,862.72597 -2093,871.7768 -2094,880.86435 -2095,889.98162 -2096,899.12407 -2097,908.28871 -2098,917.47137 -2099,926.66527 -2100,935.87437 -2101,945.13213 -2102,954.4662 -2103,963.83906 -2104,973.2408 -2105,982.68037 -2106,992.14288 -2107,1001.6311 -2108,1011.1191 -2109,1020.6085 -2110,1030.1004 -2111,1039.5892 -2112,1049.1233 -2113,1058.7002 -2114,1068.3216 -2115,1077.9995 -2116,1087.6999 -2117,1097.4303 -2118,1107.1765 -2119,1116.9122 -2120,1126.6592 -2121,1136.4015 -2122,1146.1344 -2123,1155.9064 -2124,1165.7401 -2125,1175.6176 -2126,1185.5295 -2127,1195.4833 -2128,1205.4772 -2129,1215.4661 -2130,1225.453 -2131,1235.4493 -2132,1245.419 -2133,1255.397 -2134,1265.4211 -2135,1275.4843 -2136,1285.5943 -2137,1295.7632 -2138,1305.9625 -2139,1316.1708 -2140,1326.3936 -2141,1336.6283 -2142,1346.8594 -2143,1357.0727 -2144,1367.2797 -2145,1377.5097 -2146,1387.793 -2147,1398.1376 -2148,1408.5226 -2149,1418.9467 -2150,1429.3969 -2151,1439.8354 -2152,1450.2111 -2153,1460.4793 -2154,1470.5915 -2155,1480.5564 -2156,1490.4552 -2157,1500.2994 -2158,1510.0573 -2159,1519.7332 -2160,1529.3276 -2161,1538.8274 -2162,1548.2214 -2163,1557.5025 -2164,1566.6838 -2165,1575.7093 -2166,1584.5792 -2167,1593.389 -2168,1602.1444 -2169,1610.8232 -2170,1619.4189 -2171,1627.9283 -2172,1636.3423 -2173,1644.6544 -2174,1652.8621 -2175,1660.9472 -2176,1668.8714 -2177,1676.6491 -2178,1684.3479 -2179,1691.9855 -2180,1699.5543 -2181,1707.0542 -2182,1714.4671 -2183,1721.7857 -2184,1728.9986 -2185,1736.073 -2186,1743.0204 -2187,1749.8272 -2188,1756.4845 -2189,1763.0469 -2190,1769.542 -2191,1775.972 -2192,1782.3281 -2193,1788.5985 -2194,1794.7605 -2195,1800.7999 -2196,1806.7334 -2197,1812.5201 -2198,1818.1423 -2199,1823.6498 -2200,1829.0556 -2201,1834.3733 -2202,1839.6122 -2203,1844.7812 -2204,1849.8682 -2205,1854.849 -2206,1859.7106 -2207,1864.4469 -2208,1869.0362 -2209,1873.4672 -2210,1877.784 -2211,1881.9947 -2212,1886.1097 -2213,1890.1554 -2214,1894.1313 -2215,1898.0123 -2216,1901.7766 -2217,1905.4235 -2218,1908.9603 -2219,1912.3445 -2220,1915.5465 -2221,1918.6217 -2222,1921.6126 -2223,1924.5227 -2224,1927.352 -2225,1930.1 -2226,1932.7513 -2227,1935.2926 -2228,1937.7127 -2229,1940.0103 -2230,1942.1583 -2231,1944.1572 -2232,1946.0278 -2233,1947.7762 -2234,1949.4392 -2235,1951.0121 -2236,1952.5138 -2237,1953.9433 -2238,1955.2718 -2239,1956.4604 -2240,1957.4929 -2241,1958.428 -2242,1959.1897 -2243,1959.7707 -2244,1960.2847 -2245,1960.7288 -2246,1961.0674 -2247,1961.3194 -2248,1961.4957 -2249,1961.5683 -2250,1961.5774 -2251,1961.5774 -2252,1961.5774 -2253,1961.5774 -2254,1961.5774 -2255,1961.5774 -2256,1961.5774 -2257,1961.5774 -2258,1961.5774 -2259,1961.5774 -2260,1961.5774 -2261,1961.5774 -2262,1961.5774 -2263,1961.5774 -2264,1961.5774 -2265,1961.5774 -2266,1961.5774 -2267,1961.5774 -2268,1961.5774 -2269,1961.5774 -2270,1961.5774 -2271,1961.5774 -2272,1961.5774 -2273,1961.5774 -2274,1961.5774 -2275,1961.5774 -2276,1961.5774 -2277,1961.5774 -2278,1961.5774 -2279,1961.5774 -2280,1961.5774 -2281,1961.5774 -2282,1961.5774 -2283,1961.5774 -2284,1961.5774 -2285,1961.5774 -2286,1961.5774 -2287,1961.5774 -2288,1961.5774 -2289,1961.5774 -2290,1961.5774 -2291,1961.5774 -2292,1961.5774 -2293,1961.5774 -2294,1961.5774 -2295,1961.5774 -2296,1961.5774 -2297,1961.5774 -2298,1961.5774 -2299,1961.5774 -2300,1961.5774 \ No newline at end of file diff --git a/inst/shinyApp/www/input/constraints/tgav_historical.csv b/inst/shinyApp/www/input/constraints/tgav_historical.csv deleted file mode 100644 index 6529ca3..0000000 --- a/inst/shinyApp/www/input/constraints/tgav_historical.csv +++ /dev/null @@ -1,166 +0,0 @@ -; Temperature from HadCRUT4, -Date,tgav_constrain -1850,0 -1851,0.003 -1852,0.003 -1853,-0.002 -1854,-0.01 -1855,-0.022 -1856,-0.036 -1857,-0.048 -1858,-0.059 -1859,-0.066 -1860,-0.07 -1861,-0.068 -1862,-0.063 -1863,-0.054 -1864,-0.042 -1865,-0.028 -1866,-0.015 -1867,-0.004 -1868,0.004 -1869,0.008 -1870,0.009 -1871,0.009 -1872,0.01 -1873,0.013 -1874,0.021 -1875,0.032 -1876,0.045 -1877,0.058 -1878,0.066 -1879,0.068 -1880,0.062 -1881,0.049 -1882,0.031 -1883,0.011 -1884,-0.008 -1885,-0.024 -1886,-0.036 -1887,-0.045 -1888,-0.052 -1889,-0.058 -1890,-0.063 -1891,-0.066 -1892,-0.067 -1893,-0.063 -1894,-0.056 -1895,-0.047 -1896,-0.037 -1897,-0.029 -1898,-0.026 -1899,-0.03 -1900,-0.039 -1901,-0.054 -1902,-0.072 -1903,-0.09 -1904,-0.109 -1905,-0.126 -1906,-0.14 -1907,-0.151 -1908,-0.158 -1909,-0.159 -1910,-0.154 -1911,-0.142 -1912,-0.125 -1913,-0.106 -1914,-0.086 -1915,-0.067 -1916,-0.051 -1917,-0.036 -1918,-0.021 -1919,-0.007 -1920,0.006 -1921,0.019 -1922,0.031 -1923,0.043 -1924,0.054 -1925,0.064 -1926,0.074 -1927,0.083 -1928,0.092 -1929,0.101 -1930,0.11 -1931,0.12 -1932,0.132 -1933,0.145 -1934,0.16 -1935,0.178 -1936,0.198 -1937,0.219 -1938,0.24 -1939,0.259 -1940,0.274 -1941,0.286 -1942,0.294 -1943,0.297 -1944,0.295 -1945,0.29 -1946,0.281 -1947,0.271 -1948,0.261 -1949,0.253 -1950,0.247 -1951,0.242 -1952,0.238 -1953,0.235 -1954,0.233 -1955,0.234 -1956,0.238 -1957,0.244 -1958,0.252 -1959,0.258 -1960,0.262 -1961,0.261 -1962,0.255 -1963,0.247 -1964,0.239 -1965,0.231 -1966,0.226 -1967,0.223 -1968,0.221 -1969,0.22 -1970,0.219 -1971,0.217 -1972,0.215 -1973,0.215 -1974,0.219 -1975,0.227 -1976,0.24 -1977,0.259 -1978,0.281 -1979,0.303 -1980,0.324 -1981,0.341 -1982,0.356 -1983,0.367 -1984,0.379 -1985,0.392 -1986,0.407 -1987,0.423 -1988,0.441 -1989,0.458 -1990,0.475 -1991,0.49 -1992,0.506 -1993,0.524 -1994,0.545 -1995,0.568 -1996,0.594 -1997,0.62 -1998,0.646 -1999,0.67 -2000,0.692 -2001,0.713 -2002,0.731 -2003,0.746 -2004,0.757 -2005,0.764 -2006,0.769 -2007,0.77 -2008,0.77 -2009,0.769 -2010,0.768 -2011,0.768 -2012,0.768 -2013,0.768 diff --git a/inst/shinyApp/www/input/emissions/RCP26_custom_template.csv b/inst/shinyApp/www/input/emissions/RCP26_custom_template.csv deleted file mode 100644 index 2894ed0..0000000 --- a/inst/shinyApp/www/input/emissions/RCP26_custom_template.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP 26 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,CF4_emissions,C2F6_emissions,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,1.6637375,0.23563239,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,1.7507764,0.24803412,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,1.8423953,0.26108852,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,1.9388369,0.27483004,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,2.0403528,0.28929476,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,2.1472124,0.30452082,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,2.2596977,0.32054821,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,2.3781004,0.33741917,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,2.5027381,0.35517808,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,2.6339328,0.37387169,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,2.7720335,0.39354912,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,2.9174066,0.41426223,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,3.0704314,0.39468287,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,3.2315097,0.37832187,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,3.4010636,0.3640764,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,3.579544,0.35194679,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,3.7674167,0.34193311,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,3.9651774,0.33403572,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,4.1733472,0.32825472,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,4.3924702,0.32459037,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,4.62313,0.32304286,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,4.865916,0.32361242,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,5.121479,0.32629927,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,5.3904959,0.3311036,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,5.6736692,0.33802563,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,5.9717491,0.34706557,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,6.2855162,0.35822365,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,6.6157969,0.37150001,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,6.9634615,0.38689499,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,7.3294266,0.40440867,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,7.7146508,0.42404135,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,8.1201607,0.4457932,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,8.5470132,0.46966444,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,14.984956,0.49565531,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,13.488099,0.52376596,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,13.488369,0.55399667,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,13.488639,0.58634761,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,13.488909,0.62081899,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,13.48918,0.65741104,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,13.489449,0.69612398,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,11.992564,0.73695798,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,13.489967,0.7799133,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,13.490244,0.82499011,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,13.490523,0.87218868,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,11.993645,0.9215092,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,13.49105,0.97295172,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,13.491328,1.0265167,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,11.994452,1.0822044,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,13.491857,1.1400146,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,11.994981,1.1999481,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,13.492387,1.2620043,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,11.995499,1.3261846,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,13.492893,1.392488,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,11.996004,1.4609153,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,11.996242,1.5314669,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,11.99648,1.6041426,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,13.493874,1.678943,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,11.996986,1.7558675,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,11.997224,1.8349176,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,11.997462,1.9160924,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,11.997683,2.0735678,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,11.997905,2.3729101,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,11.998111,2.3731469,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,11.998354,2.3733837,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,11.998587,2.3736205,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,10.501674,2.3738573,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,11.999071,2.3740941,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,11.999322,2.3743309,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,11.999575,2.3745677,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,10.502692,2.3748045,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,12.0001,2.3749,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,11.925,2.4345,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,240.392,53.81,28.001,8.669,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,11.8481,2.4915,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,251.146,52.018,22.43,8.524,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,11.7693,2.5463,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,261.9,50.225,23.232,7.77,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,11.6885,2.599,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,272.654,48.433,23.348,7.653,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,11.6059,2.6494,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,1.92,0.314,168.841,3511.082 -2006,8.1427,1.1676,320.0614,7.715,56545,1055.3681,215.8001,38.883,8.3258,36.4361,12.2669,3.1051,10.5529,12.3831,3.8803,16.2358,121.0746,14.293,5.6938,31.7215,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,296.002,48.231,34.767,6.992,1.834,0.279,167.857,3511.082 -2007,8.3136,1.14,324.2127,7.7459,56367.8,1049.2141,216.1376,38.97,8.4003,36.4792,12.9284,3.5603,10.2947,13.7731,4.5246,18.7259,129.6223,16.1321,6.5045,36.5545,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,308.596,49.821,39.869,6.502,1.752,0.249,167.857,3511.082 -2008,8.4828667,1.1121667,328.34943,7.7766333,56184.533,1043.0664,216.4749,39.054433,8.4745333,36.520033,13.5912,4.0149667,10.037233,15.162767,5.1677,21.2435,138.76247,17.9599,7.3294667,41.387467,6.6085333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,321.19,51.412,39.099,6.047,1.675,0.221,167.857,3511.082 -2009,8.6521333,1.0843333,332.48617,7.8073667,56001.267,1036.9188,216.8122,39.138867,8.5487667,36.560867,14.254,4.4696333,9.7797667,16.552433,5.8108,23.7611,147.90263,19.7877,8.1544333,46.220433,6.6157667,44.442,40.334,0.754,0.029,0.248,39,10.874,333.784,53.002,38.069,5.624,1.601,0.197,167.857,3511.082 -2010,8.8214,1.0565,336.6229,7.8381,55818,1030.7711,217.1495,39.2233,8.623,36.6017,14.9168,4.9243,9.5223,17.9421,6.4539,26.2787,157.0428,21.6155,8.9794,51.0534,6.623,42.976,36.906,0.377,0.018,0.186,32.5,7.266,346.378,54.593,36.801,5.23,1.521,0.175,167.857,3511.082 -2011,8.86803,1.04813,328.6374,7.79063,54657.49,1025.9587,216.7636,38.96192,8.5989,36.61719,14.6468,4.9717,8.68531,22.21208,6.53107,32.58573,158.72642,25.89136,8.24224,49.18021,6.18511,41.557,33.769,0.189,0.011,0.14,26,7.266,344.714,54.867,35.314,4.864,1.445,0.156,167.857,3511.082 -2012,8.91466,1.03976,320.6519,7.74316,53496.98,1021.1462,216.3777,38.70054,8.5748,36.63268,14.3768,5.0191,7.84832,26.48206,6.60824,38.89276,160.41004,30.16722,7.50508,47.30702,5.74722,40.186,30.898,0.094,0.006,0.105,19.5,7.266,343.051,55.141,33.625,4.524,1.373,0.139,167.857,3511.082 -2013,8.96129,1.03139,312.6664,7.69569,52336.47,1016.3338,215.9918,38.43916,8.5507,36.64817,14.1068,5.0665,7.01133,30.75204,6.68541,45.19979,162.09366,34.44308,6.76792,45.43383,5.30933,38.86,28.272,0.047,0.004,0.079,13,7.266,341.387,55.414,31.75,4.207,1.304,0.124,167.857,3511.082 -2014,9.00792,1.02302,304.6809,7.64822,51175.96,1011.5213,215.6059,38.17778,8.5266,36.66366,13.8368,5.1139,6.17434,35.02202,6.76258,51.50682,163.77728,38.71894,6.03076,43.56064,4.87144,37.578,25.869,0.024,0.002,0.059,6.5,7.266,339.724,55.688,29.705,3.913,1.239,0.11,167.857,3511.082 -2015,9.05455,1.01465,296.6954,7.60075,50015.45,1006.7089,215.22,37.9164,8.5025,36.67915,13.5668,5.1613,5.33735,39.292,6.83975,57.81385,165.4609,42.9948,5.2936,41.68745,4.43355,36.338,23.67,0.012,0.001,0.044,0,0,338.06,55.962,27.502,3.639,1.177,0.098,155.925,3511.082 -2016,9.10118,1.00628,288.7099,7.55328,48854.94,1001.8965,214.8341,37.65502,8.4784,36.69464,13.2968,5.2087,4.50036,43.56198,6.91692,64.12088,167.14452,47.27066,4.55644,39.81426,3.99566,35.138,21.658,0.006,0.001,0.033,0,0,336.397,56.236,25.476,3.384,1.118,0.087,155.925,3511.082 -2017,9.14781,0.99791,280.7244,7.50581,47694.43,997.08402,214.4482,37.39364,8.4543,36.71013,13.0268,5.2561,3.66337,47.83196,6.99409,70.42791,168.82814,51.54652,3.81928,37.94107,3.55777,33.979,19.817,0.003,0,0.025,0,0,334.733,56.51,23.611,3.147,1.062,0.078,155.925,3511.082 -2018,9.19444,0.98954,272.7389,7.45834,46533.92,992.27158,214.0623,37.13226,8.4302,36.72562,12.7568,5.3035,2.82638,52.10194,7.07126,76.73494,170.51176,55.82238,3.08212,36.06788,3.11988,32.858,18.133,0.001,0,0.019,0,0,333.07,56.784,21.896,2.927,1.009,0.069,155.925,3511.082 -2019,9.24107,0.98117,264.7534,7.41087,45373.41,987.45914,213.6764,36.87088,8.4061,36.74111,12.4868,5.3509,1.98939,56.37192,7.14843,83.04197,172.19538,60.09824,2.34496,34.19469,2.68199,31.773,16.591,0.001,0,0.014,0,0,331.406,57.058,20.318,2.722,0.959,0.061,155.925,3511.082 -2020,9.2877,0.9728,256.7679,7.3634,44212.9,982.6467,213.2905,36.6095,8.382,36.7566,12.2168,5.3983,1.1524,60.6419,7.2256,89.349,173.879,64.3741,1.6078,32.3215,2.2441,30.725,15.181,0,0,0.01,0,0,329.743,57.332,18.867,2.531,0.911,0.055,155.925,3511.082 -2021,9.07462,0.95441,254.65433,7.35756,42752.21,976.97887,212.02164,36.10504,8.23806,36.62955,11.66461,5.04704,1.1063,61.78125,7.31559,91.30401,175.90966,65.49222,1.52656,29.40678,2.21491,29.711,13.891,0,0,0.008,0,0,313.814,56.425,17.531,2.354,0.865,0.049,155.925,3511.082 -2022,8.86154,0.93602,252.54076,7.35172,41291.52,971.31104,210.75278,35.60058,8.09412,36.5025,11.11242,4.69578,1.0602,62.9206,7.40558,93.25902,177.94032,66.61034,1.44532,26.49206,2.18572,28.73,12.71,0,0,0.006,0,0,297.886,55.519,16.302,2.189,0.822,0.043,155.925,3511.082 -2023,8.64846,0.91763,250.42719,7.34588,39830.83,965.64321,209.48392,35.09612,7.95018,36.37545,10.56023,4.34452,1.0141,64.05995,7.49557,95.21403,179.97098,67.72846,1.36408,23.57734,2.15653,27.782,11.63,0,0,0.004,0,0,281.957,54.612,15.172,2.036,0.781,0.039,155.925,3511.082 -2024,8.43538,0.89924,248.31362,7.34004,38370.14,959.97538,208.21506,34.59166,7.80624,36.2484,10.00804,3.99326,0.968,65.1993,7.58556,97.16904,182.00164,68.84658,1.28284,20.66262,2.12734,26.865,10.641,0,0,0.003,0,0,266.029,53.705,14.132,1.894,0.742,0.034,155.925,3511.082 -2025,8.2223,0.88085,246.20005,7.3342,36909.45,954.30755,206.9462,34.0872,7.6623,36.12135,9.45585,3.642,0.9219,66.33865,7.67555,99.12405,184.0323,69.9647,1.2016,17.7479,2.09815,25.979,9.737,0,0,0.002,0,0,250.101,52.798,13.175,1.761,0.705,0.031,155.925,3511.082 -2026,8.00922,0.86246,244.08648,7.32836,35448.76,948.63972,205.67734,33.58274,7.51836,35.9943,8.90366,3.29074,0.8758,67.478,7.76554,101.07906,186.06296,71.08282,1.12036,14.83318,2.06896,25.122,8.909,0,0,0.002,0,0,234.172,51.892,12.295,1.638,0.669,0.027,155.925,3511.082 -2027,7.79614,0.84407,241.97291,7.32252,33988.07,942.97189,204.40848,33.07828,7.37442,35.86725,8.35147,2.93948,0.8297,68.61735,7.85553,103.03407,188.09362,72.20094,1.03912,11.91846,2.03977,24.293,8.152,0,0,0.001,0,0,218.244,50.985,11.485,1.523,0.636,0.024,155.925,3511.082 -2028,7.58306,0.82568,239.85934,7.31668,32527.38,937.30406,203.13962,32.57382,7.23048,35.7402,7.79928,2.58822,0.7836,69.7567,7.94552,104.98908,190.12428,73.31906,0.95788,9.00374,2.01058,23.491,7.459,0,0,0.001,0,0,202.315,50.078,10.74,1.417,0.604,0.022,155.925,3511.082 -2029,7.36998,0.80729,237.74577,7.31084,31066.69,931.63623,201.87076,32.06936,7.08654,35.61315,7.24709,2.23696,0.7375,70.89605,8.03551,106.94409,192.15494,74.43718,0.87664,6.08902,1.98139,22.716,6.825,0,0,0.001,0,0,186.387,49.172,10.055,1.317,0.574,0.019,155.925,3511.082 -2030,7.1569,0.7889,235.6322,7.305,29606,925.9684,200.6019,31.5649,6.9426,35.4861,6.6949,1.8857,0.6914,72.0354,8.1255,108.8991,194.1856,75.5553,0.7954,3.1743,1.9522,21.966,6.245,0,0,0.001,0,0,170.458,48.265,9.424,1.225,0.545,0.017,155.925,3511.082 -2031,6.8947,0.75891,234.57183,7.29221,28634.46,921.1656,199.76692,31.40904,6.81693,35.13889,6.53063,1.80589,0.66362,72.90303,8.24943,110.50533,196.04996,76.3722,0.80448,2.85687,1.91374,21.241,5.714,0,0,0,0,0,158.161,46.405,8.826,1.139,0.518,0.015,155.925,3511.082 -2032,6.6325,0.72892,233.51146,7.27942,27662.92,916.3628,198.93194,31.25318,6.69126,34.79168,6.36636,1.72608,0.63584,73.77066,8.37336,112.11156,197.91432,77.1891,0.81356,2.53944,1.87528,20.54,5.228,0,0,0,0,0,145.863,44.545,8.259,1.06,0.492,0.013,155.925,3511.082 -2033,6.3703,0.69893,232.45109,7.26663,26691.38,911.56,198.09696,31.09732,6.56559,34.44447,6.20209,1.64627,0.60806,74.63829,8.49729,113.71779,199.77868,78.006,0.82264,2.22201,1.83682,19.862,4.784,0,0,0,0,0,133.566,42.685,7.72,0.985,0.467,0.012,155.925,3511.082 -2034,6.1081,0.66894,231.39072,7.25384,25719.84,906.7572,197.26198,30.94146,6.43992,34.09726,6.03782,1.56646,0.58028,75.50592,8.62122,115.32402,201.64304,78.8229,0.83172,1.90458,1.79836,19.207,4.377,0,0,0,0,0,121.269,40.825,7.207,0.916,0.444,0.011,155.925,3511.082 -2035,5.8459,0.63895,230.33035,7.24105,24748.3,901.9544,196.427,30.7856,6.31425,33.75005,5.87355,1.48665,0.5525,76.37355,8.74515,116.93025,203.5074,79.6398,0.8408,1.58715,1.7599,18.573,4.005,0,0,0,0,0,108.971,38.965,6.717,0.852,0.422,0.01,155.925,3511.082 -2036,5.5837,0.60896,229.26998,7.22826,23776.76,897.1516,195.59202,30.62974,6.18858,33.40284,5.70928,1.40684,0.52472,77.24118,8.86908,118.53648,205.37176,80.4567,0.84988,1.26972,1.72144,17.96,3.665,0,0,0,0,0,96.674,37.105,6.249,0.793,0.401,0.008,155.925,3511.082 -2037,5.3215,0.57897,228.20961,7.21547,22805.22,892.3488,194.75704,30.47388,6.06291,33.05563,5.54501,1.32703,0.49694,78.10881,8.99301,120.14271,207.23612,81.2736,0.85896,0.95229,1.68298,17.368,3.353,0,0,0,0,0,84.377,35.244,5.801,0.737,0.381,0.008,155.925,3511.082 -2038,5.0593,0.54898,227.14924,7.20268,21833.68,887.546,193.92206,30.31802,5.93724,32.70842,5.38074,1.24722,0.46916,78.97644,9.11694,121.74894,209.10048,82.0905,0.86804,0.63486,1.64452,16.794,3.068,0,0,0,0,0,72.079,33.384,5.372,0.686,0.362,0.007,155.925,3511.082 -2039,4.7971,0.51899,226.08887,7.18989,20862.14,882.7432,193.08708,30.16216,5.81157,32.36121,5.21647,1.16741,0.44138,79.84407,9.24087,123.35517,210.96484,82.9074,0.87712,0.31743,1.60606,16.24,2.807,0,0,0,0,0,59.782,31.524,4.96,0.638,0.344,0.006,155.925,3511.082 -2040,4.5349,0.489,225.0285,7.1771,19890.6,877.9404,192.2521,30.0063,5.6859,32.014,5.0522,1.0876,0.4136,80.7117,9.3648,124.9614,212.8292,83.7243,0.8862,0,1.5676,15.704,2.569,0,0,0,0,0,47.485,29.664,4.563,0.593,0.326,0.005,155.925,3511.082 -2041,4.39997,0.46022,221.45546,7.08404,19458.99,872.16763,190.878,29.89599,5.61136,31.80989,4.81083,1.02596,0.39687,80.10127,9.53783,124.37894,211.38138,83.06078,0.82716,0,1.47407,15.186,2.35,0,0,0,0,0,43.916,28.474,4.198,0.551,0.31,0.005,155.925,3511.082 -2042,4.26504,0.43144,217.88242,6.99098,19027.38,866.39486,189.5039,29.78568,5.53682,31.60578,4.56946,0.96432,0.38014,79.49084,9.71086,123.79648,209.93356,82.39726,0.76812,0,1.38054,14.685,2.151,0,0,0,0,0,40.347,27.284,3.862,0.513,0.295,0.004,155.925,3511.082 -2043,4.13011,0.40266,214.30938,6.89792,18595.77,860.62209,188.1298,29.67537,5.46228,31.40167,4.32809,0.90268,0.36341,78.88041,9.88389,123.21402,208.48574,81.73374,0.70908,0,1.28701,14.2,1.968,0,0,0,0,0,36.778,26.093,3.553,0.477,0.28,0.004,155.925,3511.082 -2044,3.99518,0.37388,210.73634,6.80486,18164.16,854.84932,186.7557,29.56506,5.38774,31.19756,4.08672,0.84104,0.34668,78.26998,10.05692,122.63156,207.03792,81.07022,0.65004,0,1.19348,13.732,1.801,0,0,0,0,0,33.209,24.903,3.269,0.444,0.266,0.003,155.925,3511.082 -2045,3.86025,0.3451,207.1633,6.7118,17732.55,849.07655,185.3816,29.45475,5.3132,30.99345,3.84535,0.7794,0.32995,77.65955,10.22995,122.0491,205.5901,80.4067,0.591,0,1.09995,13.279,1.648,0,0,0,0,0,29.64,23.713,3.007,0.413,0.253,0.003,155.925,3511.082 -2046,3.72532,0.31632,203.59026,6.61874,17300.94,843.30378,184.0075,29.34444,5.23866,30.78934,3.60398,0.71776,0.31322,77.04912,10.40298,121.46664,204.14228,79.74318,0.53196,0,1.00642,12.84,1.507,0,0,0,0,0,26.072,22.522,2.767,0.384,0.24,0.003,155.925,3511.082 -2047,3.59039,0.28754,200.01722,6.52568,16869.33,837.53101,182.6334,29.23413,5.16412,30.58523,3.36261,0.65612,0.29649,76.43869,10.57601,120.88418,202.69446,79.07966,0.47292,0,0.91289,12.417,1.379,0,0,0,0,0,22.503,21.332,2.545,0.357,0.228,0.002,155.925,3511.082 -2048,3.45546,0.25876,196.44418,6.43262,16437.72,831.75824,181.2593,29.12382,5.08958,30.38112,3.12124,0.59448,0.27976,75.82826,10.74904,120.30172,201.24664,78.41614,0.41388,0,0.81936,12.007,1.262,0,0,0,0,0,18.934,20.142,2.342,0.332,0.217,0.002,155.925,3511.082 -2049,3.32053,0.22998,192.87114,6.33956,16006.11,825.98547,179.8852,29.01351,5.01504,30.17701,2.87987,0.53284,0.26303,75.21783,10.92207,119.71926,199.79882,77.75262,0.35484,0,0.72583,11.611,1.155,0,0,0,0,0,15.365,18.951,2.154,0.309,0.206,0.002,155.925,3511.082 -2050,3.1856,0.2012,189.2981,6.2465,15574.5,820.2127,178.5111,28.9032,4.9405,29.9729,2.6385,0.4712,0.2463,74.6074,11.0951,119.1368,198.351,77.0891,0.2958,0,0.6323,11.227,1.057,0,0,0,0,0,11.796,17.761,1.982,0.287,0.195,0.002,155.925,3511.082 -2051,3.00896,0.2426,187.01509,6.19366,15387.03,816.11031,177.30075,28.73251,4.88943,29.9464,2.59225,0.45634,0.23542,75.55522,11.09689,121.10282,201.15158,78.03953,0.28044,0,0.61892,10.857,0.967,0,0,0,0,0,10.91,17.048,1.824,0.267,0.186,0.001,155.925,3511.082 -2052,2.83232,0.284,184.73208,6.14082,15199.56,812.00792,176.0904,28.56182,4.83836,29.9199,2.546,0.44148,0.22454,76.50304,11.09868,123.06884,203.95216,78.98996,0.26508,0,0.60554,10.499,0.885,0,0,0,0,0,10.023,16.336,1.678,0.248,0.176,0.001,155.925,3511.082 -2053,2.65568,0.3254,182.44907,6.08798,15012.09,807.90553,174.88005,28.39113,4.78729,29.8934,2.49975,0.42662,0.21366,77.45086,11.10047,125.03486,206.75274,79.94039,0.24972,0,0.59216,10.152,0.809,0,0,0,0,0,9.137,15.623,1.543,0.231,0.168,0.001,155.925,3511.082 -2054,2.47904,0.3668,180.16606,6.03514,14824.62,803.80314,173.6697,28.22044,4.73622,29.8669,2.4535,0.41176,0.20278,78.39868,11.10226,127.00088,209.55332,80.89082,0.23436,0,0.57878,9.817,0.741,0,0,0,0,0,8.25,14.91,1.42,0.215,0.159,0.001,155.925,3511.082 -2055,2.3024,0.4082,177.88305,5.9823,14637.15,799.70075,172.45935,28.04975,4.68515,29.8404,2.40725,0.3969,0.1919,79.3465,11.10405,128.9669,212.3539,81.84125,0.219,0,0.5654,9.493,0.678,0,0,0,0,0,7.363,14.198,1.306,0.2,0.151,0.001,155.925,3511.082 -2056,2.12576,0.4496,175.60004,5.92946,14449.68,795.59836,171.249,27.87906,4.63408,29.8139,2.361,0.38204,0.18102,80.29432,11.10584,130.93292,215.15448,82.79168,0.20364,0,0.55202,9.18,0.62,0,0,0,0,0,6.477,13.485,1.202,0.186,0.144,0.001,155.925,3511.082 -2057,1.94912,0.491,173.31703,5.87662,14262.21,791.49597,170.03865,27.70837,4.58301,29.7874,2.31475,0.36718,0.17014,81.24214,11.10763,132.89894,217.95506,83.74211,0.18828,0,0.53864,8.877,0.567,0,0,0,0,0,5.59,12.772,1.106,0.173,0.136,0.001,155.925,3511.082 -2058,1.77248,0.5324,171.03402,5.82378,14074.74,787.39358,168.8283,27.53768,4.53194,29.7609,2.2685,0.35232,0.15926,82.18996,11.10942,134.86496,220.75564,84.69254,0.17292,0,0.52526,8.584,0.519,0,0,0,0,0,4.704,12.06,1.017,0.161,0.13,0.001,155.925,3511.082 -2059,1.59584,0.5738,168.75101,5.77094,13887.27,783.29119,167.61795,27.36699,4.48087,29.7344,2.22225,0.33746,0.14838,83.13778,11.11121,136.83098,223.55622,85.64297,0.15756,0,0.51188,8.301,0.475,0,0,0,0,0,3.817,11.347,0.936,0.149,0.123,0.001,155.925,3511.082 -2060,1.4192,0.6152,166.468,5.7181,13699.8,779.1888,166.4076,27.1963,4.4298,29.7079,2.176,0.3226,0.1375,84.0856,11.113,138.797,226.3568,86.5934,0.1422,0,0.4985,8.027,0.435,0,0,0,0,0,2.93,10.634,0.861,0.139,0.117,0.001,155.925,3511.082 -2061,1.28885,0.6075,165.95204,5.7204,13516.44,772.51907,164.79686,26.8771,4.38112,29.54327,2.17216,0.31644,0.13105,85.06506,11.10641,140.83553,229.30577,87.48473,0.14112,0,0.49048,7.762,0.398,0,0,0,0,0,2.71,10.207,0.792,0.129,0.111,0,155.925,3511.082 -2062,1.1585,0.5998,165.43608,5.7227,13333.08,765.84934,163.18612,26.5579,4.33244,29.37864,2.16832,0.31028,0.1246,86.04452,11.09982,142.87406,232.25474,88.37606,0.14004,0,0.48246,7.506,0.364,0,0,0,0,0,2.49,9.781,0.729,0.12,0.106,0,155.925,3511.082 -2063,1.02815,0.5921,164.92012,5.725,13149.72,759.17961,161.57538,26.2387,4.28376,29.21401,2.16448,0.30412,0.11815,87.02398,11.09323,144.91259,235.20371,89.26739,0.13896,0,0.47444,7.258,0.333,0,0,0,0,0,2.27,9.354,0.67,0.112,0.1,0,155.925,3511.082 -2064,0.8978,0.5844,164.40416,5.7273,12966.36,752.50988,159.96464,25.9195,4.23508,29.04938,2.16064,0.29796,0.1117,88.00344,11.08664,146.95112,238.15268,90.15872,0.13788,0,0.46642,7.019,0.305,0,0,0,0,0,2.049,8.927,0.617,0.104,0.095,0,155.925,3511.082 -2065,0.76745,0.5767,163.8882,5.7296,12783,745.84015,158.3539,25.6003,4.1864,28.88475,2.1568,0.2918,0.10525,88.9829,11.08005,148.98965,241.10165,91.05005,0.1368,0,0.4584,6.787,0.279,0,0,0,0,0,1.829,8.501,0.567,0.097,0.091,0,155.925,3511.082 -2066,0.6371,0.569,163.37224,5.7319,12599.64,739.17042,156.74316,25.2811,4.13772,28.72012,2.15296,0.28564,0.0988,89.96236,11.07346,151.02818,244.05062,91.94138,0.13572,0,0.45038,6.563,0.255,0,0,0,0,0,1.609,8.074,0.522,0.09,0.086,0,155.925,3511.082 -2067,0.50675,0.5613,162.85628,5.7342,12416.28,732.50069,155.13242,24.9619,4.08904,28.55549,2.14912,0.27948,0.09235,90.94182,11.06687,153.06671,246.99959,92.83271,0.13464,0,0.44236,6.346,0.233,0,0,0,0,0,1.389,7.647,0.48,0.084,0.082,0,155.925,3511.082 -2068,0.3764,0.5536,162.34032,5.7365,12232.92,725.83096,153.52168,24.6427,4.04036,28.39086,2.14528,0.27332,0.0859,91.92128,11.06028,155.10524,249.94856,93.72404,0.13356,0,0.43434,6.137,0.214,0,0,0,0,0,1.168,7.221,0.442,0.078,0.078,0,155.925,3511.082 -2069,0.24605,0.5459,161.82436,5.7388,12049.56,719.16123,151.91094,24.3235,3.99168,28.22623,2.14144,0.26716,0.07945,92.90074,11.05369,157.14377,252.89753,94.61537,0.13248,0,0.42632,5.935,0.195,0,0,0,0,0,0.948,6.794,0.407,0.072,0.074,0,155.925,3511.082 -2070,0.1157,0.5382,161.3084,5.7411,11866.2,712.4915,150.3002,24.0043,3.943,28.0616,2.1376,0.261,0.073,93.8802,11.0471,159.1823,255.8465,95.5067,0.1314,0,0.4183,5.739,0.179,0,0,0,0,0,0.728,6.367,0.374,0.067,0.07,0,155.925,3511.082 -2071,0.06083,0.53938,160.68516,5.72833,11655.06,707.6157,149.13236,23.66643,3.91608,27.94251,2.06823,0.25002,0.06942,94.1193,11.03809,159.92094,256.83185,95.53701,0.1303,0,0.40805,5.549,0.164,0,0,0,0,0,0.673,6.112,0.344,0.063,0.067,0,155.925,3511.082 -2072,0.00596,0.54056,160.06192,5.71556,11443.92,702.7399,147.96452,23.32856,3.88916,27.82342,1.99886,0.23904,0.06584,94.3584,11.02908,160.65958,257.8172,95.56732,0.1292,0,0.3978,5.366,0.15,0,0,0,0,0,0.619,5.856,0.317,0.058,0.063,0,155.925,3511.082 -2073,-0.04891,0.54174,159.43868,5.70279,11232.78,697.8641,146.79668,22.99069,3.86224,27.70433,1.92949,0.22806,0.06226,94.5975,11.02007,161.39822,258.80255,95.59763,0.1281,0,0.38755,5.189,0.137,0,0,0,0,0,0.564,5.601,0.291,0.054,0.06,0,155.925,3511.082 -2074,-0.10378,0.54292,158.81544,5.69002,11021.64,692.9883,145.62884,22.65282,3.83532,27.58524,1.86012,0.21708,0.05868,94.8366,11.01106,162.13686,259.7879,95.62794,0.127,0,0.3773,5.018,0.125,0,0,0,0,0,0.509,5.345,0.268,0.05,0.057,0,155.925,3511.082 -2075,-0.15865,0.5441,158.1922,5.67725,10810.5,688.1125,144.461,22.31495,3.8084,27.46615,1.79075,0.2061,0.0551,95.0757,11.00205,162.8755,260.77325,95.65825,0.1259,0,0.36705,4.852,0.115,0,0,0,0,0,0.454,5.09,0.247,0.047,0.054,0,155.925,3511.082 -2076,-0.21352,0.54528,157.56896,5.66448,10599.36,683.2367,143.29316,21.97708,3.78148,27.34706,1.72138,0.19512,0.05152,95.3148,10.99304,163.61414,261.7586,95.68856,0.1248,0,0.3568,4.692,0.105,0,0,0,0,0,0.4,4.834,0.227,0.043,0.052,0,155.925,3511.082 -2077,-0.26839,0.54646,156.94572,5.65171,10388.22,678.3609,142.12532,21.63921,3.75456,27.22797,1.65201,0.18414,0.04794,95.5539,10.98403,164.35278,262.74395,95.71887,0.1237,0,0.34655,4.537,0.096,0,0,0,0,0,0.345,4.579,0.209,0.04,0.049,0,155.925,3511.082 -2078,-0.32326,0.54764,156.32248,5.63894,10177.08,673.4851,140.95748,21.30134,3.72764,27.10888,1.58264,0.17316,0.04436,95.793,10.97502,165.09142,263.7293,95.74918,0.1226,0,0.3363,4.388,0.088,0,0,0,0,0,0.29,4.323,0.192,0.038,0.046,0,155.925,3511.082 -2079,-0.37813,0.54882,155.69924,5.62617,9965.94,668.6093,139.78964,20.96347,3.70072,26.98979,1.51327,0.16218,0.04078,96.0321,10.96601,165.83006,264.71465,95.77949,0.1215,0,0.32605,4.243,0.08,0,0,0,0,0,0.236,4.068,0.177,0.035,0.044,0,155.925,3511.082 -2080,-0.433,0.55,155.076,5.6134,9754.8,663.7335,138.6218,20.6256,3.6738,26.8707,1.4439,0.1512,0.0372,96.2712,10.957,166.5687,265.7,95.8098,0.1204,0,0.3158,4.103,0.074,0,0,0,0,0,0.181,3.812,0.162,0.033,0.042,0,155.925,3511.082 -2081,-0.47674,0.55524,154.41227,5.59813,9561.88,661.04504,137.88381,20.41927,3.66094,26.82342,1.41908,0.14528,0.03348,95.76444,10.93657,166.06747,264.8148,95.1051,0.11903,0,0.30275,3.967,0.067,0,0,0,0,0,0.167,3.659,0.149,0.03,0.04,0,155.925,3511.082 -2082,-0.52048,0.56048,153.74854,5.58286,9368.96,658.35658,137.14582,20.21294,3.64808,26.77614,1.39426,0.13936,0.02976,95.25768,10.91614,165.56624,263.9296,94.4004,0.11766,0,0.2897,3.836,0.062,0,0,0,0,0,0.154,3.506,0.138,0.028,0.038,0,155.925,3511.082 -2083,-0.56422,0.56572,153.08481,5.56759,9176.04,655.66812,136.40783,20.00661,3.63522,26.72886,1.36944,0.13344,0.02604,94.75092,10.89571,165.06501,263.0444,93.6957,0.11629,0,0.27665,3.71,0.056,0,0,0,0,0,0.14,3.353,0.127,0.026,0.036,0,155.925,3511.082 -2084,-0.60796,0.57096,152.42108,5.55232,8983.12,652.97966,135.66984,19.80028,3.62236,26.68158,1.34462,0.12752,0.02232,94.24416,10.87528,164.56378,262.1592,92.991,0.11492,0,0.2636,3.587,0.052,0,0,0,0,0,0.126,3.2,0.116,0.024,0.034,0,155.925,3511.082 -2085,-0.6517,0.5762,151.75735,5.53705,8790.2,650.2912,134.93185,19.59395,3.6095,26.6343,1.3198,0.1216,0.0186,93.7374,10.85485,164.06255,261.274,92.2863,0.11355,0,0.25055,3.469,0.047,0,0,0,0,0,0.113,3.047,0.107,0.023,0.032,0,155.925,3511.082 -2086,-0.69544,0.58144,151.09362,5.52178,8597.28,647.60274,134.19386,19.38762,3.59664,26.58702,1.29498,0.11568,0.01488,93.23064,10.83442,163.56132,260.3888,91.5816,0.11218,0,0.2375,3.355,0.043,0,0,0,0,0,0.099,2.894,0.099,0.021,0.031,0,155.925,3511.082 -2087,-0.73918,0.58668,150.42989,5.50651,8404.36,644.91428,133.45587,19.18129,3.58378,26.53974,1.27016,0.10976,0.01116,92.72388,10.81399,163.06009,259.5036,90.8769,0.11081,0,0.22445,3.244,0.039,0,0,0,0,0,0.086,2.741,0.091,0.02,0.029,0,155.925,3511.082 -2088,-0.78292,0.59192,149.76616,5.49124,8211.44,642.22582,132.71788,18.97496,3.57092,26.49246,1.24534,0.10384,0.00744,92.21712,10.79356,162.55886,258.6184,90.1722,0.10944,0,0.2114,3.137,0.036,0,0,0,0,0,0.072,2.588,0.083,0.018,0.028,0,155.925,3511.082 -2089,-0.82666,0.59716,149.10243,5.47597,8018.52,639.53736,131.97989,18.76863,3.55806,26.44518,1.22052,0.09792,0.00372,91.71036,10.77313,162.05763,257.7332,89.4675,0.10807,0,0.19835,3.033,0.033,0,0,0,0,0,0.059,2.435,0.077,0.017,0.026,0,155.925,3511.082 -2090,-0.8704,0.6024,148.4387,5.4607,7825.6,636.8489,131.2419,18.5623,3.5452,26.3979,1.1957,0.092,0,91.2036,10.7527,161.5564,256.848,88.7628,0.1067,0,0.1853,2.933,0.03,0,0,0,0,0,0.045,2.283,0.071,0.016,0.025,0,155.925,3511.082 -2091,-0.87644,0.59329,147.8001,5.44286,7688.56,633.94839,130.66875,18.30502,3.52646,26.29122,1.18533,0.09137,0,90.20593,10.71798,160.22213,254.70245,87.63225,0.10515,0,0.17119,2.836,0.028,0,0,0,0,0,0.042,2.191,0.065,0.015,0.024,0,155.925,3511.082 -2092,-0.88248,0.58418,147.1615,5.42502,7551.52,631.04788,130.0956,18.04774,3.50772,26.18454,1.17496,0.09074,0,89.20826,10.68326,158.88786,252.5569,86.5017,0.1036,0,0.15708,2.743,0.025,0,0,0,0,0,0.038,2.099,0.06,0.014,0.023,0,155.925,3511.082 -2093,-0.88852,0.57507,146.5229,5.40718,7414.48,628.14737,129.52245,17.79046,3.48898,26.07786,1.16459,0.09011,0,88.21059,10.64854,157.55359,250.41135,85.37115,0.10205,0,0.14297,2.652,0.023,0,0,0,0,0,0.035,2.008,0.055,0.013,0.022,0,155.925,3511.082 -2094,-0.89456,0.56596,145.8843,5.38934,7277.44,625.24686,128.9493,17.53318,3.47024,25.97118,1.15422,0.08948,0,87.21292,10.61382,156.21932,248.2658,84.2406,0.1005,0,0.12886,2.565,0.021,0,0,0,0,0,0.031,1.916,0.051,0.012,0.02,0,155.925,3511.082 -2095,-0.9006,0.55685,145.2457,5.3715,7140.4,622.34635,128.37615,17.2759,3.4515,25.8645,1.14385,0.08885,0,86.21525,10.5791,154.88505,246.12025,83.11005,0.09895,0,0.11475,2.48,0.019,0,0,0,0,0,0.028,1.825,0.047,0.011,0.019,0,155.925,3511.082 -2096,-0.90664,0.54774,144.6071,5.35366,7003.36,619.44584,127.803,17.01862,3.43276,25.75782,1.13348,0.08822,0,85.21758,10.54438,153.55078,243.9747,81.9795,0.0974,0,0.10064,2.398,0.018,0,0,0,0,0,0.025,1.733,0.043,0.01,0.018,0,155.925,3511.082 -2097,-0.91268,0.53863,143.9685,5.33582,6866.32,616.54533,127.22985,16.76134,3.41402,25.65114,1.12311,0.08759,0,84.21991,10.50966,152.21651,241.82915,80.84895,0.09585,0,0.08653,2.319,0.016,0,0,0,0,0,0.021,1.641,0.039,0.009,0.018,0,155.925,3511.082 -2098,-0.91872,0.52952,143.3299,5.31798,6729.28,613.64482,126.6567,16.50406,3.39528,25.54446,1.11274,0.08696,0,83.22224,10.47494,150.88224,239.6836,79.7184,0.0943,0,0.07242,2.243,0.015,0,0,0,0,0,0.018,1.55,0.036,0.009,0.017,0,155.925,3511.082 -2099,-0.92476,0.52041,142.6913,5.30014,6592.24,610.74431,126.08355,16.24678,3.37654,25.43778,1.10237,0.08633,0,82.22457,10.44022,149.54797,237.53805,78.58785,0.09275,0,0.05831,2.169,0.014,0,0,0,0,0,0.015,1.458,0.033,0.008,0.016,0,155.925,3511.082 -2100,-0.9308,0.5113,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.097,0.012,0,0,0,0,0,0.011,1.367,0.031,0.008,0.015,0,155.925,3511.082 -2101,-0.9308,0.490848,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.028,0.011,0,0,0,0,0,0.01,1.298,0.028,0.007,0.014,0,155.925,3511.082 -2102,-0.9308,0.470396,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.961,0.01,0,0,0,0,0,0.008,1.233,0.026,0.007,0.014,0,155.925,3511.082 -2103,-0.9308,0.449944,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.896,0.01,0,0,0,0,0,0.007,1.172,0.024,0.006,0.013,0,155.925,3511.082 -2104,-0.9308,0.429492,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.834,0.009,0,0,0,0,0,0.006,1.113,0.022,0.006,0.012,0,155.925,3511.082 -2105,-0.9308,0.40904,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.773,0.008,0,0,0,0,0,0.006,1.057,0.02,0.005,0.012,0,155.925,3511.082 -2106,-0.9308,0.388588,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.715,0.007,0,0,0,0,0,0.005,1.005,0.019,0.005,0.011,0,155.925,3511.082 -2107,-0.9308,0.368136,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.658,0.007,0,0,0,0,0,0.004,0.954,0.017,0.005,0.011,0,155.925,3511.082 -2108,-0.9308,0.347684,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.603,0.006,0,0,0,0,0,0.004,0.907,0.016,0.004,0.01,0,155.925,3511.082 -2109,-0.9308,0.327232,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.55,0.006,0,0,0,0,0,0.003,0.861,0.014,0.004,0.009,0,155.925,3511.082 -2110,-0.9308,0.30678,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.499,0.005,0,0,0,0,0,0.003,0.818,0.013,0.004,0.009,0,155.925,3511.082 -2111,-0.9308,0.286328,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.45,0.005,0,0,0,0,0,0.002,0.777,0.012,0.003,0.009,0,155.925,3511.082 -2112,-0.9308,0.265876,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.402,0.004,0,0,0,0,0,0.002,0.738,0.011,0.003,0.008,0,155.925,3511.082 -2113,-0.9308,0.245424,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.356,0.004,0,0,0,0,0,0.002,0.702,0.01,0.003,0.008,0,155.925,3511.082 -2114,-0.9308,0.224972,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.311,0.004,0,0,0,0,0,0.002,0.666,0.01,0.003,0.007,0,155.925,3511.082 -2115,-0.9308,0.20452,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.268,0.003,0,0,0,0,0,0.001,0.633,0.009,0.003,0.007,0,155.925,3511.082 -2116,-0.9308,0.184068,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.226,0.003,0,0,0,0,0,0.001,0.601,0.008,0.002,0.007,0,155.925,3511.082 -2117,-0.9308,0.163616,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.185,0.003,0,0,0,0,0,0.001,0.571,0.007,0.002,0.006,0,155.925,3511.082 -2118,-0.9308,0.143164,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.146,0.003,0,0,0,0,0,0.001,0.543,0.007,0.002,0.006,0,155.925,3511.082 -2119,-0.9308,0.122712,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.108,0.002,0,0,0,0,0,0.001,0.516,0.006,0.002,0.006,0,155.925,3511.082 -2120,-0.9308,0.10226,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.072,0.002,0,0,0,0,0,0.001,0.49,0.006,0.002,0.005,0,155.925,3511.082 -2121,-0.9308,0.081808,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.036,0.002,0,0,0,0,0,0.001,0.465,0.005,0.002,0.005,0,155.925,3511.082 -2122,-0.9308,0.061356,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.002,0.002,0,0,0,0,0,0.001,0.442,0.005,0.002,0.005,0,155.925,3511.082 -2123,-0.9308,0.040904,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.969,0.002,0,0,0,0,0,0,0.42,0.005,0.001,0.005,0,155.925,3511.082 -2124,-0.9308,0.020452,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.937,0.001,0,0,0,0,0,0,0.399,0.004,0.001,0.004,0,155.925,3511.082 -2125,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.906,0.001,0,0,0,0,0,0,0.379,0.004,0.001,0.004,0,155.925,3511.082 -2126,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.876,0.001,0,0,0,0,0,0,0.36,0.004,0.001,0.004,0,155.925,3511.082 -2127,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.847,0.001,0,0,0,0,0,0,0.342,0.003,0.001,0.004,0,155.925,3511.082 -2128,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.819,0.001,0,0,0,0,0,0,0.325,0.003,0.001,0.004,0,155.925,3511.082 -2129,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.792,0.001,0,0,0,0,0,0,0.309,0.003,0.001,0.003,0,155.925,3511.082 -2130,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.766,0.001,0,0,0,0,0,0,0.293,0.003,0.001,0.003,0,155.925,3511.082 -2131,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.741,0.001,0,0,0,0,0,0,0.279,0.002,0.001,0.003,0,155.925,3511.082 -2132,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.717,0.001,0,0,0,0,0,0,0.265,0.002,0.001,0.003,0,155.925,3511.082 -2133,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.693,0.001,0,0,0,0,0,0,0.251,0.002,0.001,0.003,0,155.925,3511.082 -2134,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.67,0.001,0,0,0,0,0,0,0.239,0.002,0.001,0.003,0,155.925,3511.082 -2135,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.648,0.001,0,0,0,0,0,0,0.227,0.002,0.001,0.002,0,155.925,3511.082 -2136,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.627,0.001,0,0,0,0,0,0,0.216,0.002,0.001,0.002,0,155.925,3511.082 -2137,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.606,0,0,0,0,0,0,0,0.205,0.001,0.001,0.002,0,155.925,3511.082 -2138,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.586,0,0,0,0,0,0,0,0.195,0.001,0,0.002,0,155.925,3511.082 -2139,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.567,0,0,0,0,0,0,0,0.185,0.001,0,0.002,0,155.925,3511.082 -2140,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.548,0,0,0,0,0,0,0,0.176,0.001,0,0.002,0,155.925,3511.082 -2141,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.53,0,0,0,0,0,0,0,0.167,0.001,0,0.002,0,155.925,3511.082 -2142,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.512,0,0,0,0,0,0,0,0.159,0.001,0,0.002,0,155.925,3511.082 -2143,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.495,0,0,0,0,0,0,0,0.151,0.001,0,0.002,0,155.925,3511.082 -2144,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.479,0,0,0,0,0,0,0,0.143,0.001,0,0.002,0,155.925,3511.082 -2145,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.463,0,0,0,0,0,0,0,0.136,0.001,0,0.001,0,155.925,3511.082 -2146,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.448,0,0,0,0,0,0,0,0.129,0.001,0,0.001,0,155.925,3511.082 -2147,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.433,0,0,0,0,0,0,0,0.123,0.001,0,0.001,0,155.925,3511.082 -2148,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.419,0,0,0,0,0,0,0,0.117,0.001,0,0.001,0,155.925,3511.082 -2149,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.405,0,0,0,0,0,0,0,0.111,0.001,0,0.001,0,155.925,3511.082 -2150,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.392,0,0,0,0,0,0,0,0.105,0,0,0.001,0,155.925,3511.082 -2151,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.379,0,0,0,0,0,0,0,0.1,0,0,0.001,0,155.925,3511.082 -2152,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.366,0,0,0,0,0,0,0,0.095,0,0,0.001,0,155.925,3511.082 -2153,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.354,0,0,0,0,0,0,0,0.09,0,0,0.001,0,155.925,3511.082 -2154,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.342,0,0,0,0,0,0,0,0.086,0,0,0.001,0,155.925,3511.082 -2155,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.331,0,0,0,0,0,0,0,0.081,0,0,0.001,0,155.925,3511.082 -2156,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.32,0,0,0,0,0,0,0,0.077,0,0,0.001,0,155.925,3511.082 -2157,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.31,0,0,0,0,0,0,0,0.073,0,0,0.001,0,155.925,3511.082 -2158,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.299,0,0,0,0,0,0,0,0.07,0,0,0.001,0,155.925,3511.082 -2159,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.29,0,0,0,0,0,0,0,0.066,0,0,0.001,0,155.925,3511.082 -2160,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.28,0,0,0,0,0,0,0,0.063,0,0,0.001,0,155.925,3511.082 -2161,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.271,0,0,0,0,0,0,0,0.06,0,0,0.001,0,155.925,3511.082 -2162,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.262,0,0,0,0,0,0,0,0.057,0,0,0.001,0,155.925,3511.082 -2163,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.253,0,0,0,0,0,0,0,0.054,0,0,0.001,0,155.925,3511.082 -2164,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.245,0,0,0,0,0,0,0,0.051,0,0,0.001,0,155.925,3511.082 -2165,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.237,0,0,0,0,0,0,0,0.049,0,0,0.001,0,155.925,3511.082 -2166,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.229,0,0,0,0,0,0,0,0.046,0,0,0.001,0,155.925,3511.082 -2167,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.221,0,0,0,0,0,0,0,0.044,0,0,0,0,155.925,3511.082 -2168,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.214,0,0,0,0,0,0,0,0.042,0,0,0,0,155.925,3511.082 -2169,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.207,0,0,0,0,0,0,0,0.04,0,0,0,0,155.925,3511.082 -2170,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.2,0,0,0,0,0,0,0,0.038,0,0,0,0,155.925,3511.082 -2171,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.194,0,0,0,0,0,0,0,0.036,0,0,0,0,155.925,3511.082 -2172,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.187,0,0,0,0,0,0,0,0.034,0,0,0,0,155.925,3511.082 -2173,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.181,0,0,0,0,0,0,0,0.032,0,0,0,0,155.925,3511.082 -2174,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.175,0,0,0,0,0,0,0,0.031,0,0,0,0,155.925,3511.082 -2175,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.169,0,0,0,0,0,0,0,0.029,0,0,0,0,155.925,3511.082 -2176,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.164,0,0,0,0,0,0,0,0.028,0,0,0,0,155.925,3511.082 -2177,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.158,0,0,0,0,0,0,0,0.026,0,0,0,0,155.925,3511.082 -2178,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.153,0,0,0,0,0,0,0,0.025,0,0,0,0,155.925,3511.082 -2179,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.148,0,0,0,0,0,0,0,0.024,0,0,0,0,155.925,3511.082 -2180,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.143,0,0,0,0,0,0,0,0.023,0,0,0,0,155.925,3511.082 -2181,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.138,0,0,0,0,0,0,0,0.021,0,0,0,0,155.925,3511.082 -2182,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.134,0,0,0,0,0,0,0,0.02,0,0,0,0,155.925,3511.082 -2183,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.129,0,0,0,0,0,0,0,0.019,0,0,0,0,155.925,3511.082 -2184,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.125,0,0,0,0,0,0,0,0.018,0,0,0,0,155.925,3511.082 -2185,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.121,0,0,0,0,0,0,0,0.017,0,0,0,0,155.925,3511.082 -2186,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.117,0,0,0,0,0,0,0,0.017,0,0,0,0,155.925,3511.082 -2187,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.113,0,0,0,0,0,0,0,0.016,0,0,0,0,155.925,3511.082 -2188,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.109,0,0,0,0,0,0,0,0.015,0,0,0,0,155.925,3511.082 -2189,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.106,0,0,0,0,0,0,0,0.014,0,0,0,0,155.925,3511.082 -2190,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.102,0,0,0,0,0,0,0,0.014,0,0,0,0,155.925,3511.082 -2191,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.099,0,0,0,0,0,0,0,0.013,0,0,0,0,155.925,3511.082 -2192,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.096,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082 -2193,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.093,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082 -2194,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.089,0,0,0,0,0,0,0,0.011,0,0,0,0,155.925,3511.082 -2195,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.087,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082 -2196,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.084,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082 -2197,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.081,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082 -2198,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.078,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082 -2199,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.076,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082 -2200,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.073,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082 -2201,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.071,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082 -2202,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.068,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082 -2203,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.066,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082 -2204,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.064,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082 -2205,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.062,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082 -2206,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.06,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082 -2207,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.058,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082 -2208,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.056,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 -2209,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.054,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 -2210,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.052,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 -2211,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.051,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 -2212,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.049,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2213,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.047,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2214,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.046,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2215,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.044,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2216,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.043,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2217,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.041,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2218,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.04,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2219,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.039,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2220,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.037,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2221,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.036,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2222,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.035,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2223,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.034,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2224,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.033,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2225,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.032,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2226,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.031,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2227,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.03,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2228,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.029,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2229,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.028,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2230,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.027,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2231,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2232,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2233,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.024,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2234,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2235,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2236,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.022,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2237,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.021,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2238,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2239,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2240,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.019,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2241,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2242,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2243,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2244,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2245,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2246,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2247,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2248,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2249,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2250,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2251,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2252,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2253,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2254,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2255,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2256,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2257,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2258,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2259,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2260,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2261,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2262,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2263,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2264,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2265,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2266,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2267,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2268,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2269,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2270,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2271,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2272,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2273,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2274,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2275,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2276,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2277,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2278,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2279,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2280,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2281,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2282,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2283,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2284,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2285,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2286,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2287,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2288,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2289,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2290,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2291,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2292,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2293,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2294,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2295,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2296,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2297,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2298,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2299,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2300,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2301,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2302,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2303,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2304,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2305,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2306,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2307,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2308,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2309,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2310,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2311,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2312,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2313,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2314,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2315,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2316,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2317,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2318,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2319,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2320,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2321,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2322,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2323,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2324,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2325,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2326,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2327,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2328,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2329,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2330,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2331,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2332,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2333,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2334,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2335,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2336,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2337,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2338,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2339,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2340,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2341,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2342,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2343,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2344,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2345,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2346,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2347,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2348,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2349,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2350,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2351,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2352,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2353,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2354,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2355,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2356,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2357,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2358,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2359,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2360,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2361,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2362,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2363,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2364,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2365,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2366,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2367,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2368,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2369,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2370,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2371,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2372,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2373,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2374,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2375,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2376,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2377,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2378,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2379,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2380,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2381,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2382,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2383,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2384,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2385,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2386,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2387,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2388,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2389,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2390,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2391,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2392,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2393,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2394,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2395,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2396,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2397,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2398,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2399,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2400,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2401,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2402,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2403,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2404,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2405,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2406,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2407,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2408,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2409,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2410,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2411,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2412,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2413,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2414,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2415,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2416,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2417,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2418,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2419,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2420,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2421,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2422,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2423,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2424,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2425,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2426,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2427,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2428,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2429,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2430,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2431,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2432,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2433,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2434,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2435,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2436,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2437,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2438,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2439,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2440,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2441,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2442,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2443,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2444,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2445,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2446,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2447,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2448,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2449,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2450,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2451,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2452,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2453,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2454,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2455,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2456,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2457,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2458,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2459,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2460,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2461,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2462,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2463,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2464,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2465,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2466,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2467,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2468,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2469,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2470,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2471,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2472,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2473,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2474,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2475,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2476,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2477,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2478,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2479,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2480,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2481,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2482,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2483,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2484,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2485,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2486,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2487,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2488,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2489,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2490,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2491,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2492,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2493,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2494,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2495,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2496,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2497,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2498,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2499,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2500,-0.9308,0,142.0527,5.2823,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,1.092,0.0857,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 diff --git a/inst/shinyApp/www/input/emissions/RCP26_emissions.csv b/inst/shinyApp/www/input/emissions/RCP26_emissions.csv deleted file mode 100644 index 7ae66a0..0000000 --- a/inst/shinyApp/www/input/emissions/RCP26_emissions.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP 26 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,240.392,53.81,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,251.146,52.018,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,261.9,50.225,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,272.654,48.433,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.1427,1.1676,320.0614,7.715,56.545,56545,1055.3681,215.8001,38.883,8.3258,36.4361,42.2406,12.2669,3.1051,0.4427,10.5529,12.3831,3.8803,16.2358,121.0746,14.293,5.6938,31.7215,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,296.002,48.231,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.3136,1.14,324.2127,7.7459,56.3678,56367.8,1049.2141,216.1376,38.97,8.4003,36.4792,42.5977,12.9284,3.5603,0.4492,10.2947,13.7731,4.5246,18.7259,129.6223,16.1321,6.5045,36.5545,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,308.596,49.821,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.4828667,1.1121667,328.34943,7.7766333,56.184533,56184.533,1043.0664,216.4749,39.054433,8.4745333,36.520033,42.9544,13.5912,4.0149667,0.45503333,10.037233,15.162767,5.1677,21.2435,138.76247,17.9599,7.3294667,41.387467,6.6085333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,321.19,51.412,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.6521333,1.0843333,332.48617,7.8073667,56.001267,56001.267,1036.9188,216.8122,39.138867,8.5487667,36.560867,43.3111,14.254,4.4696333,0.46086667,9.7797667,16.552433,5.8108,23.7611,147.90263,19.7877,8.1544333,46.220433,6.6157667,44.442,40.334,0.754,0.029,0.248,39,10.874,333.784,53.002,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.8214,1.0565,336.6229,7.8381,55.818,55818,1030.7711,217.1495,39.2233,8.623,36.6017,43.6678,14.9168,4.9243,0.4667,9.5223,17.9421,6.4539,26.2787,157.0428,21.6155,8.9794,51.0534,6.623,42.976,36.906,0.377,0.018,0.186,32.5,7.266,346.378,54.593,36.801,5.23,0,1.521,0.175,167.857,3511.082 -2011,8.86803,1.04813,328.6374,7.79063,54.65749,54657.49,1025.9587,216.7636,38.96192,8.5989,36.61719,44.07346,14.6468,4.9717,0.43848,8.68531,22.21208,6.53107,32.58573,158.72642,25.89136,8.24224,49.18021,6.18511,41.557,33.769,0.189,0.011,0.14,26,7.266,344.714,54.867,35.314,4.864,0,1.445,0.156,167.857,3511.082 -2012,8.91466,1.03976,320.6519,7.74316,53.49698,53496.98,1021.1462,216.3777,38.70054,8.5748,36.63268,44.47912,14.3768,5.0191,0.41026,7.84832,26.48206,6.60824,38.89276,160.41004,30.16722,7.50508,47.30702,5.74722,40.186,30.898,0.094,0.006,0.105,19.5,7.266,343.051,55.141,33.625,4.524,0,1.373,0.139,167.857,3511.082 -2013,8.96129,1.03139,312.6664,7.69569,52.33647,52336.47,1016.3338,215.9918,38.43916,8.5507,36.64817,44.88478,14.1068,5.0665,0.38204,7.01133,30.75204,6.68541,45.19979,162.09366,34.44308,6.76792,45.43383,5.30933,38.86,28.272,0.047,0.004,0.079,13,7.266,341.387,55.414,31.75,4.207,0,1.304,0.124,167.857,3511.082 -2014,9.00792,1.02302,304.6809,7.64822,51.17596,51175.96,1011.5213,215.6059,38.17778,8.5266,36.66366,45.29044,13.8368,5.1139,0.35382,6.17434,35.02202,6.76258,51.50682,163.77728,38.71894,6.03076,43.56064,4.87144,37.578,25.869,0.024,0.002,0.059,6.5,7.266,339.724,55.688,29.705,3.913,0,1.239,0.11,167.857,3511.082 -2015,9.05455,1.01465,296.6954,7.60075,50.01545,50015.45,1006.7089,215.22,37.9164,8.5025,36.67915,45.6961,13.5668,5.1613,0.3256,5.33735,39.292,6.83975,57.81385,165.4609,42.9948,5.2936,41.68745,4.43355,36.338,23.67,0.012,0.001,0.044,0,0,338.06,55.962,27.502,3.639,0,1.177,0.098,155.925,3511.082 -2016,9.10118,1.00628,288.7099,7.55328,48.85494,48854.94,1001.8965,214.8341,37.65502,8.4784,36.69464,46.10176,13.2968,5.2087,0.29738,4.50036,43.56198,6.91692,64.12088,167.14452,47.27066,4.55644,39.81426,3.99566,35.138,21.658,0.006,0.001,0.033,0,0,336.397,56.236,25.476,3.384,0,1.118,0.087,155.925,3511.082 -2017,9.14781,0.99791,280.7244,7.50581,47.69443,47694.43,997.08402,214.4482,37.39364,8.4543,36.71013,46.50742,13.0268,5.2561,0.26916,3.66337,47.83196,6.99409,70.42791,168.82814,51.54652,3.81928,37.94107,3.55777,33.979,19.817,0.003,0,0.025,0,0,334.733,56.51,23.611,3.147,0,1.062,0.078,155.925,3511.082 -2018,9.19444,0.98954,272.7389,7.45834,46.53392,46533.92,992.27158,214.0623,37.13226,8.4302,36.72562,46.91308,12.7568,5.3035,0.24094,2.82638,52.10194,7.07126,76.73494,170.51176,55.82238,3.08212,36.06788,3.11988,32.858,18.133,0.001,0,0.019,0,0,333.07,56.784,21.896,2.927,0,1.009,0.069,155.925,3511.082 -2019,9.24107,0.98117,264.7534,7.41087,45.37341,45373.41,987.45914,213.6764,36.87088,8.4061,36.74111,47.31874,12.4868,5.3509,0.21272,1.98939,56.37192,7.14843,83.04197,172.19538,60.09824,2.34496,34.19469,2.68199,31.773,16.591,0.001,0,0.014,0,0,331.406,57.058,20.318,2.722,0,0.959,0.061,155.925,3511.082 -2020,9.2877,0.9728,256.7679,7.3634,44.2129,44212.9,982.6467,213.2905,36.6095,8.382,36.7566,47.7244,12.2168,5.3983,0.1845,1.1524,60.6419,7.2256,89.349,173.879,64.3741,1.6078,32.3215,2.2441,30.725,15.181,0,0,0.01,0,0,329.743,57.332,18.867,2.531,0,0.911,0.055,155.925,3511.082 -2021,9.07462,0.95441,254.65433,7.35756,42.75221,42752.21,976.97887,212.02164,36.10504,8.23806,36.62955,48.0643,11.66461,5.04704,0.17723,1.1063,61.78125,7.31559,91.30401,175.90966,65.49222,1.52656,29.40678,2.21491,29.711,13.891,0,0,0.008,0,0,313.814,56.425,17.531,2.354,0,0.865,0.049,155.925,3511.082 -2022,8.86154,0.93602,252.54076,7.35172,41.29152,41291.52,971.31104,210.75278,35.60058,8.09412,36.5025,48.4042,11.11242,4.69578,0.16996,1.0602,62.9206,7.40558,93.25902,177.94032,66.61034,1.44532,26.49206,2.18572,28.73,12.71,0,0,0.006,0,0,297.886,55.519,16.302,2.189,0,0.822,0.043,155.925,3511.082 -2023,8.64846,0.91763,250.42719,7.34588,39.83083,39830.83,965.64321,209.48392,35.09612,7.95018,36.37545,48.7441,10.56023,4.34452,0.16269,1.0141,64.05995,7.49557,95.21403,179.97098,67.72846,1.36408,23.57734,2.15653,27.782,11.63,0,0,0.004,0,0,281.957,54.612,15.172,2.036,0,0.781,0.039,155.925,3511.082 -2024,8.43538,0.89924,248.31362,7.34004,38.37014,38370.14,959.97538,208.21506,34.59166,7.80624,36.2484,49.084,10.00804,3.99326,0.15542,0.968,65.1993,7.58556,97.16904,182.00164,68.84658,1.28284,20.66262,2.12734,26.865,10.641,0,0,0.003,0,0,266.029,53.705,14.132,1.894,0,0.742,0.034,155.925,3511.082 -2025,8.2223,0.88085,246.20005,7.3342,36.90945,36909.45,954.30755,206.9462,34.0872,7.6623,36.12135,49.4239,9.45585,3.642,0.14815,0.9219,66.33865,7.67555,99.12405,184.0323,69.9647,1.2016,17.7479,2.09815,25.979,9.737,0,0,0.002,0,0,250.101,52.798,13.175,1.761,0,0.705,0.031,155.925,3511.082 -2026,8.00922,0.86246,244.08648,7.32836,35.44876,35448.76,948.63972,205.67734,33.58274,7.51836,35.9943,49.7638,8.90366,3.29074,0.14088,0.8758,67.478,7.76554,101.07906,186.06296,71.08282,1.12036,14.83318,2.06896,25.122,8.909,0,0,0.002,0,0,234.172,51.892,12.295,1.638,0,0.669,0.027,155.925,3511.082 -2027,7.79614,0.84407,241.97291,7.32252,33.98807,33988.07,942.97189,204.40848,33.07828,7.37442,35.86725,50.1037,8.35147,2.93948,0.13361,0.8297,68.61735,7.85553,103.03407,188.09362,72.20094,1.03912,11.91846,2.03977,24.293,8.152,0,0,0.001,0,0,218.244,50.985,11.485,1.523,0,0.636,0.024,155.925,3511.082 -2028,7.58306,0.82568,239.85934,7.31668,32.52738,32527.38,937.30406,203.13962,32.57382,7.23048,35.7402,50.4436,7.79928,2.58822,0.12634,0.7836,69.7567,7.94552,104.98908,190.12428,73.31906,0.95788,9.00374,2.01058,23.491,7.459,0,0,0.001,0,0,202.315,50.078,10.74,1.417,0,0.604,0.022,155.925,3511.082 -2029,7.36998,0.80729,237.74577,7.31084,31.06669,31066.69,931.63623,201.87076,32.06936,7.08654,35.61315,50.7835,7.24709,2.23696,0.11907,0.7375,70.89605,8.03551,106.94409,192.15494,74.43718,0.87664,6.08902,1.98139,22.716,6.825,0,0,0.001,0,0,186.387,49.172,10.055,1.317,0,0.574,0.019,155.925,3511.082 -2030,7.1569,0.7889,235.6322,7.305,29.606,29606,925.9684,200.6019,31.5649,6.9426,35.4861,51.1234,6.6949,1.8857,0.1118,0.6914,72.0354,8.1255,108.8991,194.1856,75.5553,0.7954,3.1743,1.9522,21.966,6.245,0,0,0.001,0,0,170.458,48.265,9.424,1.225,0,0.545,0.017,155.925,3511.082 -2031,6.8947,0.75891,234.57183,7.29221,28.63446,28634.46,921.1656,199.76692,31.40904,6.81693,35.13889,51.34308,6.53063,1.80589,0.1119,0.66362,72.90303,8.24943,110.50533,196.04996,76.3722,0.80448,2.85687,1.91374,21.241,5.714,0,0,0,0,0,158.161,46.405,8.826,1.139,0,0.518,0.015,155.925,3511.082 -2032,6.6325,0.72892,233.51146,7.27942,27.66292,27662.92,916.3628,198.93194,31.25318,6.69126,34.79168,51.56276,6.36636,1.72608,0.112,0.63584,73.77066,8.37336,112.11156,197.91432,77.1891,0.81356,2.53944,1.87528,20.54,5.228,0,0,0,0,0,145.863,44.545,8.259,1.06,0,0.492,0.013,155.925,3511.082 -2033,6.3703,0.69893,232.45109,7.26663,26.69138,26691.38,911.56,198.09696,31.09732,6.56559,34.44447,51.78244,6.20209,1.64627,0.1121,0.60806,74.63829,8.49729,113.71779,199.77868,78.006,0.82264,2.22201,1.83682,19.862,4.784,0,0,0,0,0,133.566,42.685,7.72,0.985,0,0.467,0.012,155.925,3511.082 -2034,6.1081,0.66894,231.39072,7.25384,25.71984,25719.84,906.7572,197.26198,30.94146,6.43992,34.09726,52.00212,6.03782,1.56646,0.1122,0.58028,75.50592,8.62122,115.32402,201.64304,78.8229,0.83172,1.90458,1.79836,19.207,4.377,0,0,0,0,0,121.269,40.825,7.207,0.916,0,0.444,0.011,155.925,3511.082 -2035,5.8459,0.63895,230.33035,7.24105,24.7483,24748.3,901.9544,196.427,30.7856,6.31425,33.75005,52.2218,5.87355,1.48665,0.1123,0.5525,76.37355,8.74515,116.93025,203.5074,79.6398,0.8408,1.58715,1.7599,18.573,4.005,0,0,0,0,0,108.971,38.965,6.717,0.852,0,0.422,0.01,155.925,3511.082 -2036,5.5837,0.60896,229.26998,7.22826,23.77676,23776.76,897.1516,195.59202,30.62974,6.18858,33.40284,52.44148,5.70928,1.40684,0.1124,0.52472,77.24118,8.86908,118.53648,205.37176,80.4567,0.84988,1.26972,1.72144,17.96,3.665,0,0,0,0,0,96.674,37.105,6.249,0.793,0,0.401,0.008,155.925,3511.082 -2037,5.3215,0.57897,228.20961,7.21547,22.80522,22805.22,892.3488,194.75704,30.47388,6.06291,33.05563,52.66116,5.54501,1.32703,0.1125,0.49694,78.10881,8.99301,120.14271,207.23612,81.2736,0.85896,0.95229,1.68298,17.368,3.353,0,0,0,0,0,84.377,35.244,5.801,0.737,0,0.381,0.008,155.925,3511.082 -2038,5.0593,0.54898,227.14924,7.20268,21.83368,21833.68,887.546,193.92206,30.31802,5.93724,32.70842,52.88084,5.38074,1.24722,0.1126,0.46916,78.97644,9.11694,121.74894,209.10048,82.0905,0.86804,0.63486,1.64452,16.794,3.068,0,0,0,0,0,72.079,33.384,5.372,0.686,0,0.362,0.007,155.925,3511.082 -2039,4.7971,0.51899,226.08887,7.18989,20.86214,20862.14,882.7432,193.08708,30.16216,5.81157,32.36121,53.10052,5.21647,1.16741,0.1127,0.44138,79.84407,9.24087,123.35517,210.96484,82.9074,0.87712,0.31743,1.60606,16.24,2.807,0,0,0,0,0,59.782,31.524,4.96,0.638,0,0.344,0.006,155.925,3511.082 -2040,4.5349,0.489,225.0285,7.1771,19.8906,19890.6,877.9404,192.2521,30.0063,5.6859,32.014,53.3202,5.0522,1.0876,0.1128,0.4136,80.7117,9.3648,124.9614,212.8292,83.7243,0.8862,0,1.5676,15.704,2.569,0,0,0,0,0,47.485,29.664,4.563,0.593,0,0.326,0.005,155.925,3511.082 -2041,4.39997,0.46022,221.45546,7.08404,19.45899,19458.99,872.16763,190.878,29.89599,5.61136,31.80989,53.54175,4.81083,1.02596,0.11238,0.39687,80.10127,9.53783,124.37894,211.38138,83.06078,0.82716,0,1.47407,15.186,2.35,0,0,0,0,0,43.916,28.474,4.198,0.551,0,0.31,0.005,155.925,3511.082 -2042,4.26504,0.43144,217.88242,6.99098,19.02738,19027.38,866.39486,189.5039,29.78568,5.53682,31.60578,53.7633,4.56946,0.96432,0.11196,0.38014,79.49084,9.71086,123.79648,209.93356,82.39726,0.76812,0,1.38054,14.685,2.151,0,0,0,0,0,40.347,27.284,3.862,0.513,0,0.295,0.004,155.925,3511.082 -2043,4.13011,0.40266,214.30938,6.89792,18.59577,18595.77,860.62209,188.1298,29.67537,5.46228,31.40167,53.98485,4.32809,0.90268,0.11154,0.36341,78.88041,9.88389,123.21402,208.48574,81.73374,0.70908,0,1.28701,14.2,1.968,0,0,0,0,0,36.778,26.093,3.553,0.477,0,0.28,0.004,155.925,3511.082 -2044,3.99518,0.37388,210.73634,6.80486,18.16416,18164.16,854.84932,186.7557,29.56506,5.38774,31.19756,54.2064,4.08672,0.84104,0.11112,0.34668,78.26998,10.05692,122.63156,207.03792,81.07022,0.65004,0,1.19348,13.732,1.801,0,0,0,0,0,33.209,24.903,3.269,0.444,0,0.266,0.003,155.925,3511.082 -2045,3.86025,0.3451,207.1633,6.7118,17.73255,17732.55,849.07655,185.3816,29.45475,5.3132,30.99345,54.42795,3.84535,0.7794,0.1107,0.32995,77.65955,10.22995,122.0491,205.5901,80.4067,0.591,0,1.09995,13.279,1.648,0,0,0,0,0,29.64,23.713,3.007,0.413,0,0.253,0.003,155.925,3511.082 -2046,3.72532,0.31632,203.59026,6.61874,17.30094,17300.94,843.30378,184.0075,29.34444,5.23866,30.78934,54.6495,3.60398,0.71776,0.11028,0.31322,77.04912,10.40298,121.46664,204.14228,79.74318,0.53196,0,1.00642,12.84,1.507,0,0,0,0,0,26.072,22.522,2.767,0.384,0,0.24,0.003,155.925,3511.082 -2047,3.59039,0.28754,200.01722,6.52568,16.86933,16869.33,837.53101,182.6334,29.23413,5.16412,30.58523,54.87105,3.36261,0.65612,0.10986,0.29649,76.43869,10.57601,120.88418,202.69446,79.07966,0.47292,0,0.91289,12.417,1.379,0,0,0,0,0,22.503,21.332,2.545,0.357,0,0.228,0.002,155.925,3511.082 -2048,3.45546,0.25876,196.44418,6.43262,16.43772,16437.72,831.75824,181.2593,29.12382,5.08958,30.38112,55.0926,3.12124,0.59448,0.10944,0.27976,75.82826,10.74904,120.30172,201.24664,78.41614,0.41388,0,0.81936,12.007,1.262,0,0,0,0,0,18.934,20.142,2.342,0.332,0,0.217,0.002,155.925,3511.082 -2049,3.32053,0.22998,192.87114,6.33956,16.00611,16006.11,825.98547,179.8852,29.01351,5.01504,30.17701,55.31415,2.87987,0.53284,0.10902,0.26303,75.21783,10.92207,119.71926,199.79882,77.75262,0.35484,0,0.72583,11.611,1.155,0,0,0,0,0,15.365,18.951,2.154,0.309,0,0.206,0.002,155.925,3511.082 -2050,3.1856,0.2012,189.2981,6.2465,15.5745,15574.5,820.2127,178.5111,28.9032,4.9405,29.9729,55.5357,2.6385,0.4712,0.1086,0.2463,74.6074,11.0951,119.1368,198.351,77.0891,0.2958,0,0.6323,11.227,1.057,0,0,0,0,0,11.796,17.761,1.982,0.287,0,0.195,0.002,155.925,3511.082 -2051,3.00896,0.2426,187.01509,6.19366,15.38703,15387.03,816.11031,177.30075,28.73251,4.88943,29.9464,55.83387,2.59225,0.45634,0.10848,0.23542,75.55522,11.09689,121.10282,201.15158,78.03953,0.28044,0,0.61892,10.857,0.967,0,0,0,0,0,10.91,17.048,1.824,0.267,0,0.186,0.001,155.925,3511.082 -2052,2.83232,0.284,184.73208,6.14082,15.19956,15199.56,812.00792,176.0904,28.56182,4.83836,29.9199,56.13204,2.546,0.44148,0.10836,0.22454,76.50304,11.09868,123.06884,203.95216,78.98996,0.26508,0,0.60554,10.499,0.885,0,0,0,0,0,10.023,16.336,1.678,0.248,0,0.176,0.001,155.925,3511.082 -2053,2.65568,0.3254,182.44907,6.08798,15.01209,15012.09,807.90553,174.88005,28.39113,4.78729,29.8934,56.43021,2.49975,0.42662,0.10824,0.21366,77.45086,11.10047,125.03486,206.75274,79.94039,0.24972,0,0.59216,10.152,0.809,0,0,0,0,0,9.137,15.623,1.543,0.231,0,0.168,0.001,155.925,3511.082 -2054,2.47904,0.3668,180.16606,6.03514,14.82462,14824.62,803.80314,173.6697,28.22044,4.73622,29.8669,56.72838,2.4535,0.41176,0.10812,0.20278,78.39868,11.10226,127.00088,209.55332,80.89082,0.23436,0,0.57878,9.817,0.741,0,0,0,0,0,8.25,14.91,1.42,0.215,0,0.159,0.001,155.925,3511.082 -2055,2.3024,0.4082,177.88305,5.9823,14.63715,14637.15,799.70075,172.45935,28.04975,4.68515,29.8404,57.02655,2.40725,0.3969,0.108,0.1919,79.3465,11.10405,128.9669,212.3539,81.84125,0.219,0,0.5654,9.493,0.678,0,0,0,0,0,7.363,14.198,1.306,0.2,0,0.151,0.001,155.925,3511.082 -2056,2.12576,0.4496,175.60004,5.92946,14.44968,14449.68,795.59836,171.249,27.87906,4.63408,29.8139,57.32472,2.361,0.38204,0.10788,0.18102,80.29432,11.10584,130.93292,215.15448,82.79168,0.20364,0,0.55202,9.18,0.62,0,0,0,0,0,6.477,13.485,1.202,0.186,0,0.144,0.001,155.925,3511.082 -2057,1.94912,0.491,173.31703,5.87662,14.26221,14262.21,791.49597,170.03865,27.70837,4.58301,29.7874,57.62289,2.31475,0.36718,0.10776,0.17014,81.24214,11.10763,132.89894,217.95506,83.74211,0.18828,0,0.53864,8.877,0.567,0,0,0,0,0,5.59,12.772,1.106,0.173,0,0.136,0.001,155.925,3511.082 -2058,1.77248,0.5324,171.03402,5.82378,14.07474,14074.74,787.39358,168.8283,27.53768,4.53194,29.7609,57.92106,2.2685,0.35232,0.10764,0.15926,82.18996,11.10942,134.86496,220.75564,84.69254,0.17292,0,0.52526,8.584,0.519,0,0,0,0,0,4.704,12.06,1.017,0.161,0,0.13,0.001,155.925,3511.082 -2059,1.59584,0.5738,168.75101,5.77094,13.88727,13887.27,783.29119,167.61795,27.36699,4.48087,29.7344,58.21923,2.22225,0.33746,0.10752,0.14838,83.13778,11.11121,136.83098,223.55622,85.64297,0.15756,0,0.51188,8.301,0.475,0,0,0,0,0,3.817,11.347,0.936,0.149,0,0.123,0.001,155.925,3511.082 -2060,1.4192,0.6152,166.468,5.7181,13.6998,13699.8,779.1888,166.4076,27.1963,4.4298,29.7079,58.5174,2.176,0.3226,0.1074,0.1375,84.0856,11.113,138.797,226.3568,86.5934,0.1422,0,0.4985,8.027,0.435,0,0,0,0,0,2.93,10.634,0.861,0.139,0,0.117,0.001,155.925,3511.082 -2061,1.28885,0.6075,165.95204,5.7204,13.51644,13516.44,772.51907,164.79686,26.8771,4.38112,29.54327,58.80981,2.17216,0.31644,0.10732,0.13105,85.06506,11.10641,140.83553,229.30577,87.48473,0.14112,0,0.49048,7.762,0.398,0,0,0,0,0,2.71,10.207,0.792,0.129,0,0.111,0,155.925,3511.082 -2062,1.1585,0.5998,165.43608,5.7227,13.33308,13333.08,765.84934,163.18612,26.5579,4.33244,29.37864,59.10222,2.16832,0.31028,0.10724,0.1246,86.04452,11.09982,142.87406,232.25474,88.37606,0.14004,0,0.48246,7.506,0.364,0,0,0,0,0,2.49,9.781,0.729,0.12,0,0.106,0,155.925,3511.082 -2063,1.02815,0.5921,164.92012,5.725,13.14972,13149.72,759.17961,161.57538,26.2387,4.28376,29.21401,59.39463,2.16448,0.30412,0.10716,0.11815,87.02398,11.09323,144.91259,235.20371,89.26739,0.13896,0,0.47444,7.258,0.333,0,0,0,0,0,2.27,9.354,0.67,0.112,0,0.1,0,155.925,3511.082 -2064,0.8978,0.5844,164.40416,5.7273,12.96636,12966.36,752.50988,159.96464,25.9195,4.23508,29.04938,59.68704,2.16064,0.29796,0.10708,0.1117,88.00344,11.08664,146.95112,238.15268,90.15872,0.13788,0,0.46642,7.019,0.305,0,0,0,0,0,2.049,8.927,0.617,0.104,0,0.095,0,155.925,3511.082 -2065,0.76745,0.5767,163.8882,5.7296,12.783,12783,745.84015,158.3539,25.6003,4.1864,28.88475,59.97945,2.1568,0.2918,0.107,0.10525,88.9829,11.08005,148.98965,241.10165,91.05005,0.1368,0,0.4584,6.787,0.279,0,0,0,0,0,1.829,8.501,0.567,0.097,0,0.091,0,155.925,3511.082 -2066,0.6371,0.569,163.37224,5.7319,12.59964,12599.64,739.17042,156.74316,25.2811,4.13772,28.72012,60.27186,2.15296,0.28564,0.10692,0.0988,89.96236,11.07346,151.02818,244.05062,91.94138,0.13572,0,0.45038,6.563,0.255,0,0,0,0,0,1.609,8.074,0.522,0.09,0,0.086,0,155.925,3511.082 -2067,0.50675,0.5613,162.85628,5.7342,12.41628,12416.28,732.50069,155.13242,24.9619,4.08904,28.55549,60.56427,2.14912,0.27948,0.10684,0.09235,90.94182,11.06687,153.06671,246.99959,92.83271,0.13464,0,0.44236,6.346,0.233,0,0,0,0,0,1.389,7.647,0.48,0.084,0,0.082,0,155.925,3511.082 -2068,0.3764,0.5536,162.34032,5.7365,12.23292,12232.92,725.83096,153.52168,24.6427,4.04036,28.39086,60.85668,2.14528,0.27332,0.10676,0.0859,91.92128,11.06028,155.10524,249.94856,93.72404,0.13356,0,0.43434,6.137,0.214,0,0,0,0,0,1.168,7.221,0.442,0.078,0,0.078,0,155.925,3511.082 -2069,0.24605,0.5459,161.82436,5.7388,12.04956,12049.56,719.16123,151.91094,24.3235,3.99168,28.22623,61.14909,2.14144,0.26716,0.10668,0.07945,92.90074,11.05369,157.14377,252.89753,94.61537,0.13248,0,0.42632,5.935,0.195,0,0,0,0,0,0.948,6.794,0.407,0.072,0,0.074,0,155.925,3511.082 -2070,0.1157,0.5382,161.3084,5.7411,11.8662,11866.2,712.4915,150.3002,24.0043,3.943,28.0616,61.4415,2.1376,0.261,0.1066,0.073,93.8802,11.0471,159.1823,255.8465,95.5067,0.1314,0,0.4183,5.739,0.179,0,0,0,0,0,0.728,6.367,0.374,0.067,0,0.07,0,155.925,3511.082 -2071,0.06083,0.53938,160.68516,5.72833,11.65506,11655.06,707.6157,149.13236,23.66643,3.91608,27.94251,61.63589,2.06823,0.25002,0.10626,0.06942,94.1193,11.03809,159.92094,256.83185,95.53701,0.1303,0,0.40805,5.549,0.164,0,0,0,0,0,0.673,6.112,0.344,0.063,0,0.067,0,155.925,3511.082 -2072,0.00596,0.54056,160.06192,5.71556,11.44392,11443.92,702.7399,147.96452,23.32856,3.88916,27.82342,61.83028,1.99886,0.23904,0.10592,0.06584,94.3584,11.02908,160.65958,257.8172,95.56732,0.1292,0,0.3978,5.366,0.15,0,0,0,0,0,0.619,5.856,0.317,0.058,0,0.063,0,155.925,3511.082 -2073,-0.04891,0.54174,159.43868,5.70279,11.23278,11232.78,697.8641,146.79668,22.99069,3.86224,27.70433,62.02467,1.92949,0.22806,0.10558,0.06226,94.5975,11.02007,161.39822,258.80255,95.59763,0.1281,0,0.38755,5.189,0.137,0,0,0,0,0,0.564,5.601,0.291,0.054,0,0.06,0,155.925,3511.082 -2074,-0.10378,0.54292,158.81544,5.69002,11.02164,11021.64,692.9883,145.62884,22.65282,3.83532,27.58524,62.21906,1.86012,0.21708,0.10524,0.05868,94.8366,11.01106,162.13686,259.7879,95.62794,0.127,0,0.3773,5.018,0.125,0,0,0,0,0,0.509,5.345,0.268,0.05,0,0.057,0,155.925,3511.082 -2075,-0.15865,0.5441,158.1922,5.67725,10.8105,10810.5,688.1125,144.461,22.31495,3.8084,27.46615,62.41345,1.79075,0.2061,0.1049,0.0551,95.0757,11.00205,162.8755,260.77325,95.65825,0.1259,0,0.36705,4.852,0.115,0,0,0,0,0,0.454,5.09,0.247,0.047,0,0.054,0,155.925,3511.082 -2076,-0.21352,0.54528,157.56896,5.66448,10.59936,10599.36,683.2367,143.29316,21.97708,3.78148,27.34706,62.60784,1.72138,0.19512,0.10456,0.05152,95.3148,10.99304,163.61414,261.7586,95.68856,0.1248,0,0.3568,4.692,0.105,0,0,0,0,0,0.4,4.834,0.227,0.043,0,0.052,0,155.925,3511.082 -2077,-0.26839,0.54646,156.94572,5.65171,10.38822,10388.22,678.3609,142.12532,21.63921,3.75456,27.22797,62.80223,1.65201,0.18414,0.10422,0.04794,95.5539,10.98403,164.35278,262.74395,95.71887,0.1237,0,0.34655,4.537,0.096,0,0,0,0,0,0.345,4.579,0.209,0.04,0,0.049,0,155.925,3511.082 -2078,-0.32326,0.54764,156.32248,5.63894,10.17708,10177.08,673.4851,140.95748,21.30134,3.72764,27.10888,62.99662,1.58264,0.17316,0.10388,0.04436,95.793,10.97502,165.09142,263.7293,95.74918,0.1226,0,0.3363,4.388,0.088,0,0,0,0,0,0.29,4.323,0.192,0.038,0,0.046,0,155.925,3511.082 -2079,-0.37813,0.54882,155.69924,5.62617,9.96594,9965.94,668.6093,139.78964,20.96347,3.70072,26.98979,63.19101,1.51327,0.16218,0.10354,0.04078,96.0321,10.96601,165.83006,264.71465,95.77949,0.1215,0,0.32605,4.243,0.08,0,0,0,0,0,0.236,4.068,0.177,0.035,0,0.044,0,155.925,3511.082 -2080,-0.433,0.55,155.076,5.6134,9.7548,9754.8,663.7335,138.6218,20.6256,3.6738,26.8707,63.3854,1.4439,0.1512,0.1032,0.0372,96.2712,10.957,166.5687,265.7,95.8098,0.1204,0,0.3158,4.103,0.074,0,0,0,0,0,0.181,3.812,0.162,0.033,0,0.042,0,155.925,3511.082 -2081,-0.47674,0.55524,154.41227,5.59813,9.56188,9561.88,661.04504,137.88381,20.41927,3.66094,26.82342,63.57873,1.41908,0.14528,0.1026,0.03348,95.76444,10.93657,166.06747,264.8148,95.1051,0.11903,0,0.30275,3.967,0.067,0,0,0,0,0,0.167,3.659,0.149,0.03,0,0.04,0,155.925,3511.082 -2082,-0.52048,0.56048,153.74854,5.58286,9.36896,9368.96,658.35658,137.14582,20.21294,3.64808,26.77614,63.77206,1.39426,0.13936,0.102,0.02976,95.25768,10.91614,165.56624,263.9296,94.4004,0.11766,0,0.2897,3.836,0.062,0,0,0,0,0,0.154,3.506,0.138,0.028,0,0.038,0,155.925,3511.082 -2083,-0.56422,0.56572,153.08481,5.56759,9.17604,9176.04,655.66812,136.40783,20.00661,3.63522,26.72886,63.96539,1.36944,0.13344,0.1014,0.02604,94.75092,10.89571,165.06501,263.0444,93.6957,0.11629,0,0.27665,3.71,0.056,0,0,0,0,0,0.14,3.353,0.127,0.026,0,0.036,0,155.925,3511.082 -2084,-0.60796,0.57096,152.42108,5.55232,8.98312,8983.12,652.97966,135.66984,19.80028,3.62236,26.68158,64.15872,1.34462,0.12752,0.1008,0.02232,94.24416,10.87528,164.56378,262.1592,92.991,0.11492,0,0.2636,3.587,0.052,0,0,0,0,0,0.126,3.2,0.116,0.024,0,0.034,0,155.925,3511.082 -2085,-0.6517,0.5762,151.75735,5.53705,8.7902,8790.2,650.2912,134.93185,19.59395,3.6095,26.6343,64.35205,1.3198,0.1216,0.1002,0.0186,93.7374,10.85485,164.06255,261.274,92.2863,0.11355,0,0.25055,3.469,0.047,0,0,0,0,0,0.113,3.047,0.107,0.023,0,0.032,0,155.925,3511.082 -2086,-0.69544,0.58144,151.09362,5.52178,8.59728,8597.28,647.60274,134.19386,19.38762,3.59664,26.58702,64.54538,1.29498,0.11568,0.0996,0.01488,93.23064,10.83442,163.56132,260.3888,91.5816,0.11218,0,0.2375,3.355,0.043,0,0,0,0,0,0.099,2.894,0.099,0.021,0,0.031,0,155.925,3511.082 -2087,-0.73918,0.58668,150.42989,5.50651,8.40436,8404.36,644.91428,133.45587,19.18129,3.58378,26.53974,64.73871,1.27016,0.10976,0.099,0.01116,92.72388,10.81399,163.06009,259.5036,90.8769,0.11081,0,0.22445,3.244,0.039,0,0,0,0,0,0.086,2.741,0.091,0.02,0,0.029,0,155.925,3511.082 -2088,-0.78292,0.59192,149.76616,5.49124,8.21144,8211.44,642.22582,132.71788,18.97496,3.57092,26.49246,64.93204,1.24534,0.10384,0.0984,0.00744,92.21712,10.79356,162.55886,258.6184,90.1722,0.10944,0,0.2114,3.137,0.036,0,0,0,0,0,0.072,2.588,0.083,0.018,0,0.028,0,155.925,3511.082 -2089,-0.82666,0.59716,149.10243,5.47597,8.01852,8018.52,639.53736,131.97989,18.76863,3.55806,26.44518,65.12537,1.22052,0.09792,0.0978,0.00372,91.71036,10.77313,162.05763,257.7332,89.4675,0.10807,0,0.19835,3.033,0.033,0,0,0,0,0,0.059,2.435,0.077,0.017,0,0.026,0,155.925,3511.082 -2090,-0.8704,0.6024,148.4387,5.4607,7.8256,7825.6,636.8489,131.2419,18.5623,3.5452,26.3979,65.3187,1.1957,0.092,0.0972,0,91.2036,10.7527,161.5564,256.848,88.7628,0.1067,0,0.1853,2.933,0.03,0,0,0,0,0,0.045,2.283,0.071,0.016,0,0.025,0,155.925,3511.082 -2091,-0.87644,0.59329,147.8001,5.44286,7.68856,7688.56,633.94839,130.66875,18.30502,3.52646,26.29122,65.51065,1.18533,0.09137,0.09635,0,90.20593,10.71798,160.22213,254.70245,87.63225,0.10515,0,0.17119,2.836,0.028,0,0,0,0,0,0.042,2.191,0.065,0.015,0,0.024,0,155.925,3511.082 -2092,-0.88248,0.58418,147.1615,5.42502,7.55152,7551.52,631.04788,130.0956,18.04774,3.50772,26.18454,65.7026,1.17496,0.09074,0.0955,0,89.20826,10.68326,158.88786,252.5569,86.5017,0.1036,0,0.15708,2.743,0.025,0,0,0,0,0,0.038,2.099,0.06,0.014,0,0.023,0,155.925,3511.082 -2093,-0.88852,0.57507,146.5229,5.40718,7.41448,7414.48,628.14737,129.52245,17.79046,3.48898,26.07786,65.89455,1.16459,0.09011,0.09465,0,88.21059,10.64854,157.55359,250.41135,85.37115,0.10205,0,0.14297,2.652,0.023,0,0,0,0,0,0.035,2.008,0.055,0.013,0,0.022,0,155.925,3511.082 -2094,-0.89456,0.56596,145.8843,5.38934,7.27744,7277.44,625.24686,128.9493,17.53318,3.47024,25.97118,66.0865,1.15422,0.08948,0.0938,0,87.21292,10.61382,156.21932,248.2658,84.2406,0.1005,0,0.12886,2.565,0.021,0,0,0,0,0,0.031,1.916,0.051,0.012,0,0.02,0,155.925,3511.082 -2095,-0.9006,0.55685,145.2457,5.3715,7.1404,7140.4,622.34635,128.37615,17.2759,3.4515,25.8645,66.27845,1.14385,0.08885,0.09295,0,86.21525,10.5791,154.88505,246.12025,83.11005,0.09895,0,0.11475,2.48,0.019,0,0,0,0,0,0.028,1.825,0.047,0.011,0,0.019,0,155.925,3511.082 -2096,-0.90664,0.54774,144.6071,5.35366,7.00336,7003.36,619.44584,127.803,17.01862,3.43276,25.75782,66.4704,1.13348,0.08822,0.0921,0,85.21758,10.54438,153.55078,243.9747,81.9795,0.0974,0,0.10064,2.398,0.018,0,0,0,0,0,0.025,1.733,0.043,0.01,0,0.018,0,155.925,3511.082 -2097,-0.91268,0.53863,143.9685,5.33582,6.86632,6866.32,616.54533,127.22985,16.76134,3.41402,25.65114,66.66235,1.12311,0.08759,0.09125,0,84.21991,10.50966,152.21651,241.82915,80.84895,0.09585,0,0.08653,2.319,0.016,0,0,0,0,0,0.021,1.641,0.039,0.009,0,0.018,0,155.925,3511.082 -2098,-0.91872,0.52952,143.3299,5.31798,6.72928,6729.28,613.64482,126.6567,16.50406,3.39528,25.54446,66.8543,1.11274,0.08696,0.0904,0,83.22224,10.47494,150.88224,239.6836,79.7184,0.0943,0,0.07242,2.243,0.015,0,0,0,0,0,0.018,1.55,0.036,0.009,0,0.017,0,155.925,3511.082 -2099,-0.92476,0.52041,142.6913,5.30014,6.59224,6592.24,610.74431,126.08355,16.24678,3.37654,25.43778,67.04625,1.10237,0.08633,0.08955,0,82.22457,10.44022,149.54797,237.53805,78.58785,0.09275,0,0.05831,2.169,0.014,0,0,0,0,0,0.015,1.458,0.033,0.008,0,0.016,0,155.925,3511.082 -2100,-0.9308,0.5113,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.097,0.012,0,0,0,0,0,0.011,1.367,0.031,0.008,0,0.015,0,155.925,3511.082 -2101,-0.9308,0.490848,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.028,0.011,0,0,0,0,0,0.01,1.298,0.028,0.007,0,0.014,0,155.925,3511.082 -2102,-0.9308,0.470396,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.961,0.01,0,0,0,0,0,0.008,1.233,0.026,0.007,0,0.014,0,155.925,3511.082 -2103,-0.9308,0.449944,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.896,0.01,0,0,0,0,0,0.007,1.172,0.024,0.006,0,0.013,0,155.925,3511.082 -2104,-0.9308,0.429492,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.834,0.009,0,0,0,0,0,0.006,1.113,0.022,0.006,0,0.012,0,155.925,3511.082 -2105,-0.9308,0.40904,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.773,0.008,0,0,0,0,0,0.006,1.057,0.02,0.005,0,0.012,0,155.925,3511.082 -2106,-0.9308,0.388588,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.715,0.007,0,0,0,0,0,0.005,1.005,0.019,0.005,0,0.011,0,155.925,3511.082 -2107,-0.9308,0.368136,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.658,0.007,0,0,0,0,0,0.004,0.954,0.017,0.005,0,0.011,0,155.925,3511.082 -2108,-0.9308,0.347684,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.603,0.006,0,0,0,0,0,0.004,0.907,0.016,0.004,0,0.01,0,155.925,3511.082 -2109,-0.9308,0.327232,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.55,0.006,0,0,0,0,0,0.003,0.861,0.014,0.004,0,0.009,0,155.925,3511.082 -2110,-0.9308,0.30678,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.499,0.005,0,0,0,0,0,0.003,0.818,0.013,0.004,0,0.009,0,155.925,3511.082 -2111,-0.9308,0.286328,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.45,0.005,0,0,0,0,0,0.002,0.777,0.012,0.003,0,0.009,0,155.925,3511.082 -2112,-0.9308,0.265876,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.402,0.004,0,0,0,0,0,0.002,0.738,0.011,0.003,0,0.008,0,155.925,3511.082 -2113,-0.9308,0.245424,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.356,0.004,0,0,0,0,0,0.002,0.702,0.01,0.003,0,0.008,0,155.925,3511.082 -2114,-0.9308,0.224972,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.311,0.004,0,0,0,0,0,0.002,0.666,0.01,0.003,0,0.007,0,155.925,3511.082 -2115,-0.9308,0.20452,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.268,0.003,0,0,0,0,0,0.001,0.633,0.009,0.003,0,0.007,0,155.925,3511.082 -2116,-0.9308,0.184068,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.226,0.003,0,0,0,0,0,0.001,0.601,0.008,0.002,0,0.007,0,155.925,3511.082 -2117,-0.9308,0.163616,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.185,0.003,0,0,0,0,0,0.001,0.571,0.007,0.002,0,0.006,0,155.925,3511.082 -2118,-0.9308,0.143164,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.146,0.003,0,0,0,0,0,0.001,0.543,0.007,0.002,0,0.006,0,155.925,3511.082 -2119,-0.9308,0.122712,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.108,0.002,0,0,0,0,0,0.001,0.516,0.006,0.002,0,0.006,0,155.925,3511.082 -2120,-0.9308,0.10226,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.072,0.002,0,0,0,0,0,0.001,0.49,0.006,0.002,0,0.005,0,155.925,3511.082 -2121,-0.9308,0.081808,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.036,0.002,0,0,0,0,0,0.001,0.465,0.005,0.002,0,0.005,0,155.925,3511.082 -2122,-0.9308,0.061356,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.002,0.002,0,0,0,0,0,0.001,0.442,0.005,0.002,0,0.005,0,155.925,3511.082 -2123,-0.9308,0.040904,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.969,0.002,0,0,0,0,0,0,0.42,0.005,0.001,0,0.005,0,155.925,3511.082 -2124,-0.9308,0.020452,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.937,0.001,0,0,0,0,0,0,0.399,0.004,0.001,0,0.004,0,155.925,3511.082 -2125,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.906,0.001,0,0,0,0,0,0,0.379,0.004,0.001,0,0.004,0,155.925,3511.082 -2126,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.876,0.001,0,0,0,0,0,0,0.36,0.004,0.001,0,0.004,0,155.925,3511.082 -2127,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.847,0.001,0,0,0,0,0,0,0.342,0.003,0.001,0,0.004,0,155.925,3511.082 -2128,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.819,0.001,0,0,0,0,0,0,0.325,0.003,0.001,0,0.004,0,155.925,3511.082 -2129,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.792,0.001,0,0,0,0,0,0,0.309,0.003,0.001,0,0.003,0,155.925,3511.082 -2130,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.766,0.001,0,0,0,0,0,0,0.293,0.003,0.001,0,0.003,0,155.925,3511.082 -2131,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.741,0.001,0,0,0,0,0,0,0.279,0.002,0.001,0,0.003,0,155.925,3511.082 -2132,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.717,0.001,0,0,0,0,0,0,0.265,0.002,0.001,0,0.003,0,155.925,3511.082 -2133,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.693,0.001,0,0,0,0,0,0,0.251,0.002,0.001,0,0.003,0,155.925,3511.082 -2134,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.67,0.001,0,0,0,0,0,0,0.239,0.002,0.001,0,0.003,0,155.925,3511.082 -2135,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.648,0.001,0,0,0,0,0,0,0.227,0.002,0.001,0,0.002,0,155.925,3511.082 -2136,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.627,0.001,0,0,0,0,0,0,0.216,0.002,0.001,0,0.002,0,155.925,3511.082 -2137,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.606,0,0,0,0,0,0,0,0.205,0.001,0.001,0,0.002,0,155.925,3511.082 -2138,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.586,0,0,0,0,0,0,0,0.195,0.001,0,0,0.002,0,155.925,3511.082 -2139,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.567,0,0,0,0,0,0,0,0.185,0.001,0,0,0.002,0,155.925,3511.082 -2140,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.548,0,0,0,0,0,0,0,0.176,0.001,0,0,0.002,0,155.925,3511.082 -2141,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.53,0,0,0,0,0,0,0,0.167,0.001,0,0,0.002,0,155.925,3511.082 -2142,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.512,0,0,0,0,0,0,0,0.159,0.001,0,0,0.002,0,155.925,3511.082 -2143,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.495,0,0,0,0,0,0,0,0.151,0.001,0,0,0.002,0,155.925,3511.082 -2144,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.479,0,0,0,0,0,0,0,0.143,0.001,0,0,0.002,0,155.925,3511.082 -2145,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.463,0,0,0,0,0,0,0,0.136,0.001,0,0,0.001,0,155.925,3511.082 -2146,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.448,0,0,0,0,0,0,0,0.129,0.001,0,0,0.001,0,155.925,3511.082 -2147,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.433,0,0,0,0,0,0,0,0.123,0.001,0,0,0.001,0,155.925,3511.082 -2148,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.419,0,0,0,0,0,0,0,0.117,0.001,0,0,0.001,0,155.925,3511.082 -2149,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.405,0,0,0,0,0,0,0,0.111,0.001,0,0,0.001,0,155.925,3511.082 -2150,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.392,0,0,0,0,0,0,0,0.105,0,0,0,0.001,0,155.925,3511.082 -2151,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.379,0,0,0,0,0,0,0,0.1,0,0,0,0.001,0,155.925,3511.082 -2152,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.366,0,0,0,0,0,0,0,0.095,0,0,0,0.001,0,155.925,3511.082 -2153,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.354,0,0,0,0,0,0,0,0.09,0,0,0,0.001,0,155.925,3511.082 -2154,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.342,0,0,0,0,0,0,0,0.086,0,0,0,0.001,0,155.925,3511.082 -2155,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.331,0,0,0,0,0,0,0,0.081,0,0,0,0.001,0,155.925,3511.082 -2156,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.32,0,0,0,0,0,0,0,0.077,0,0,0,0.001,0,155.925,3511.082 -2157,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.31,0,0,0,0,0,0,0,0.073,0,0,0,0.001,0,155.925,3511.082 -2158,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.299,0,0,0,0,0,0,0,0.07,0,0,0,0.001,0,155.925,3511.082 -2159,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.29,0,0,0,0,0,0,0,0.066,0,0,0,0.001,0,155.925,3511.082 -2160,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.28,0,0,0,0,0,0,0,0.063,0,0,0,0.001,0,155.925,3511.082 -2161,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.271,0,0,0,0,0,0,0,0.06,0,0,0,0.001,0,155.925,3511.082 -2162,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.262,0,0,0,0,0,0,0,0.057,0,0,0,0.001,0,155.925,3511.082 -2163,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.253,0,0,0,0,0,0,0,0.054,0,0,0,0.001,0,155.925,3511.082 -2164,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.245,0,0,0,0,0,0,0,0.051,0,0,0,0.001,0,155.925,3511.082 -2165,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.237,0,0,0,0,0,0,0,0.049,0,0,0,0.001,0,155.925,3511.082 -2166,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.229,0,0,0,0,0,0,0,0.046,0,0,0,0.001,0,155.925,3511.082 -2167,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.221,0,0,0,0,0,0,0,0.044,0,0,0,0,0,155.925,3511.082 -2168,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.214,0,0,0,0,0,0,0,0.042,0,0,0,0,0,155.925,3511.082 -2169,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.207,0,0,0,0,0,0,0,0.04,0,0,0,0,0,155.925,3511.082 -2170,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.2,0,0,0,0,0,0,0,0.038,0,0,0,0,0,155.925,3511.082 -2171,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.194,0,0,0,0,0,0,0,0.036,0,0,0,0,0,155.925,3511.082 -2172,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.187,0,0,0,0,0,0,0,0.034,0,0,0,0,0,155.925,3511.082 -2173,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.181,0,0,0,0,0,0,0,0.032,0,0,0,0,0,155.925,3511.082 -2174,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.175,0,0,0,0,0,0,0,0.031,0,0,0,0,0,155.925,3511.082 -2175,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.169,0,0,0,0,0,0,0,0.029,0,0,0,0,0,155.925,3511.082 -2176,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.164,0,0,0,0,0,0,0,0.028,0,0,0,0,0,155.925,3511.082 -2177,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.158,0,0,0,0,0,0,0,0.026,0,0,0,0,0,155.925,3511.082 -2178,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.153,0,0,0,0,0,0,0,0.025,0,0,0,0,0,155.925,3511.082 -2179,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.148,0,0,0,0,0,0,0,0.024,0,0,0,0,0,155.925,3511.082 -2180,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.143,0,0,0,0,0,0,0,0.023,0,0,0,0,0,155.925,3511.082 -2181,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.138,0,0,0,0,0,0,0,0.021,0,0,0,0,0,155.925,3511.082 -2182,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.134,0,0,0,0,0,0,0,0.02,0,0,0,0,0,155.925,3511.082 -2183,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.129,0,0,0,0,0,0,0,0.019,0,0,0,0,0,155.925,3511.082 -2184,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.125,0,0,0,0,0,0,0,0.018,0,0,0,0,0,155.925,3511.082 -2185,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.121,0,0,0,0,0,0,0,0.017,0,0,0,0,0,155.925,3511.082 -2186,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.117,0,0,0,0,0,0,0,0.017,0,0,0,0,0,155.925,3511.082 -2187,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.113,0,0,0,0,0,0,0,0.016,0,0,0,0,0,155.925,3511.082 -2188,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.109,0,0,0,0,0,0,0,0.015,0,0,0,0,0,155.925,3511.082 -2189,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.106,0,0,0,0,0,0,0,0.014,0,0,0,0,0,155.925,3511.082 -2190,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.102,0,0,0,0,0,0,0,0.014,0,0,0,0,0,155.925,3511.082 -2191,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.099,0,0,0,0,0,0,0,0.013,0,0,0,0,0,155.925,3511.082 -2192,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.096,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082 -2193,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.093,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082 -2194,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.089,0,0,0,0,0,0,0,0.011,0,0,0,0,0,155.925,3511.082 -2195,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.087,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082 -2196,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.084,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082 -2197,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.081,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2198,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.078,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2199,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.076,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2200,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.073,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2201,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.071,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2202,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.068,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2203,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.066,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2204,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.064,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2205,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.062,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2206,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.06,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2207,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.058,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2208,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.056,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2209,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.054,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2210,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.052,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2211,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.051,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2212,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.049,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2213,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.047,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2214,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.046,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2215,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.044,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2216,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.043,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2217,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.041,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2218,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.04,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2219,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.039,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2220,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.037,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2221,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.036,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2222,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.035,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2223,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.034,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2224,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.033,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2225,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.032,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2226,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.031,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2227,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.03,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2228,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.029,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2229,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.028,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2230,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.027,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2231,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2232,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2233,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.024,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2234,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2235,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2236,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.022,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2237,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.021,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2238,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2239,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2240,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.019,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2241,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2242,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2243,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2244,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2245,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2246,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2247,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2248,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2249,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2250,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2251,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2252,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2253,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2254,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2255,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2256,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2257,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2258,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2259,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2260,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2261,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2262,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2263,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2264,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2265,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2266,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2267,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2268,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2269,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2270,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2271,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2272,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2273,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2274,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2275,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2276,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2277,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2278,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2279,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2280,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2281,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2282,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2283,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2284,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2285,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2286,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2287,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2288,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2289,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2290,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2291,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2292,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2293,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2294,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2295,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2296,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2297,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2298,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2299,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2300,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2301,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2302,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2303,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2304,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2305,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2306,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2307,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2308,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2309,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2310,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2311,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2312,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2313,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2314,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2315,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2316,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2317,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2318,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2319,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2320,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2321,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2322,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2323,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2324,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2325,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2326,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2327,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2328,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2329,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2330,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2331,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2332,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2333,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2334,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2335,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2336,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2337,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2338,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2339,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2340,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2341,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2342,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2343,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2344,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2345,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2346,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2347,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2348,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2349,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2350,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2351,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2352,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2353,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2354,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2355,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2356,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2357,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2358,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2359,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2360,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2361,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2362,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2363,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2364,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2365,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2366,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2367,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2368,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2369,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2370,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2371,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2372,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2373,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2374,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2375,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2376,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2377,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2378,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2379,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2380,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2381,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2382,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2383,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2384,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2385,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2386,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2387,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2388,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2389,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2390,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2391,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2392,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2393,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2394,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2395,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2396,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2397,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2398,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2399,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2400,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2401,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2402,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2403,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2404,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2405,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2406,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2407,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2408,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2409,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2410,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2411,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2412,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2413,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2414,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2415,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2416,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2417,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2418,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2419,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2420,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2421,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2422,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2423,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2424,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2425,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2426,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2427,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2428,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2429,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2430,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2431,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2432,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2433,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2434,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2435,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2436,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2437,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2438,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2439,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2440,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2441,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2442,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2443,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2444,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2445,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2446,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2447,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2448,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2449,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2450,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2451,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2452,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2453,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2454,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2455,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2456,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2457,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2458,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2459,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2460,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2461,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2462,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2463,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2464,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2465,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2466,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2467,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2468,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2469,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2470,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2471,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2472,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2473,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2474,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2475,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2476,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2477,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2478,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2479,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2480,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2481,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2482,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2483,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2484,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2485,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2486,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2487,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2488,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2489,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2490,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2491,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2492,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2493,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2494,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2495,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2496,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2497,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2498,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2499,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2500,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 diff --git a/inst/shinyApp/www/input/emissions/RCP45_custom_template.csv b/inst/shinyApp/www/input/emissions/RCP45_custom_template.csv deleted file mode 100644 index cb11081..0000000 --- a/inst/shinyApp/www/input/emissions/RCP45_custom_template.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP4.5 Emissions, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,CF4_emissions,C2F6_emissions,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,1.6637375,0.23563239,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,1.7507764,0.24803412,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,1.8423953,0.26108852,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,1.9388369,0.27483004,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,2.0403528,0.28929476,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,2.1472124,0.30452082,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,2.2596977,0.32054821,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,2.3781004,0.33741917,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,2.5027381,0.35517808,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,2.6339328,0.37387169,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,2.7720335,0.39354912,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,2.9174066,0.41426223,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,3.0704314,0.39468287,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,3.2315097,0.37832187,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,3.4010636,0.3640764,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,3.579544,0.35194679,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,3.7674167,0.34193311,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,3.9651774,0.33403572,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,4.1733472,0.32825472,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,4.3924702,0.32459037,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,4.62313,0.32304286,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,4.865916,0.32361242,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,5.121479,0.32629927,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,5.3904959,0.3311036,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,5.6736692,0.33802563,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,5.9717491,0.34706557,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,6.2855162,0.35822365,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,6.6157969,0.37150001,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,6.9634615,0.38689499,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,7.3294266,0.40440867,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,7.7146508,0.42404135,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,8.1201607,0.4457932,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,8.5470132,0.46966444,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,14.984956,0.49565531,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,13.488099,0.52376596,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,13.488369,0.55399667,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,13.488639,0.58634761,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,13.488909,0.62081899,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,13.48918,0.65741104,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,13.489449,0.69612398,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,11.992564,0.73695798,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,13.489967,0.7799133,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,13.490244,0.82499011,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,13.490523,0.87218868,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,11.993645,0.9215092,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,13.49105,0.97295172,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,13.491328,1.0265167,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,11.994452,1.0822044,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,13.491857,1.1400146,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,11.994981,1.1999481,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,13.492387,1.2620043,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,11.995499,1.3261846,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,13.492893,1.392488,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,11.996004,1.4609153,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,11.996242,1.5314669,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,11.99648,1.6041426,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,13.493874,1.678943,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,11.996986,1.7558675,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,11.997224,1.8349176,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,11.997462,1.9160924,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,11.997683,2.0735678,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,11.997905,2.3729101,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,11.998111,2.3731469,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,11.998354,2.3733837,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,11.998587,2.3736205,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,10.501674,2.3738573,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,11.999071,2.3740941,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,11.999322,2.3743309,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,11.999575,2.3745677,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,10.502692,2.3748045,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,12.0001,2.3749,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,11.925,2.4345,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,11.8481,2.4915,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,11.7693,2.5463,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,11.6885,2.599,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,11.6059,2.6494,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,1.92,0.314,168.841,3511.082 -2006,8.0985,1.1385,317.2396,7.721,56303.4,1057.0145,214.0518,38.5859,8.2245,35.9952,11.411,2.5813,10.5529,12.3831,3.8803,14.4509,121.0746,12.7893,5.1614,31.23,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,1.834,0.279,167.857,3511.082 -2007,8.226,1.0815,318.5722,7.7579,55887.3,1052.4683,212.6378,38.3772,8.1977,35.598,11.2139,2.5131,10.2947,13.7731,4.5246,15.1335,129.6223,13.1314,5.4292,35.5714,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,1.752,0.249,167.857,3511.082 -2008,8.3531333,1.0245333,319.8964,7.7946667,55471.1,1047.8519,211.21813,38.168667,8.1708667,35.199467,11.012133,2.4452667,10.037233,15.162767,5.1677,15.798,133.99193,13.4753,5.6901667,39.912933,6.286,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,1.675,0.221,167.857,3511.082 -2009,8.4802667,0.96756667,321.2206,7.8314333,55054.9,1043.2354,209.79847,37.960133,8.1440333,34.800933,10.810367,2.3774333,9.7797667,16.552433,5.8108,16.4625,138.36157,13.8192,5.9511333,44.254467,5.9707,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,1.601,0.197,167.857,3511.082 -2010,8.6074,0.9106,322.5448,7.8682,54638.7,1038.619,208.3788,37.7516,8.1172,34.4024,10.6086,2.3096,9.5223,17.9421,6.4539,17.127,142.7312,14.1631,6.2121,48.596,5.6554,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,1.521,0.175,167.857,3511.082 -2011,8.73381,0.85362,323.84112,7.90492,54222.14,1033.7724,206.94006,37.54386,8.09002,33.99919,10.3919,2.24289,8.68531,22.21208,6.53107,18.54246,147.40164,14.51343,5.65092,52.93749,5.34014,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,1.445,0.156,167.857,3511.082 -2012,8.86022,0.79664,325.13744,7.94164,53805.58,1028.9259,205.50132,37.33612,8.06284,33.59598,10.1752,2.17618,7.84832,26.48206,6.60824,19.95792,152.07208,14.86376,5.08974,57.27898,5.02488,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,1.373,0.139,167.857,3511.082 -2013,8.98663,0.73966,326.43376,7.97836,53389.02,1024.0793,204.06258,37.12838,8.03566,33.19277,9.9585,2.10947,7.01133,30.75204,6.68541,21.37338,156.74252,15.21409,4.52856,61.62047,4.70962,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,1.304,0.124,167.857,3511.082 -2014,9.11304,0.68268,327.73008,8.01508,52972.46,1019.2328,202.62384,36.92064,8.00848,32.78956,9.7418,2.04276,6.17434,35.02202,6.76258,22.78884,161.41296,15.56442,3.96738,65.96196,4.39436,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,1.239,0.11,167.857,3511.082 -2015,9.23945,0.6257,329.0264,8.0518,52555.9,1014.3863,201.1851,36.7129,7.9813,32.38635,9.5251,1.97605,5.33735,39.292,6.83975,24.2043,166.0834,15.91475,3.4062,70.30345,4.0791,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,1.177,0.098,155.925,3511.082 -2016,9.36586,0.56872,330.32272,8.08852,52139.34,1009.5397,199.74636,36.50516,7.95412,31.98314,9.3084,1.90934,4.50036,43.56198,6.91692,25.61976,170.75384,16.26508,2.84502,74.64494,3.76384,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,1.118,0.087,155.925,3511.082 -2017,9.49227,0.51174,331.61904,8.12524,51722.78,1004.6932,198.30762,36.29742,7.92694,31.57993,9.0917,1.84263,3.66337,47.83196,6.99409,27.03522,175.42428,16.61541,2.28384,78.98643,3.44858,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,1.062,0.078,155.925,3511.082 -2018,9.61868,0.45476,332.91536,8.16196,51306.22,999.8466,196.86888,36.08968,7.89976,31.17672,8.875,1.77592,2.82638,52.10194,7.07126,28.45068,180.09472,16.96574,1.72266,83.32792,3.13332,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,1.009,0.069,155.925,3511.082 -2019,9.74509,0.39778,334.21168,8.19868,50889.66,995.00005,195.43014,35.88194,7.87258,30.77351,8.6583,1.70921,1.98939,56.37192,7.14843,29.86614,184.76516,17.31607,1.16148,87.66941,2.81806,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0.959,0.061,155.925,3511.082 -2020,9.8715,0.3408,335.508,8.2354,50473.1,990.1535,193.9914,35.6742,7.8454,30.3703,8.4416,1.6425,1.1524,60.6419,7.2256,31.2816,189.4356,17.6664,0.6003,92.0109,2.5028,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0.911,0.055,155.925,3511.082 -2021,9.97968,0.32835,335.85701,8.26904,49712.27,990.11353,194.87285,35.58304,7.79487,30.2411,8.442,1.65926,1.1063,61.78125,7.31559,31.32967,191.31961,17.94569,0.56612,92.38631,2.54361,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0.865,0.049,155.925,3511.082 -2022,10.08786,0.3159,336.20602,8.30268,48951.44,990.07356,195.7543,35.49188,7.74434,30.1119,8.4424,1.67602,1.0602,62.9206,7.40558,31.37774,193.20362,18.22498,0.53194,92.76172,2.58442,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0.822,0.043,155.925,3511.082 -2023,10.19604,0.30345,336.55503,8.33632,48190.61,990.03359,196.63575,35.40072,7.69381,29.9827,8.4428,1.69278,1.0141,64.05995,7.49557,31.42581,195.08763,18.50427,0.49776,93.13713,2.62523,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0.781,0.039,155.925,3511.082 -2024,10.30422,0.291,336.90404,8.36996,47429.78,989.99362,197.5172,35.30956,7.64328,29.8535,8.4432,1.70954,0.968,65.1993,7.58556,31.47388,196.97164,18.78356,0.46358,93.51254,2.66604,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0.742,0.034,155.925,3511.082 -2025,10.4124,0.27855,337.25305,8.4036,46668.95,989.95365,198.39865,35.2184,7.59275,29.7243,8.4436,1.7263,0.9219,66.33865,7.67555,31.52195,198.85565,19.06285,0.4294,93.88795,2.70685,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0.705,0.031,155.925,3511.082 -2026,10.52058,0.2661,337.60206,8.43724,45908.12,989.91368,199.2801,35.12724,7.54222,29.5951,8.444,1.74306,0.8758,67.478,7.76554,31.57002,200.73966,19.34214,0.39522,94.26336,2.74766,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0.669,0.027,155.925,3511.082 -2027,10.62876,0.25365,337.95107,8.47088,45147.29,989.87371,200.16155,35.03608,7.49169,29.4659,8.4444,1.75982,0.8297,68.61735,7.85553,31.61809,202.62367,19.62143,0.36104,94.63877,2.78847,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0.636,0.024,155.925,3511.082 -2028,10.73694,0.2412,338.30008,8.50452,44386.46,989.83374,201.043,34.94492,7.44116,29.3367,8.4448,1.77658,0.7836,69.7567,7.94552,31.66616,204.50768,19.90072,0.32686,95.01418,2.82928,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0.604,0.022,155.925,3511.082 -2029,10.84512,0.22875,338.64909,8.53816,43625.63,989.79377,201.92445,34.85376,7.39063,29.2075,8.4452,1.79334,0.7375,70.89605,8.03551,31.71423,206.39169,20.18001,0.29268,95.38959,2.87009,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0.574,0.019,155.925,3511.082 -2030,10.9533,0.2163,338.9981,8.5718,42864.8,989.7538,202.8059,34.7626,7.3401,29.0783,8.4456,1.8101,0.6914,72.0354,8.1255,31.7623,208.2757,20.4593,0.2585,95.765,2.9109,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0.545,0.017,155.925,3511.082 -2031,10.99177,0.21454,338.85573,8.58349,42038.72,985.80309,202.69076,34.54297,7.2846,28.95954,8.46737,1.8237,0.66362,72.90303,8.24943,31.72409,210.39103,20.74256,0.25838,95.88014,2.95352,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0.518,0.015,155.925,3511.082 -2032,11.03024,0.21278,338.71336,8.59518,41212.64,981.85238,202.57562,34.32334,7.2291,28.84078,8.48914,1.8373,0.63584,73.77066,8.37336,31.68588,212.50636,21.02582,0.25826,95.99528,2.99614,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0.492,0.013,155.925,3511.082 -2033,11.06871,0.21102,338.57099,8.60687,40386.56,977.90167,202.46048,34.10371,7.1736,28.72202,8.51091,1.8509,0.60806,74.63829,8.49729,31.64767,214.62169,21.30908,0.25814,96.11042,3.03876,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0.467,0.012,155.925,3511.082 -2034,11.10718,0.20926,338.42862,8.61856,39560.48,973.95096,202.34534,33.88408,7.1181,28.60326,8.53268,1.8645,0.58028,75.50592,8.62122,31.60946,216.73702,21.59234,0.25802,96.22556,3.08138,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0.444,0.011,155.925,3511.082 -2035,11.14565,0.2075,338.28625,8.63025,38734.4,970.00025,202.2302,33.66445,7.0626,28.4845,8.55445,1.8781,0.5525,76.37355,8.74515,31.57125,218.85235,21.8756,0.2579,96.3407,3.124,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0.422,0.01,155.925,3511.082 -2036,11.18412,0.20574,338.14388,8.64194,37908.32,966.04954,202.11506,33.44482,7.0071,28.36574,8.57622,1.8917,0.52472,77.24118,8.86908,31.53304,220.96768,22.15886,0.25778,96.45584,3.16662,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0.401,0.008,155.925,3511.082 -2037,11.22259,0.20398,338.00151,8.65363,37082.24,962.09883,201.99992,33.22519,6.9516,28.24698,8.59799,1.9053,0.49694,78.10881,8.99301,31.49483,223.08301,22.44212,0.25766,96.57098,3.20924,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0.381,0.008,155.925,3511.082 -2038,11.26106,0.20222,337.85914,8.66532,36256.16,958.14812,201.88478,33.00556,6.8961,28.12822,8.61976,1.9189,0.46916,78.97644,9.11694,31.45662,225.19834,22.72538,0.25754,96.68612,3.25186,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0.362,0.007,155.925,3511.082 -2039,11.29953,0.20046,337.71677,8.67701,35430.08,954.19741,201.76964,32.78593,6.8406,28.00946,8.64153,1.9325,0.44138,79.84407,9.24087,31.41841,227.31367,23.00864,0.25742,96.80126,3.29448,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0.344,0.006,155.925,3511.082 -2040,11.338,0.1987,337.5744,8.6887,34604,950.2467,201.6545,32.5663,6.7851,27.8907,8.6633,1.9461,0.4136,80.7117,9.3648,31.3802,229.429,23.2919,0.2573,96.9164,3.3371,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0.326,0.005,155.925,3511.082 -2041,11.30733,0.20369,336.95066,8.67866,33711.48,942.49931,200.55337,32.21797,6.72454,27.78233,8.71054,1.95661,0.39687,80.10127,9.53783,31.31317,231.78318,23.57453,0.24048,96.77125,3.38154,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0.31,0.005,155.925,3511.082 -2042,11.27666,0.20868,336.32692,8.66862,32818.96,934.75192,199.45224,31.86964,6.66398,27.67396,8.75778,1.96712,0.38014,79.49084,9.71086,31.24614,234.13736,23.85716,0.22366,96.6261,3.42598,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0.295,0.004,155.925,3511.082 -2043,11.24599,0.21367,335.70318,8.65858,31926.44,927.00453,198.35111,31.52131,6.60342,27.56559,8.80502,1.97763,0.36341,78.88041,9.88389,31.17911,236.49154,24.13979,0.20684,96.48095,3.47042,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0.28,0.004,155.925,3511.082 -2044,11.21532,0.21866,335.07944,8.64854,31033.92,919.25714,197.24998,31.17298,6.54286,27.45722,8.85226,1.98814,0.34668,78.26998,10.05692,31.11208,238.84572,24.42242,0.19002,96.3358,3.51486,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0.266,0.003,155.925,3511.082 -2045,11.18465,0.22365,334.4557,8.6385,30141.4,911.50975,196.14885,30.82465,6.4823,27.34885,8.8995,1.99865,0.32995,77.65955,10.22995,31.04505,241.1999,24.70505,0.1732,96.19065,3.5593,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0.253,0.003,155.925,3511.082 -2046,11.15398,0.22864,333.83196,8.62846,29248.88,903.76236,195.04772,30.47632,6.42174,27.24048,8.94674,2.00916,0.31322,77.04912,10.40298,30.97802,243.55408,24.98768,0.15638,96.0455,3.60374,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0.24,0.003,155.925,3511.082 -2047,11.12331,0.23363,333.20822,8.61842,28356.36,896.01497,193.94659,30.12799,6.36118,27.13211,8.99398,2.01967,0.29649,76.43869,10.57601,30.91099,245.90826,25.27031,0.13956,95.90035,3.64818,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0.228,0.002,155.925,3511.082 -2048,11.09264,0.23862,332.58448,8.60838,27463.84,888.26758,192.84546,29.77966,6.30062,27.02374,9.04122,2.03018,0.27976,75.82826,10.74904,30.84396,248.26244,25.55294,0.12274,95.7552,3.69262,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0.217,0.002,155.925,3511.082 -2049,11.06197,0.24361,331.96074,8.59834,26571.32,880.52019,191.74433,29.43133,6.24006,26.91537,9.08846,2.04069,0.26303,75.21783,10.92207,30.77693,250.61662,25.83557,0.10592,95.61005,3.73706,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0.206,0.002,155.925,3511.082 -2050,11.0313,0.2486,331.337,8.5883,25678.8,872.7728,190.6432,29.083,6.1795,26.807,9.1357,2.0512,0.2463,74.6074,11.0951,30.7099,252.9708,26.1182,0.0891,95.4649,3.7815,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0.195,0.002,155.925,3511.082 -2051,10.86829,0.24215,329.96427,8.58011,25182.07,863.3512,189.56776,28.72999,6.11469,26.61515,9.11255,2.04957,0.23542,75.55522,11.09689,30.26107,252.01802,26.06031,0.08327,94.54597,3.83266,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0.186,0.001,155.925,3511.082 -2052,10.70528,0.2357,328.59154,8.57192,24685.34,853.9296,188.49232,28.37698,6.04988,26.4233,9.0894,2.04794,0.22454,76.50304,11.09868,29.81224,251.06524,26.00242,0.07744,93.62704,3.88382,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0.176,0.001,155.925,3511.082 -2053,10.54227,0.22925,327.21881,8.56373,24188.61,844.508,187.41688,28.02397,5.98507,26.23145,9.06625,2.04631,0.21366,77.45086,11.10047,29.36341,250.11246,25.94453,0.07161,92.70811,3.93498,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0.168,0.001,155.925,3511.082 -2054,10.37926,0.2228,325.84608,8.55554,23691.88,835.0864,186.34144,27.67096,5.92026,26.0396,9.0431,2.04468,0.20278,78.39868,11.10226,28.91458,249.15968,25.88664,0.06578,91.78918,3.98614,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0.159,0.001,155.925,3511.082 -2055,10.21625,0.21635,324.47335,8.54735,23195.15,825.6648,185.266,27.31795,5.85545,25.84775,9.01995,2.04305,0.1919,79.3465,11.10405,28.46575,248.2069,25.82875,0.05995,90.87025,4.0373,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0.151,0.001,155.925,3511.082 -2056,10.05324,0.2099,323.10062,8.53916,22698.42,816.2432,184.19056,26.96494,5.79064,25.6559,8.9968,2.04142,0.18102,80.29432,11.10584,28.01692,247.25412,25.77086,0.05412,89.95132,4.08846,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0.144,0.001,155.925,3511.082 -2057,9.89023,0.20345,321.72789,8.53097,22201.69,806.8216,183.11512,26.61193,5.72583,25.46405,8.97365,2.03979,0.17014,81.24214,11.10763,27.56809,246.30134,25.71297,0.04829,89.03239,4.13962,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0.136,0.001,155.925,3511.082 -2058,9.72722,0.197,320.35516,8.52278,21704.96,797.4,182.03968,26.25892,5.66102,25.2722,8.9505,2.03816,0.15926,82.18996,11.10942,27.11926,245.34856,25.65508,0.04246,88.11346,4.19078,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0.13,0.001,155.925,3511.082 -2059,9.56421,0.19055,318.98243,8.51459,21208.23,787.9784,180.96424,25.90591,5.59621,25.08035,8.92735,2.03653,0.14838,83.13778,11.11121,26.67043,244.39578,25.59719,0.03663,87.19453,4.24194,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0.123,0.001,155.925,3511.082 -2060,9.4012,0.1841,317.6097,8.5064,20711.5,778.5568,179.8888,25.5529,5.5314,24.8885,8.9042,2.0349,0.1375,84.0856,11.113,26.2216,243.443,25.5393,0.0308,86.2756,4.2931,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0.117,0.001,155.925,3511.082 -2061,9.1729,0.17607,315.92522,8.49168,20280.23,768.06528,178.54508,25.2186,5.46337,24.67492,8.91416,2.0301,0.13105,85.06506,11.10641,25.99838,244.90395,25.78992,0.02989,85.73583,4.35328,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0.111,0,155.925,3511.082 -2062,8.9446,0.16804,314.24074,8.47696,19848.96,757.57376,177.20136,24.8843,5.39534,24.46134,8.92412,2.0253,0.1246,86.04452,11.09982,25.77516,246.3649,26.04054,0.02898,85.19606,4.41346,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0.106,0,155.925,3511.082 -2063,8.7163,0.16001,312.55626,8.46224,19417.69,747.08224,175.85764,24.55,5.32731,24.24776,8.93408,2.0205,0.11815,87.02398,11.09323,25.55194,247.82585,26.29116,0.02807,84.65629,4.47364,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0.1,0,155.925,3511.082 -2064,8.488,0.15198,310.87178,8.44752,18986.42,736.59072,174.51392,24.2157,5.25928,24.03418,8.94404,2.0157,0.1117,88.00344,11.08664,25.32872,249.2868,26.54178,0.02716,84.11652,4.53382,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0.095,0,155.925,3511.082 -2065,8.2597,0.14395,309.1873,8.4328,18555.15,726.0992,173.1702,23.8814,5.19125,23.8206,8.954,2.0109,0.10525,88.9829,11.08005,25.1055,250.74775,26.7924,0.02625,83.57675,4.594,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0.091,0,155.925,3511.082 -2066,8.0314,0.13592,307.50282,8.41808,18123.88,715.60768,171.82648,23.5471,5.12322,23.60702,8.96396,2.0061,0.0988,89.96236,11.07346,24.88228,252.2087,27.04302,0.02534,83.03698,4.65418,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0.086,0,155.925,3511.082 -2067,7.8031,0.12789,305.81834,8.40336,17692.61,705.11616,170.48276,23.2128,5.05519,23.39344,8.97392,2.0013,0.09235,90.94182,11.06687,24.65906,253.66965,27.29364,0.02443,82.49721,4.71436,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0.082,0,155.925,3511.082 -2068,7.5748,0.11986,304.13386,8.38864,17261.34,694.62464,169.13904,22.8785,4.98716,23.17986,8.98388,1.9965,0.0859,91.92128,11.06028,24.43584,255.1306,27.54426,0.02352,81.95744,4.77454,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0.078,0,155.925,3511.082 -2069,7.3465,0.11183,302.44938,8.37392,16830.07,684.13312,167.79532,22.5442,4.91913,22.96628,8.99384,1.9917,0.07945,92.90074,11.05369,24.21262,256.59155,27.79488,0.02261,81.41767,4.83472,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0.074,0,155.925,3511.082 -2070,7.1182,0.1038,300.7649,8.3592,16398.8,673.6416,166.4516,22.2099,4.8511,22.7527,9.0038,1.9869,0.073,93.8802,11.0471,23.9894,258.0525,28.0455,0.0217,80.8779,4.8949,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0.07,0,155.925,3511.082 -2071,6.82459,0.0942,298.76876,8.33796,16033.02,662.0793,164.83958,21.89432,4.77984,22.5174,9.04993,1.97901,0.06942,94.1193,11.03809,23.94406,262.30888,28.61994,0.02131,80.71735,4.96411,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0.067,0,155.925,3511.082 -2072,6.53098,0.0846,296.77262,8.31672,15667.24,650.517,163.22756,21.57874,4.70858,22.2821,9.09606,1.97112,0.06584,94.3584,11.02908,23.89872,266.56526,29.19438,0.02092,80.5568,5.03332,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0.063,0,155.925,3511.082 -2073,6.23737,0.075,294.77648,8.29548,15301.46,638.9547,161.61554,21.26316,4.63732,22.0468,9.14219,1.96323,0.06226,94.5975,11.02007,23.85338,270.82164,29.76882,0.02053,80.39625,5.10253,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0.06,0,155.925,3511.082 -2074,5.94376,0.0654,292.78034,8.27424,14935.68,627.3924,160.00352,20.94758,4.56606,21.8115,9.18832,1.95534,0.05868,94.8366,11.01106,23.80804,275.07802,30.34326,0.02014,80.2357,5.17174,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0.057,0,155.925,3511.082 -2075,5.65015,0.0558,290.7842,8.253,14569.9,615.8301,158.3915,20.632,4.4948,21.5762,9.23445,1.94745,0.0551,95.0757,11.00205,23.7627,279.3344,30.9177,0.01975,80.07515,5.24095,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0.054,0,155.925,3511.082 -2076,5.35654,0.0462,288.78806,8.23176,14204.12,604.2678,156.77948,20.31642,4.42354,21.3409,9.28058,1.93956,0.05152,95.3148,10.99304,23.71736,283.59078,31.49214,0.01936,79.9146,5.31016,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0.052,0,155.925,3511.082 -2077,5.06293,0.0366,286.79192,8.21052,13838.34,592.7055,155.16746,20.00084,4.35228,21.1056,9.32671,1.93167,0.04794,95.5539,10.98403,23.67202,287.84716,32.06658,0.01897,79.75405,5.37937,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0.049,0,155.925,3511.082 -2078,4.76932,0.027,284.79578,8.18928,13472.56,581.1432,153.55544,19.68526,4.28102,20.8703,9.37284,1.92378,0.04436,95.793,10.97502,23.62668,292.10354,32.64102,0.01858,79.5935,5.44858,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0.046,0,155.925,3511.082 -2079,4.47571,0.0174,282.79964,8.16804,13106.78,569.5809,151.94342,19.36968,4.20976,20.635,9.41897,1.91589,0.04078,96.0321,10.96601,23.58134,296.35992,33.21546,0.01819,79.43295,5.51779,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0.044,0,155.925,3511.082 -2080,4.1821,0.0078,280.8035,8.1468,12741,558.0186,150.3314,19.0541,4.1385,20.3997,9.4651,1.908,0.0372,96.2712,10.957,23.536,300.6163,33.7899,0.0178,79.2724,5.587,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0.042,0,155.925,3511.082 -2081,4.18314,0.00973,280.06659,8.14506,12666.64,553.9826,149.81652,19.0042,4.12467,20.34975,9.57675,1.91453,0.03348,95.76444,10.93657,23.53444,305.85507,34.4037,0.01759,79.4532,5.62936,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0.04,0,155.925,3511.082 -2082,4.18418,0.01166,279.32968,8.14332,12592.28,549.9466,149.30164,18.9543,4.11084,20.2998,9.6884,1.92106,0.02976,95.25768,10.91614,23.53288,311.09384,35.0175,0.01738,79.634,5.67172,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0.038,0,155.925,3511.082 -2083,4.18522,0.01359,278.59277,8.14158,12517.92,545.9106,148.78676,18.9044,4.09701,20.24985,9.80005,1.92759,0.02604,94.75092,10.89571,23.53132,316.33261,35.6313,0.01717,79.8148,5.71408,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0.036,0,155.925,3511.082 -2084,4.18626,0.01552,277.85586,8.13984,12443.56,541.8746,148.27188,18.8545,4.08318,20.1999,9.9117,1.93412,0.02232,94.24416,10.87528,23.52976,321.57138,36.2451,0.01696,79.9956,5.75644,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0.034,0,155.925,3511.082 -2085,4.1873,0.01745,277.11895,8.1381,12369.2,537.8386,147.757,18.8046,4.06935,20.14995,10.02335,1.94065,0.0186,93.7374,10.85485,23.5282,326.81015,36.8589,0.01675,80.1764,5.7988,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0.032,0,155.925,3511.082 -2086,4.18834,0.01938,276.38204,8.13636,12294.84,533.8026,147.24212,18.7547,4.05552,20.1,10.135,1.94718,0.01488,93.23064,10.83442,23.52664,332.04892,37.4727,0.01654,80.3572,5.84116,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0.031,0,155.925,3511.082 -2087,4.18938,0.02131,275.64513,8.13462,12220.48,529.7666,146.72724,18.7048,4.04169,20.05005,10.24665,1.95371,0.01116,92.72388,10.81399,23.52508,337.28769,38.0865,0.01633,80.538,5.88352,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0.029,0,155.925,3511.082 -2088,4.19042,0.02324,274.90822,8.13288,12146.12,525.7306,146.21236,18.6549,4.02786,20.0001,10.3583,1.96024,0.00744,92.21712,10.79356,23.52352,342.52646,38.7003,0.01612,80.7188,5.92588,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0.028,0,155.925,3511.082 -2089,4.19146,0.02517,274.17131,8.13114,12071.76,521.6946,145.69748,18.605,4.01403,19.95015,10.46995,1.96677,0.00372,91.71036,10.77313,23.52196,347.76523,39.3141,0.01591,80.8996,5.96824,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0.026,0,155.925,3511.082 -2090,4.1925,0.0271,273.4344,8.1294,11997.4,517.6586,145.1826,18.5551,4.0002,19.9002,10.5816,1.9733,0,91.2036,10.7527,23.5204,353.004,39.9279,0.0157,81.0804,6.0106,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0.025,0,155.925,3511.082 -2091,4.19355,0.02902,272.69682,8.12762,11923.05,513.6227,144.66772,18.50518,3.98639,19.85023,10.66307,1.98218,0,90.20592,10.71798,23.469,358.61111,40.56215,0.01555,81.2612,6.05297,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0.024,0,155.925,3511.082 -2092,4.1946,0.03094,271.95924,8.12584,11848.7,509.5868,144.15284,18.45526,3.97258,19.80026,10.74454,1.99106,0,89.20824,10.68326,23.4176,364.21822,41.1964,0.0154,81.442,6.09534,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0.023,0,155.925,3511.082 -2093,4.19565,0.03286,271.22166,8.12406,11774.35,505.5509,143.63796,18.40534,3.95877,19.75029,10.82601,1.99994,0,88.21056,10.64854,23.3662,369.82533,41.83065,0.01525,81.6228,6.13771,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0.022,0,155.925,3511.082 -2094,4.1967,0.03478,270.48408,8.12228,11700,501.515,143.12308,18.35542,3.94496,19.70032,10.90748,2.00882,0,87.21288,10.61382,23.3148,375.43244,42.4649,0.0151,81.8036,6.18008,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0.02,0,155.925,3511.082 -2095,4.19775,0.0367,269.7465,8.1205,11625.65,497.4791,142.6082,18.3055,3.93115,19.65035,10.98895,2.0177,0,86.2152,10.5791,23.2634,381.03955,43.09915,0.01495,81.9844,6.22245,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0.019,0,155.925,3511.082 -2096,4.1988,0.03862,269.00892,8.11872,11551.3,493.4432,142.09332,18.25558,3.91734,19.60038,11.07042,2.02658,0,85.21752,10.54438,23.212,386.64666,43.7334,0.0148,82.1652,6.26482,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0.018,0,155.925,3511.082 -2097,4.19985,0.04054,268.27134,8.11694,11476.95,489.4073,141.57844,18.20566,3.90353,19.55041,11.15189,2.03546,0,84.21984,10.50966,23.1606,392.25377,44.36765,0.01465,82.346,6.30719,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0.018,0,155.925,3511.082 -2098,4.2009,0.04246,267.53376,8.11516,11402.6,485.3714,141.06356,18.15574,3.88972,19.50044,11.23336,2.04434,0,83.22216,10.47494,23.1092,397.86088,45.0019,0.0145,82.5268,6.34956,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0.017,0,155.925,3511.082 -2099,4.20195,0.04438,266.79618,8.11338,11328.25,481.3355,140.54868,18.10582,3.87591,19.45047,11.31483,2.05322,0,82.22448,10.44022,23.0578,403.46799,45.63615,0.01435,82.7076,6.39193,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0.016,0,155.925,3511.082 -2100,4.203,0.0463,266.0586,8.1116,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,11.3963,2.0621,0,81.2268,10.4055,23.0064,409.0751,46.2704,0.0142,82.8884,6.4343,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0.015,0,155.925,3511.082 -2101,4.09086,0.04445,266.0588,8.08938,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,11.16938,2.02147,0,81.2268,10.4055,23.0064,408.8936,46.045,0.01423,82.8884,6.30908,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0.014,0,155.925,3511.082 -2102,3.97872,0.0426,266.059,8.06716,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.94246,1.98084,0,81.2268,10.4055,23.0064,408.7121,45.8196,0.01426,82.8884,6.18386,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0.014,0,155.925,3511.082 -2103,3.86658,0.04075,266.0592,8.04494,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.71554,1.94021,0,81.2268,10.4055,23.0064,408.5306,45.5942,0.01429,82.8884,6.05864,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0.013,0,155.925,3511.082 -2104,3.75444,0.0389,266.0594,8.02272,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.48862,1.89958,0,81.2268,10.4055,23.0064,408.3491,45.3688,0.01432,82.8884,5.93342,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0.012,0,155.925,3511.082 -2105,3.6423,0.03705,266.0596,8.0005,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.2617,1.85895,0,81.2268,10.4055,23.0064,408.1676,45.1434,0.01435,82.8884,5.8082,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0.012,0,155.925,3511.082 -2106,3.53016,0.0352,266.0598,7.97828,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,10.03478,1.81832,0,81.2268,10.4055,23.0064,407.9861,44.918,0.01438,82.8884,5.68298,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0.011,0,155.925,3511.082 -2107,3.41802,0.03335,266.06,7.95606,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,9.80786,1.77769,0,81.2268,10.4055,23.0064,407.8046,44.6926,0.01441,82.8884,5.55776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0.011,0,155.925,3511.082 -2108,3.30588,0.0315,266.0602,7.93384,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,9.58094,1.73706,0,81.2268,10.4055,23.0064,407.6231,44.4672,0.01444,82.8884,5.43254,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0.01,0,155.925,3511.082 -2109,3.19374,0.02965,266.0604,7.91162,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,9.35402,1.69643,0,81.2268,10.4055,23.0064,407.4416,44.2418,0.01447,82.8884,5.30732,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0.009,0,155.925,3511.082 -2110,3.0816,0.0278,266.0606,7.8894,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,9.1271,1.6558,0,81.2268,10.4055,23.0064,407.2601,44.0164,0.0145,82.8884,5.1821,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0.009,0,155.925,3511.082 -2111,3.00189,0.02594,266.06075,7.86716,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,8.90017,1.61514,0,81.2268,10.4055,23.0064,407.07859,43.79098,0.01452,82.8884,5.05688,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0.009,0,155.925,3511.082 -2112,2.92218,0.02408,266.0609,7.84492,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,8.67324,1.57448,0,81.2268,10.4055,23.0064,406.89708,43.56556,0.01454,82.8884,4.93166,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0.008,0,155.925,3511.082 -2113,2.84247,0.02222,266.06105,7.82268,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,8.44631,1.53382,0,81.2268,10.4055,23.0064,406.71557,43.34014,0.01456,82.8884,4.80644,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0.008,0,155.925,3511.082 -2114,2.76276,0.02036,266.0612,7.80044,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,8.21938,1.49316,0,81.2268,10.4055,23.0064,406.53406,43.11472,0.01458,82.8884,4.68122,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0.007,0,155.925,3511.082 -2115,2.68305,0.0185,266.06135,7.7782,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.99245,1.4525,0,81.2268,10.4055,23.0064,406.35255,42.8893,0.0146,82.8884,4.556,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0.007,0,155.925,3511.082 -2116,2.60334,0.01664,266.0615,7.75596,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.76552,1.41184,0,81.2268,10.4055,23.0064,406.17104,42.66388,0.01462,82.8884,4.43078,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0.007,0,155.925,3511.082 -2117,2.52363,0.01478,266.06165,7.73372,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.53859,1.37118,0,81.2268,10.4055,23.0064,405.98953,42.43846,0.01464,82.8884,4.30556,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0.006,0,155.925,3511.082 -2118,2.44392,0.01292,266.0618,7.71148,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.31166,1.33052,0,81.2268,10.4055,23.0064,405.80802,42.21304,0.01466,82.8884,4.18034,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0.006,0,155.925,3511.082 -2119,2.36421,0.01106,266.06195,7.68924,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,7.08473,1.28986,0,81.2268,10.4055,23.0064,405.62651,41.98762,0.01468,82.8884,4.05512,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0.006,0,155.925,3511.082 -2120,2.2845,0.0092,266.0621,7.667,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,6.8578,1.2492,0,81.2268,10.4055,23.0064,405.445,41.7622,0.0147,82.8884,3.9299,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0.005,0,155.925,3511.082 -2121,2.25245,0.00828,266.06224,7.64476,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,6.63088,1.20857,0,81.2268,10.4055,23.0064,405.2635,41.53679,0.01474,82.8884,3.80466,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0.005,0,155.925,3511.082 -2122,2.2204,0.00736,266.06238,7.62252,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,6.40396,1.16794,0,81.2268,10.4055,23.0064,405.082,41.31138,0.01478,82.8884,3.67942,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0.005,0,155.925,3511.082 -2123,2.18835,0.00644,266.06252,7.60028,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,6.17704,1.12731,0,81.2268,10.4055,23.0064,404.9005,41.08597,0.01482,82.8884,3.55418,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0.005,0,155.925,3511.082 -2124,2.1563,0.00552,266.06266,7.57804,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.95012,1.08668,0,81.2268,10.4055,23.0064,404.719,40.86056,0.01486,82.8884,3.42894,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0.004,0,155.925,3511.082 -2125,2.12425,0.0046,266.0628,7.5558,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.7232,1.04605,0,81.2268,10.4055,23.0064,404.5375,40.63515,0.0149,82.8884,3.3037,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0.004,0,155.925,3511.082 -2126,2.0922,0.00368,266.06294,7.53356,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.49628,1.00542,0,81.2268,10.4055,23.0064,404.356,40.40974,0.01494,82.8884,3.17846,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0.004,0,155.925,3511.082 -2127,2.06015,0.00276,266.06308,7.51132,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.26936,0.96479,0,81.2268,10.4055,23.0064,404.1745,40.18433,0.01498,82.8884,3.05322,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0.004,0,155.925,3511.082 -2128,2.0281,0.00184,266.06322,7.48908,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,5.04244,0.92416,0,81.2268,10.4055,23.0064,403.993,39.95892,0.01502,82.8884,2.92798,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0.004,0,155.925,3511.082 -2129,1.99605,0.00092,266.06336,7.46684,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,4.81552,0.88353,0,81.2268,10.4055,23.0064,403.8115,39.73351,0.01506,82.8884,2.80274,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0.003,0,155.925,3511.082 -2130,1.964,0.00092,266.0635,7.4446,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,4.5886,0.8429,0,81.2268,10.4055,23.0064,403.63,39.5081,0.0151,82.8884,2.6775,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0.003,0,155.925,3511.082 -2131,1.93853,0.00092,266.06362,7.42237,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,4.36166,0.80226,0,81.2268,10.4055,23.0064,403.4485,39.28269,0.01512,82.8884,2.55229,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0.003,0,155.925,3511.082 -2132,1.91306,0.00092,266.06374,7.40014,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,4.13472,0.76162,0,81.2268,10.4055,23.0064,403.267,39.05728,0.01514,82.8884,2.42708,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0.003,0,155.925,3511.082 -2133,1.88759,0.00092,266.06386,7.37791,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.90778,0.72098,0,81.2268,10.4055,23.0064,403.0855,38.83187,0.01516,82.8884,2.30187,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0.003,0,155.925,3511.082 -2134,1.86212,0.00092,266.06398,7.35568,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.68084,0.68034,0,81.2268,10.4055,23.0064,402.904,38.60646,0.01518,82.8884,2.17666,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0.003,0,155.925,3511.082 -2135,1.83665,0.00092,266.0641,7.33345,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.4539,0.6397,0,81.2268,10.4055,23.0064,402.7225,38.38105,0.0152,82.8884,2.05145,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0.002,0,155.925,3511.082 -2136,1.81118,0.00092,266.06422,7.31122,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.22696,0.59906,0,81.2268,10.4055,23.0064,402.541,38.15564,0.01522,82.8884,1.92624,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0.002,0,155.925,3511.082 -2137,1.78571,0.00092,266.06434,7.28899,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,3.00002,0.55842,0,81.2268,10.4055,23.0064,402.3595,37.93023,0.01524,82.8884,1.80103,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0.002,0,155.925,3511.082 -2138,1.76024,0.00092,266.06446,7.26676,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,2.77308,0.51778,0,81.2268,10.4055,23.0064,402.178,37.70482,0.01526,82.8884,1.67582,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0.002,0,155.925,3511.082 -2139,1.73477,0.00092,266.06458,7.24453,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,2.54614,0.47714,0,81.2268,10.4055,23.0064,401.9965,37.47941,0.01528,82.8884,1.55061,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0.002,0,155.925,3511.082 -2140,1.7093,0.00092,266.0647,7.2223,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,2.3192,0.4365,0,81.2268,10.4055,23.0064,401.815,37.254,0.0153,82.8884,1.4254,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0.002,0,155.925,3511.082 -2141,1.6831375,0.00092,266.06481,7.200075,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,2.092275,0.39585,0,81.2268,10.4055,23.0064,401.6335,37.0286,0.01535,82.8884,1.3001875,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0.002,0,155.925,3511.082 -2142,1.656975,0.00092,266.06493,7.17785,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,1.86535,0.3552,0,81.2268,10.4055,23.0064,401.452,36.8032,0.0154,82.8884,1.174975,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0.002,0,155.925,3511.082 -2143,1.6308125,0.00092,266.06504,7.155625,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,1.638425,0.31455,0,81.2268,10.4055,23.0064,401.2705,36.5778,0.01545,82.8884,1.0497625,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0.002,0,155.925,3511.082 -2144,1.60465,0.00092,266.06515,7.1334,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,1.4115,0.2739,0,81.2268,10.4055,23.0064,401.089,36.3524,0.0155,82.8884,0.92455,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0.002,0,155.925,3511.082 -2145,1.5784875,0.00092,266.06526,7.111175,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,1.184575,0.23325,0,81.2268,10.4055,23.0064,400.9075,36.127,0.01555,82.8884,0.7993375,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0.001,0,155.925,3511.082 -2146,1.552325,0.00092,266.06538,7.08895,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.95765,0.1926,0,81.2268,10.4055,23.0064,400.726,35.9016,0.0156,82.8884,0.674125,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0.001,0,155.925,3511.082 -2147,1.5261625,0.00092,266.06549,7.066725,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.730725,0.15195,0,81.2268,10.4055,23.0064,400.5445,35.6762,0.01565,82.8884,0.5489125,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0.001,0,155.925,3511.082 -2148,1.5,0.00092,266.0656,7.0445,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.5038,0.1113,0,81.2268,10.4055,23.0064,400.363,35.4508,0.0157,82.8884,0.4237,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0.001,0,155.925,3511.082 -2149,1.5354,0.00092,266.0834,7.0065,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2101,10.4253,23.2987,401.2135,35.2926,0.06,82.8825,0.2246,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0.175,0,155.922,3511.082 -2150,1.5468,0.00092,266.0918,7.0074,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2115,10.4255,23.2991,401.2206,35.2933,0.06,82.8842,0.2246,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.949,3511.082 -2151,1.5531,0.00092,266.101,7.008,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2131,10.4256,23.2994,401.2282,35.2939,0.06,82.8858,0.2246,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.957,3511.082 -2152,1.5547,0.00092,266.1095,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2145,10.4258,23.2998,401.2355,35.2945,0.06,82.8872,0.2246,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.964,3511.082 -2153,1.5527,0.00092,266.12,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8286,81.2164,10.426,23.3004,401.2444,35.2953,0.06,82.889,0.2246,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.973,3511.082 -2154,1.5482,0.00092,266.1327,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8287,81.2186,10.4263,23.3011,401.2551,35.2963,0.06,82.8912,0.2246,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.983,3511.082 -2155,1.5419,0.00092,266.1469,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8287,81.221,10.4267,23.3017,401.267,35.2974,0.06,82.8937,0.2246,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.994,3511.082 -2156,1.5324,0.00092,266.16414,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.82874,81.22392,10.42708,23.30256,401.28146,35.29864,0.06,82.8967,0.2246,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.005,3511.082 -2157,1.5229,0.00092,266.18138,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.82878,81.22684,10.42746,23.30342,401.29592,35.29988,0.06,82.8997,0.2246,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.018,3511.082 -2158,1.5134,0.00092,266.19862,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.82882,81.22976,10.42784,23.30428,401.31038,35.30112,0.06,82.9027,0.2246,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.03,3511.082 -2159,1.5039,0.00092,266.21586,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.82886,81.23268,10.42822,23.30514,401.32484,35.30236,0.06,82.9057,0.2246,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.044,3511.082 -2160,1.4944,0.00092,266.2331,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0511,0.0319,0.8289,81.2356,10.4286,23.306,401.3393,35.3036,0.06,82.9087,0.2246,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.057,3511.082 -2161,1.48311,0.00092,266.25295,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05111,0.0319,0.82892,81.23897,10.42903,23.30697,401.35595,35.30507,0.06,82.91213,0.2246,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.071,3511.082 -2162,1.47182,0.00092,266.2728,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05112,0.0319,0.82894,81.24234,10.42946,23.30794,401.3726,35.30654,0.06,82.91556,0.2246,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.084,3511.082 -2163,1.46053,0.00092,266.29265,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05113,0.0319,0.82896,81.24571,10.42989,23.30891,401.38925,35.30801,0.06,82.91899,0.2246,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.098,3511.082 -2164,1.44924,0.00092,266.3125,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05114,0.0319,0.82898,81.24908,10.43032,23.30988,401.4059,35.30948,0.06,82.92242,0.2246,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.112,3511.082 -2165,1.43795,0.00092,266.33235,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05115,0.0319,0.829,81.25245,10.43075,23.31085,401.42255,35.31095,0.06,82.92585,0.2246,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.127,3511.082 -2166,1.42666,0.00092,266.3522,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05116,0.0319,0.82902,81.25582,10.43118,23.31182,401.4392,35.31242,0.06,82.92928,0.2246,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.141,3511.082 -2167,1.41537,0.00092,266.37205,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05117,0.0319,0.82904,81.25919,10.43161,23.31279,401.45585,35.31389,0.06,82.93271,0.2246,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.155,3511.082 -2168,1.40408,0.00092,266.3919,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05118,0.0319,0.82906,81.26256,10.43204,23.31376,401.4725,35.31536,0.06,82.93614,0.2246,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.169,3511.082 -2169,1.39279,0.00092,266.41175,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05119,0.0319,0.82908,81.26593,10.43247,23.31473,401.48915,35.31683,0.06,82.93957,0.2246,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.183,3511.082 -2170,1.3815,0.00092,266.4316,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8291,81.2693,10.4329,23.3157,401.5058,35.3183,0.06,82.943,0.2246,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.198,3511.082 -2171,1.3712,0.00092,266.45171,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82914,81.27272,10.43334,23.31666,401.52268,35.31979,0.06,82.9465,0.2246,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.212,3511.082 -2172,1.3609,0.00092,266.47182,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82918,81.27614,10.43378,23.31762,401.53956,35.32128,0.06,82.95,0.2246,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.226,3511.082 -2173,1.3506,0.00092,266.49193,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82922,81.27956,10.43422,23.31858,401.55644,35.32277,0.06,82.9535,0.2246,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.24,3511.082 -2174,1.3403,0.00092,266.51204,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82926,81.28298,10.43466,23.31954,401.57332,35.32426,0.06,82.957,0.2246,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.254,3511.082 -2175,1.33,0.00092,266.53215,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8293,81.2864,10.4351,23.3205,401.5902,35.32575,0.06,82.9605,0.2246,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.268,3511.082 -2176,1.3197,0.00092,266.55226,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82934,81.28982,10.43554,23.32146,401.60708,35.32724,0.06,82.964,0.2246,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.282,3511.082 -2177,1.3094,0.00092,266.57237,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82938,81.29324,10.43598,23.32242,401.62396,35.32873,0.06,82.9675,0.2246,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.296,3511.082 -2178,1.2991,0.00092,266.59248,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82942,81.29666,10.43642,23.32338,401.64084,35.33022,0.06,82.971,0.2246,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.31,3511.082 -2179,1.2888,0.00092,266.61259,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82946,81.30008,10.43686,23.32434,401.65772,35.33171,0.06,82.9745,0.2246,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.324,3511.082 -2180,1.2785,0.00092,266.6327,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8295,81.3035,10.4373,23.3253,401.6746,35.3332,0.06,82.978,0.2246,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.338,3511.082 -2181,1.26966,0.00092,266.65213,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82954,81.3068,10.43772,23.32625,401.69092,35.33464,0.06,82.98137,0.2246,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.351,3511.082 -2182,1.26082,0.00092,266.67156,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82958,81.3101,10.43814,23.3272,401.70724,35.33608,0.06,82.98474,0.2246,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.365,3511.082 -2183,1.25198,0.00092,266.69099,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82962,81.3134,10.43856,23.32815,401.72356,35.33752,0.06,82.98811,0.2246,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.379,3511.082 -2184,1.24314,0.00092,266.71042,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82966,81.3167,10.43898,23.3291,401.73988,35.33896,0.06,82.99148,0.2246,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.392,3511.082 -2185,1.2343,0.00092,266.72985,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8297,81.32,10.4394,23.33005,401.7562,35.3404,0.06,82.99485,0.2246,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.406,3511.082 -2186,1.22546,0.00092,266.74928,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82974,81.3233,10.43982,23.331,401.77252,35.34184,0.06,82.99822,0.2246,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.419,3511.082 -2187,1.21662,0.00092,266.76871,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82978,81.3266,10.44024,23.33195,401.78884,35.34328,0.06,83.00159,0.2246,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.432,3511.082 -2188,1.20778,0.00092,266.78814,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82982,81.3299,10.44066,23.3329,401.80516,35.34472,0.06,83.00496,0.2246,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.446,3511.082 -2189,1.19894,0.00092,266.80757,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82986,81.3332,10.44108,23.33385,401.82148,35.34616,0.06,83.00833,0.2246,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.459,3511.082 -2190,1.1901,0.00092,266.827,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8299,81.3365,10.4415,23.3348,401.8378,35.3476,0.06,83.0117,0.2246,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.472,3511.082 -2191,1.18257,0.00092,266.84554,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82992,81.33966,10.44192,23.33572,401.85335,35.34897,0.06,83.0149,0.2246,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.485,3511.082 -2192,1.17504,0.00092,266.86408,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82994,81.34282,10.44234,23.33664,401.8689,35.35034,0.06,83.0181,0.2246,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.498,3511.082 -2193,1.16751,0.00092,266.88262,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82996,81.34598,10.44276,23.33756,401.88445,35.35171,0.06,83.0213,0.2246,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.511,3511.082 -2194,1.15998,0.00092,266.90116,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.82998,81.34914,10.44318,23.33848,401.9,35.35308,0.06,83.0245,0.2246,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.524,3511.082 -2195,1.15245,0.00092,266.9197,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83,81.3523,10.4436,23.3394,401.91555,35.35445,0.06,83.0277,0.2246,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.537,3511.082 -2196,1.14492,0.00092,266.93824,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83002,81.35546,10.44402,23.34032,401.9311,35.35582,0.06,83.0309,0.2246,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.549,3511.082 -2197,1.13739,0.00092,266.95678,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83004,81.35862,10.44444,23.34124,401.94665,35.35719,0.06,83.0341,0.2246,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.562,3511.082 -2198,1.12986,0.00092,266.97532,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83006,81.36178,10.44486,23.34216,401.9622,35.35856,0.06,83.0373,0.2246,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.575,3511.082 -2199,1.12233,0.00092,266.99386,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.83008,81.36494,10.44528,23.34308,401.97775,35.35993,0.06,83.0405,0.2246,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.587,3511.082 -2200,1.1148,0.00092,267.0124,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0512,0.0319,0.8301,81.3681,10.4457,23.344,401.9933,35.3613,0.06,83.0437,0.2246,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.6,3511.082 -2201,1.10836,0.00092,267.03006,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05121,0.0319,0.83013,81.3711,10.44606,23.34485,402.00813,35.3626,0.06,83.04677,0.2246,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.612,3511.082 -2202,1.10192,0.00092,267.04772,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05122,0.0319,0.83016,81.3741,10.44642,23.3457,402.02296,35.3639,0.06,83.04984,0.2246,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.624,3511.082 -2203,1.09548,0.00092,267.06538,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05123,0.0319,0.83019,81.3771,10.44678,23.34655,402.03779,35.3652,0.06,83.05291,0.2246,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.637,3511.082 -2204,1.08904,0.00092,267.08304,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05124,0.0319,0.83022,81.3801,10.44714,23.3474,402.05262,35.3665,0.06,83.05598,0.2246,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.649,3511.082 -2205,1.0826,0.00092,267.1007,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05125,0.0319,0.83025,81.3831,10.4475,23.34825,402.06745,35.3678,0.06,83.05905,0.2246,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.661,3511.082 -2206,1.07616,0.00092,267.11836,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05126,0.0319,0.83028,81.3861,10.44786,23.3491,402.08228,35.3691,0.06,83.06212,0.2246,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.673,3511.082 -2207,1.06972,0.00092,267.13602,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05127,0.0319,0.83031,81.3891,10.44822,23.34995,402.09711,35.3704,0.06,83.06519,0.2246,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.685,3511.082 -2208,1.06328,0.00092,267.15368,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05128,0.0319,0.83034,81.3921,10.44858,23.3508,402.11194,35.3717,0.06,83.06826,0.2246,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.697,3511.082 -2209,1.05684,0.00092,267.17134,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05129,0.0319,0.83037,81.3951,10.44894,23.35165,402.12677,35.373,0.06,83.07133,0.2246,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.709,3511.082 -2210,1.0504,0.00092,267.189,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8304,81.3981,10.4493,23.3525,402.1416,35.3743,0.06,83.0744,0.2246,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.721,3511.082 -2211,1.04486,0.00092,267.2058,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83044,81.40095,10.44967,23.35332,402.15569,35.37553,0.06,83.07732,0.2246,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.733,3511.082 -2212,1.03932,0.00092,267.2226,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83048,81.4038,10.45004,23.35414,402.16978,35.37676,0.06,83.08024,0.2246,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.744,3511.082 -2213,1.03378,0.00092,267.2394,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83052,81.40665,10.45041,23.35496,402.18387,35.37799,0.06,83.08316,0.2246,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.756,3511.082 -2214,1.02824,0.00092,267.2562,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83056,81.4095,10.45078,23.35578,402.19796,35.37922,0.06,83.08608,0.2246,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.768,3511.082 -2215,1.0227,0.00092,267.273,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8306,81.41235,10.45115,23.3566,402.21205,35.38045,0.06,83.089,0.2246,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.779,3511.082 -2216,1.01716,0.00092,267.2898,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83064,81.4152,10.45152,23.35742,402.22614,35.38168,0.06,83.09192,0.2246,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.791,3511.082 -2217,1.01162,0.00092,267.3066,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83068,81.41805,10.45189,23.35824,402.24023,35.38291,0.06,83.09484,0.2246,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.802,3511.082 -2218,1.00608,0.00092,267.3234,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83072,81.4209,10.45226,23.35906,402.25432,35.38414,0.06,83.09776,0.2246,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.813,3511.082 -2219,1.00054,0.00092,267.3402,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83076,81.42375,10.45263,23.35988,402.26841,35.38537,0.06,83.10068,0.2246,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.825,3511.082 -2220,0.995,0.00092,267.357,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8308,81.4266,10.453,23.3607,402.2825,35.3866,0.06,83.1036,0.2246,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.836,3511.082 -2221,0.99023,0.00092,267.373,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83082,81.42932,10.45337,23.36148,402.29593,35.38779,0.06,83.10637,0.2246,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.847,3511.082 -2222,0.98546,0.00092,267.389,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83084,81.43204,10.45374,23.36226,402.30936,35.38898,0.06,83.10914,0.2246,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.858,3511.082 -2223,0.98069,0.00092,267.405,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83086,81.43476,10.45411,23.36304,402.32279,35.39017,0.06,83.11191,0.2246,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.869,3511.082 -2224,0.97592,0.00092,267.421,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83088,81.43748,10.45448,23.36382,402.33622,35.39136,0.06,83.11468,0.2246,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.88,3511.082 -2225,0.97115,0.00092,267.437,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8309,81.4402,10.45485,23.3646,402.34965,35.39255,0.06,83.11745,0.2246,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.891,3511.082 -2226,0.96638,0.00092,267.453,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83092,81.44292,10.45522,23.36538,402.36308,35.39374,0.06,83.12022,0.2246,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.902,3511.082 -2227,0.96161,0.00092,267.469,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83094,81.44564,10.45559,23.36616,402.37651,35.39493,0.06,83.12299,0.2246,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.913,3511.082 -2228,0.95684,0.00092,267.485,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83096,81.44836,10.45596,23.36694,402.38994,35.39612,0.06,83.12576,0.2246,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.924,3511.082 -2229,0.95207,0.00092,267.501,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83098,81.45108,10.45633,23.36772,402.40337,35.39731,0.06,83.12853,0.2246,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.935,3511.082 -2230,0.9473,0.00092,267.517,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.831,81.4538,10.4567,23.3685,402.4168,35.3985,0.06,83.1313,0.2246,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.945,3511.082 -2231,0.94314,0.00092,267.53226,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83103,81.45639,10.45701,23.36925,402.42961,35.39963,0.06,83.13395,0.2246,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.956,3511.082 -2232,0.93898,0.00092,267.54752,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83106,81.45898,10.45732,23.37,402.44242,35.40076,0.06,83.1366,0.2246,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.967,3511.082 -2233,0.93482,0.00092,267.56278,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83109,81.46157,10.45763,23.37075,402.45523,35.40189,0.06,83.13925,0.2246,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.977,3511.082 -2234,0.93066,0.00092,267.57804,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83112,81.46416,10.45794,23.3715,402.46804,35.40302,0.06,83.1419,0.2246,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.988,3511.082 -2235,0.9265,0.00092,267.5933,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83115,81.46675,10.45825,23.37225,402.48085,35.40415,0.06,83.14455,0.2246,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.998,3511.082 -2236,0.92234,0.00092,267.60856,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83118,81.46934,10.45856,23.373,402.49366,35.40528,0.06,83.1472,0.2246,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.008,3511.082 -2237,0.91818,0.00092,267.62382,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83121,81.47193,10.45887,23.37375,402.50647,35.40641,0.06,83.14985,0.2246,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.019,3511.082 -2238,0.91402,0.00092,267.63908,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83124,81.47452,10.45918,23.3745,402.51928,35.40754,0.06,83.1525,0.2246,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.029,3511.082 -2239,0.90986,0.00092,267.65434,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83127,81.47711,10.45949,23.37525,402.53209,35.40867,0.06,83.15515,0.2246,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.039,3511.082 -2240,0.9057,0.00092,267.6696,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8313,81.4797,10.4598,23.376,402.5449,35.4098,0.06,83.1578,0.2246,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.05,3511.082 -2241,0.90206,0.00092,267.68419,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83133,81.48216,10.46013,23.37671,402.55715,35.41087,0.06,83.16032,0.2246,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.06,3511.082 -2242,0.89842,0.00092,267.69878,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83136,81.48462,10.46046,23.37742,402.5694,35.41194,0.06,83.16284,0.2246,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.07,3511.082 -2243,0.89478,0.00092,267.71337,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83139,81.48708,10.46079,23.37813,402.58165,35.41301,0.06,83.16536,0.2246,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.08,3511.082 -2244,0.89114,0.00092,267.72796,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83142,81.48954,10.46112,23.37884,402.5939,35.41408,0.06,83.16788,0.2246,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.09,3511.082 -2245,0.8875,0.00092,267.74255,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83145,81.492,10.46145,23.37955,402.60615,35.41515,0.06,83.1704,0.2246,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.1,3511.082 -2246,0.88386,0.00092,267.75714,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83148,81.49446,10.46178,23.38026,402.6184,35.41622,0.06,83.17292,0.2246,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.11,3511.082 -2247,0.88022,0.00092,267.77173,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83151,81.49692,10.46211,23.38097,402.63065,35.41729,0.06,83.17544,0.2246,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.12,3511.082 -2248,0.87658,0.00092,267.78632,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83154,81.49938,10.46244,23.38168,402.6429,35.41836,0.06,83.17796,0.2246,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.13,3511.082 -2249,0.87294,0.00092,267.80091,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83157,81.50184,10.46277,23.38239,402.65515,35.41943,0.06,83.18048,0.2246,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.139,3511.082 -2250,0.8693,0.00092,267.8155,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8316,81.5043,10.4631,23.3831,402.6674,35.4205,0.06,83.183,0.2246,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.149,3511.082 -2251,0.8661,0.00092,267.82946,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83162,81.50668,10.46339,23.38378,402.67913,35.42153,0.06,83.18543,0.2246,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.159,3511.082 -2252,0.8629,0.00092,267.84342,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83164,81.50906,10.46368,23.38446,402.69086,35.42256,0.06,83.18786,0.2246,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.168,3511.082 -2253,0.8597,0.00092,267.85738,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83166,81.51144,10.46397,23.38514,402.70259,35.42359,0.06,83.19029,0.2246,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.178,3511.082 -2254,0.8565,0.00092,267.87134,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83168,81.51382,10.46426,23.38582,402.71432,35.42462,0.06,83.19272,0.2246,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.188,3511.082 -2255,0.8533,0.00092,267.8853,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8317,81.5162,10.46455,23.3865,402.72605,35.42565,0.06,83.19515,0.2246,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.197,3511.082 -2256,0.8501,0.00092,267.89926,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83172,81.51858,10.46484,23.38718,402.73778,35.42668,0.06,83.19758,0.2246,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.207,3511.082 -2257,0.8469,0.00092,267.91322,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83174,81.52096,10.46513,23.38786,402.74951,35.42771,0.06,83.20001,0.2246,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.216,3511.082 -2258,0.8437,0.00092,267.92718,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83176,81.52334,10.46542,23.38854,402.76124,35.42874,0.06,83.20244,0.2246,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.226,3511.082 -2259,0.8405,0.00092,267.94114,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83178,81.52572,10.46571,23.38922,402.77297,35.42977,0.06,83.20487,0.2246,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.235,3511.082 -2260,0.8373,0.00092,267.9551,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8318,81.5281,10.466,23.3899,402.7847,35.4308,0.06,83.2073,0.2246,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.244,3511.082 -2261,0.83445,0.00092,267.96848,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83182,81.53037,10.46631,23.39054,402.7959,35.43178,0.06001,83.20961,0.2246,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.253,3511.082 -2262,0.8316,0.00092,267.98186,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83184,81.53264,10.46662,23.39118,402.8071,35.43276,0.06002,83.21192,0.2246,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.263,3511.082 -2263,0.82875,0.00092,267.99524,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83186,81.53491,10.46693,23.39182,402.8183,35.43374,0.06003,83.21423,0.2246,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.272,3511.082 -2264,0.8259,0.00092,268.00862,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83188,81.53718,10.46724,23.39246,402.8295,35.43472,0.06004,83.21654,0.2246,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.281,3511.082 -2265,0.82305,0.00092,268.022,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8319,81.53945,10.46755,23.3931,402.8407,35.4357,0.06005,83.21885,0.2246,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.29,3511.082 -2266,0.8202,0.00092,268.03538,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83192,81.54172,10.46786,23.39374,402.8519,35.43668,0.06006,83.22116,0.2246,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.299,3511.082 -2267,0.81735,0.00092,268.04876,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83194,81.54399,10.46817,23.39438,402.8631,35.43766,0.06007,83.22347,0.2246,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.308,3511.082 -2268,0.8145,0.00092,268.06214,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83196,81.54626,10.46848,23.39502,402.8743,35.43864,0.06008,83.22578,0.2246,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.317,3511.082 -2269,0.81165,0.00092,268.07552,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83198,81.54853,10.46879,23.39566,402.8855,35.43962,0.06009,83.22809,0.2246,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.326,3511.082 -2270,0.8088,0.00092,268.0889,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.832,81.5508,10.4691,23.3963,402.8967,35.4406,0.0601,83.2304,0.2246,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.335,3511.082 -2271,0.80629,0.00092,268.10174,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83202,81.55298,10.46937,23.39694,402.90748,35.44156,0.0601,83.23262,0.2246,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.344,3511.082 -2272,0.80378,0.00092,268.11458,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83204,81.55516,10.46964,23.39758,402.91826,35.44252,0.0601,83.23484,0.2246,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.353,3511.082 -2273,0.80127,0.00092,268.12742,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83206,81.55734,10.46991,23.39822,402.92904,35.44348,0.0601,83.23706,0.2246,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.362,3511.082 -2274,0.79876,0.00092,268.14026,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83208,81.55952,10.47018,23.39886,402.93982,35.44444,0.0601,83.23928,0.2246,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.371,3511.082 -2275,0.79625,0.00092,268.1531,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8321,81.5617,10.47045,23.3995,402.9506,35.4454,0.0601,83.2415,0.2246,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.379,3511.082 -2276,0.79374,0.00092,268.16594,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83212,81.56388,10.47072,23.40014,402.96138,35.44636,0.0601,83.24372,0.2246,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.388,3511.082 -2277,0.79123,0.00092,268.17878,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83214,81.56606,10.47099,23.40078,402.97216,35.44732,0.0601,83.24594,0.2246,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.397,3511.082 -2278,0.78872,0.00092,268.19162,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83216,81.56824,10.47126,23.40142,402.98294,35.44828,0.0601,83.24816,0.2246,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.406,3511.082 -2279,0.78621,0.00092,268.20446,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83218,81.57042,10.47153,23.40206,402.99372,35.44924,0.0601,83.25038,0.2246,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.414,3511.082 -2280,0.7837,0.00092,268.2173,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8322,81.5726,10.4718,23.4027,403.0045,35.4502,0.0601,83.2526,0.2246,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.423,3511.082 -2281,0.78142,0.00092,268.22963,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83223,81.5747,10.47207,23.4033,403.01486,35.45111,0.0601,83.25474,0.2246,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.431,3511.082 -2282,0.77914,0.00092,268.24196,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83226,81.5768,10.47234,23.4039,403.02522,35.45202,0.0601,83.25688,0.2246,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.44,3511.082 -2283,0.77686,0.00092,268.25429,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83229,81.5789,10.47261,23.4045,403.03558,35.45293,0.0601,83.25902,0.2246,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.448,3511.082 -2284,0.77458,0.00092,268.26662,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83232,81.581,10.47288,23.4051,403.04594,35.45384,0.0601,83.26116,0.2246,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.457,3511.082 -2285,0.7723,0.00092,268.27895,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83235,81.5831,10.47315,23.4057,403.0563,35.45475,0.0601,83.2633,0.2246,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.465,3511.082 -2286,0.77002,0.00092,268.29128,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83238,81.5852,10.47342,23.4063,403.06666,35.45566,0.0601,83.26544,0.2246,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.473,3511.082 -2287,0.76774,0.00092,268.30361,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83241,81.5873,10.47369,23.4069,403.07702,35.45657,0.0601,83.26758,0.2246,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.482,3511.082 -2288,0.76546,0.00092,268.31594,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83244,81.5894,10.47396,23.4075,403.08738,35.45748,0.0601,83.26972,0.2246,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.49,3511.082 -2289,0.76318,0.00092,268.32827,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83247,81.5915,10.47423,23.4081,403.09774,35.45839,0.0601,83.27186,0.2246,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.498,3511.082 -2290,0.7609,0.00092,268.3406,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8325,81.5936,10.4745,23.4087,403.1081,35.4593,0.0601,83.274,0.2246,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.507,3511.082 -2291,0.75884,0.00092,268.35247,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83251,81.59562,10.47475,23.40928,403.11806,35.46017,0.06011,83.27607,0.2246,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.515,3511.082 -2292,0.75678,0.00092,268.36434,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83252,81.59764,10.475,23.40986,403.12802,35.46104,0.06012,83.27814,0.2246,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.523,3511.082 -2293,0.75472,0.00092,268.37621,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83253,81.59966,10.47525,23.41044,403.13798,35.46191,0.06013,83.28021,0.2246,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.531,3511.082 -2294,0.75266,0.00092,268.38808,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83254,81.60168,10.4755,23.41102,403.14794,35.46278,0.06014,83.28228,0.2246,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.539,3511.082 -2295,0.7506,0.00092,268.39995,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83255,81.6037,10.47575,23.4116,403.1579,35.46365,0.06015,83.28435,0.2246,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.547,3511.082 -2296,0.74854,0.00092,268.41182,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83256,81.60572,10.476,23.41218,403.16786,35.46452,0.06016,83.28642,0.2246,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.555,3511.082 -2297,0.74648,0.00092,268.42369,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83257,81.60774,10.47625,23.41276,403.17782,35.46539,0.06017,83.28849,0.2246,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.564,3511.082 -2298,0.74442,0.00092,268.43556,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83258,81.60976,10.4765,23.41334,403.18778,35.46626,0.06018,83.29056,0.2246,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.572,3511.082 -2299,0.74236,0.00092,268.44743,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83259,81.61178,10.47675,23.41392,403.19774,35.46713,0.06019,83.29263,0.2246,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.579,3511.082 -2300,0.7403,0.00092,268.4593,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8326,81.6138,10.477,23.4145,403.2077,35.468,0.0602,83.2947,0.2246,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.587,3511.082 -2301,0.738714,0.00092,268.46999,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83262,81.615616,10.477238,23.41502,403.21667,35.46879,0.0602,83.296552,0.2246,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.595,3511.082 -2302,0.737128,0.00092,268.48068,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83264,81.617432,10.477476,23.41554,403.22564,35.46958,0.0602,83.298404,0.2246,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.603,3511.082 -2303,0.735542,0.00092,268.49136,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83266,81.619248,10.477714,23.41606,403.23461,35.47037,0.0602,83.300256,0.2246,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.611,3511.082 -2304,0.733956,0.00092,268.50205,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83268,81.621064,10.477952,23.41658,403.24358,35.47116,0.0602,83.302108,0.2246,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.619,3511.082 -2305,0.73237,0.00092,268.51274,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8327,81.62288,10.47819,23.4171,403.25255,35.47195,0.0602,83.30396,0.2246,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.627,3511.082 -2306,0.730784,0.00092,268.52343,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83272,81.624696,10.478428,23.41762,403.26152,35.47274,0.0602,83.305812,0.2246,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.634,3511.082 -2307,0.729198,0.00092,268.53412,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83274,81.626512,10.478666,23.41814,403.27049,35.47353,0.0602,83.307664,0.2246,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.642,3511.082 -2308,0.727612,0.00092,268.5448,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83276,81.628328,10.478904,23.41866,403.27946,35.47432,0.0602,83.309516,0.2246,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.65,3511.082 -2309,0.726026,0.00092,268.55549,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83278,81.630144,10.479142,23.41918,403.28843,35.47511,0.0602,83.311368,0.2246,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.658,3511.082 -2310,0.72444,0.00092,268.56618,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8328,81.63196,10.47938,23.4197,403.2974,35.4759,0.0602,83.31322,0.2246,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.665,3511.082 -2311,0.722854,0.00092,268.57687,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83282,81.633776,10.479618,23.42022,403.30637,35.47669,0.0602,83.315072,0.2246,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.673,3511.082 -2312,0.721268,0.00092,268.58756,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83284,81.635592,10.479856,23.42074,403.31534,35.47748,0.0602,83.316924,0.2246,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.68,3511.082 -2313,0.719682,0.00092,268.59824,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83286,81.637408,10.480094,23.42126,403.32431,35.47827,0.0602,83.318776,0.2246,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.688,3511.082 -2314,0.718096,0.00092,268.60893,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83288,81.639224,10.480332,23.42178,403.33328,35.47906,0.0602,83.320628,0.2246,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.696,3511.082 -2315,0.71651,0.00092,268.61962,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8329,81.64104,10.48057,23.4223,403.34225,35.47985,0.0602,83.32248,0.2246,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.703,3511.082 -2316,0.714924,0.00092,268.63031,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83292,81.642856,10.480808,23.42282,403.35122,35.48064,0.0602,83.324332,0.2246,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.711,3511.082 -2317,0.713338,0.00092,268.641,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83294,81.644672,10.481046,23.42334,403.36019,35.48143,0.0602,83.326184,0.2246,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.718,3511.082 -2318,0.711752,0.00092,268.65168,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83296,81.646488,10.481284,23.42386,403.36916,35.48222,0.0602,83.328036,0.2246,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.725,3511.082 -2319,0.710166,0.00092,268.66237,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83298,81.648304,10.481522,23.42438,403.37813,35.48301,0.0602,83.329888,0.2246,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.733,3511.082 -2320,0.70858,0.00092,268.67306,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.833,81.65012,10.48176,23.4249,403.3871,35.4838,0.0602,83.33174,0.2246,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.74,3511.082 -2321,0.706994,0.00092,268.68375,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83302,81.651936,10.481998,23.42542,403.39607,35.48459,0.0602,83.333592,0.2246,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.748,3511.082 -2322,0.705408,0.00092,268.69444,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83304,81.653752,10.482236,23.42594,403.40504,35.48538,0.0602,83.335444,0.2246,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.755,3511.082 -2323,0.703822,0.00092,268.70512,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83306,81.655568,10.482474,23.42646,403.41401,35.48617,0.0602,83.337296,0.2246,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.762,3511.082 -2324,0.702236,0.00092,268.71581,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83308,81.657384,10.482712,23.42698,403.42298,35.48696,0.0602,83.339148,0.2246,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.77,3511.082 -2325,0.70065,0.00092,268.7265,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8331,81.6592,10.48295,23.4275,403.43195,35.48775,0.0602,83.341,0.2246,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.777,3511.082 -2326,0.699064,0.00092,268.73719,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83312,81.661016,10.483188,23.42802,403.44092,35.48854,0.0602,83.342852,0.2246,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.784,3511.082 -2327,0.697478,0.00092,268.74788,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83314,81.662832,10.483426,23.42854,403.44989,35.48933,0.0602,83.344704,0.2246,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.791,3511.082 -2328,0.695892,0.00092,268.75856,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83316,81.664648,10.483664,23.42906,403.45886,35.49012,0.0602,83.346556,0.2246,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.798,3511.082 -2329,0.694306,0.00092,268.76925,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83318,81.666464,10.483902,23.42958,403.46783,35.49091,0.0602,83.348408,0.2246,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.806,3511.082 -2330,0.69272,0.00092,268.77994,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8332,81.66828,10.48414,23.4301,403.4768,35.4917,0.0602,83.35026,0.2246,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.813,3511.082 -2331,0.691134,0.00092,268.79063,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83322,81.670096,10.484378,23.43062,403.48577,35.49249,0.0602,83.352112,0.2246,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.82,3511.082 -2332,0.689548,0.00092,268.80132,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83324,81.671912,10.484616,23.43114,403.49474,35.49328,0.0602,83.353964,0.2246,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.827,3511.082 -2333,0.687962,0.00092,268.812,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83326,81.673728,10.484854,23.43166,403.50371,35.49407,0.0602,83.355816,0.2246,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.834,3511.082 -2334,0.686376,0.00092,268.82269,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83328,81.675544,10.485092,23.43218,403.51268,35.49486,0.0602,83.357668,0.2246,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.841,3511.082 -2335,0.68479,0.00092,268.83338,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8333,81.67736,10.48533,23.4327,403.52165,35.49565,0.0602,83.35952,0.2246,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.848,3511.082 -2336,0.683204,0.00092,268.84407,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83332,81.679176,10.485568,23.43322,403.53062,35.49644,0.0602,83.361372,0.2246,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.855,3511.082 -2337,0.681618,0.00092,268.85476,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83334,81.680992,10.485806,23.43374,403.53959,35.49723,0.0602,83.363224,0.2246,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.862,3511.082 -2338,0.680032,0.00092,268.86544,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83336,81.682808,10.486044,23.43426,403.54856,35.49802,0.0602,83.365076,0.2246,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.869,3511.082 -2339,0.678446,0.00092,268.87613,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83338,81.684624,10.486282,23.43478,403.55753,35.49881,0.0602,83.366928,0.2246,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.876,3511.082 -2340,0.67686,0.00092,268.88682,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8334,81.68644,10.48652,23.4353,403.5665,35.4996,0.0602,83.36878,0.2246,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.883,3511.082 -2341,0.675274,0.00092,268.89751,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83342,81.688256,10.486758,23.43582,403.57547,35.50039,0.0602,83.370632,0.2246,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.89,3511.082 -2342,0.673688,0.00092,268.9082,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83344,81.690072,10.486996,23.43634,403.58444,35.50118,0.0602,83.372484,0.2246,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.896,3511.082 -2343,0.672102,0.00092,268.91888,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83346,81.691888,10.487234,23.43686,403.59341,35.50197,0.0602,83.374336,0.2246,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.903,3511.082 -2344,0.670516,0.00092,268.92957,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83348,81.693704,10.487472,23.43738,403.60238,35.50276,0.0602,83.376188,0.2246,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.91,3511.082 -2345,0.66893,0.00092,268.94026,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8335,81.69552,10.48771,23.4379,403.61135,35.50355,0.0602,83.37804,0.2246,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.917,3511.082 -2346,0.667344,0.00092,268.95095,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83352,81.697336,10.487948,23.43842,403.62032,35.50434,0.0602,83.379892,0.2246,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.924,3511.082 -2347,0.665758,0.00092,268.96164,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83354,81.699152,10.488186,23.43894,403.62929,35.50513,0.0602,83.381744,0.2246,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.93,3511.082 -2348,0.664172,0.00092,268.97232,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83356,81.700968,10.488424,23.43946,403.63826,35.50592,0.0602,83.383596,0.2246,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.937,3511.082 -2349,0.662586,0.00092,268.98301,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.83358,81.702784,10.488662,23.43998,403.64723,35.50671,0.0602,83.385448,0.2246,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.944,3511.082 -2350,0.661,0.00092,268.9937,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8336,81.7046,10.4889,23.4405,403.6562,35.5075,0.0602,83.3873,0.2246,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.951,3511.082 -2351,0.659886,0.00092,269.00281,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051304,0.0319,0.833618,81.706144,10.489098,23.440944,403.66384,35.508172,0.0602,83.388878,0.2246,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.957,3511.082 -2352,0.658772,0.00092,269.01192,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051308,0.0319,0.833636,81.707688,10.489296,23.441388,403.67149,35.508844,0.0602,83.390456,0.2246,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.964,3511.082 -2353,0.657658,0.00092,269.02102,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051312,0.0319,0.833654,81.709232,10.489494,23.441832,403.67913,35.509516,0.0602,83.392034,0.2246,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.97,3511.082 -2354,0.656544,0.00092,269.03013,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051316,0.0319,0.833672,81.710776,10.489692,23.442276,403.68678,35.510188,0.0602,83.393612,0.2246,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.977,3511.082 -2355,0.65543,0.00092,269.03924,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05132,0.0319,0.83369,81.71232,10.48989,23.44272,403.69442,35.51086,0.0602,83.39519,0.2246,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.984,3511.082 -2356,0.654316,0.00092,269.04835,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051324,0.0319,0.833708,81.713864,10.490088,23.443164,403.70206,35.511532,0.0602,83.396768,0.2246,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.99,3511.082 -2357,0.653202,0.00092,269.05746,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051328,0.0319,0.833726,81.715408,10.490286,23.443608,403.70971,35.512204,0.0602,83.398346,0.2246,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.997,3511.082 -2358,0.652088,0.00092,269.06656,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051332,0.0319,0.833744,81.716952,10.490484,23.444052,403.71735,35.512876,0.0602,83.399924,0.2246,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.003,3511.082 -2359,0.650974,0.00092,269.07567,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051336,0.0319,0.833762,81.718496,10.490682,23.444496,403.725,35.513548,0.0602,83.401502,0.2246,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.01,3511.082 -2360,0.64986,0.00092,269.08478,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05134,0.0319,0.83378,81.72004,10.49088,23.44494,403.73264,35.51422,0.0602,83.40308,0.2246,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.016,3511.082 -2361,0.648746,0.00092,269.09389,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051344,0.0319,0.833798,81.721584,10.491078,23.445384,403.74028,35.514892,0.0602,83.404658,0.2246,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.023,3511.082 -2362,0.647632,0.00092,269.103,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051348,0.0319,0.833816,81.723128,10.491276,23.445828,403.74793,35.515564,0.0602,83.406236,0.2246,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.029,3511.082 -2363,0.646518,0.00092,269.1121,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051352,0.0319,0.833834,81.724672,10.491474,23.446272,403.75557,35.516236,0.0602,83.407814,0.2246,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.035,3511.082 -2364,0.645404,0.00092,269.12121,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051356,0.0319,0.833852,81.726216,10.491672,23.446716,403.76322,35.516908,0.0602,83.409392,0.2246,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.042,3511.082 -2365,0.64429,0.00092,269.13032,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05136,0.0319,0.83387,81.72776,10.49187,23.44716,403.77086,35.51758,0.0602,83.41097,0.2246,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.048,3511.082 -2366,0.643176,0.00092,269.13943,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051364,0.0319,0.833888,81.729304,10.492068,23.447604,403.7785,35.518252,0.0602,83.412548,0.2246,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.055,3511.082 -2367,0.642062,0.00092,269.14854,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051368,0.0319,0.833906,81.730848,10.492266,23.448048,403.78615,35.518924,0.0602,83.414126,0.2246,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.061,3511.082 -2368,0.640948,0.00092,269.15764,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051372,0.0319,0.833924,81.732392,10.492464,23.448492,403.79379,35.519596,0.0602,83.415704,0.2246,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.067,3511.082 -2369,0.639834,0.00092,269.16675,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051376,0.0319,0.833942,81.733936,10.492662,23.448936,403.80144,35.520268,0.0602,83.417282,0.2246,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.073,3511.082 -2370,0.63872,0.00092,269.17586,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05138,0.0319,0.83396,81.73548,10.49286,23.44938,403.80908,35.52094,0.0602,83.41886,0.2246,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.08,3511.082 -2371,0.637606,0.00092,269.18497,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051384,0.0319,0.833978,81.737024,10.493058,23.449824,403.81672,35.521612,0.0602,83.420438,0.2246,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.086,3511.082 -2372,0.636492,0.00092,269.19408,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051388,0.0319,0.833996,81.738568,10.493256,23.450268,403.82437,35.522284,0.0602,83.422016,0.2246,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.092,3511.082 -2373,0.635378,0.00092,269.20318,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051392,0.0319,0.834014,81.740112,10.493454,23.450712,403.83201,35.522956,0.0602,83.423594,0.2246,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.098,3511.082 -2374,0.634264,0.00092,269.21229,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051396,0.0319,0.834032,81.741656,10.493652,23.451156,403.83966,35.523628,0.0602,83.425172,0.2246,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.105,3511.082 -2375,0.63315,0.00092,269.2214,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0514,0.0319,0.83405,81.7432,10.49385,23.4516,403.8473,35.5243,0.0602,83.42675,0.2246,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.111,3511.082 -2376,0.632036,0.00092,269.23051,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051404,0.0319,0.834068,81.744744,10.494048,23.452044,403.85494,35.524972,0.0602,83.428328,0.2246,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.117,3511.082 -2377,0.630922,0.00092,269.23962,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051408,0.0319,0.834086,81.746288,10.494246,23.452488,403.86259,35.525644,0.0602,83.429906,0.2246,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.123,3511.082 -2378,0.629808,0.00092,269.24872,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051412,0.0319,0.834104,81.747832,10.494444,23.452932,403.87023,35.526316,0.0602,83.431484,0.2246,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.129,3511.082 -2379,0.628694,0.00092,269.25783,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051416,0.0319,0.834122,81.749376,10.494642,23.453376,403.87788,35.526988,0.0602,83.433062,0.2246,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.135,3511.082 -2380,0.62758,0.00092,269.26694,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05142,0.0319,0.83414,81.75092,10.49484,23.45382,403.88552,35.52766,0.0602,83.43464,0.2246,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.141,3511.082 -2381,0.626466,0.00092,269.27605,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051424,0.0319,0.834158,81.752464,10.495038,23.454264,403.89316,35.528332,0.0602,83.436218,0.2246,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.148,3511.082 -2382,0.625352,0.00092,269.28516,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051428,0.0319,0.834176,81.754008,10.495236,23.454708,403.90081,35.529004,0.0602,83.437796,0.2246,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.154,3511.082 -2383,0.624238,0.00092,269.29426,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051432,0.0319,0.834194,81.755552,10.495434,23.455152,403.90845,35.529676,0.0602,83.439374,0.2246,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.16,3511.082 -2384,0.623124,0.00092,269.30337,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051436,0.0319,0.834212,81.757096,10.495632,23.455596,403.9161,35.530348,0.0602,83.440952,0.2246,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.166,3511.082 -2385,0.62201,0.00092,269.31248,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05144,0.0319,0.83423,81.75864,10.49583,23.45604,403.92374,35.53102,0.0602,83.44253,0.2246,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.172,3511.082 -2386,0.620896,0.00092,269.32159,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051444,0.0319,0.834248,81.760184,10.496028,23.456484,403.93138,35.531692,0.0602,83.444108,0.2246,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.178,3511.082 -2387,0.619782,0.00092,269.3307,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051448,0.0319,0.834266,81.761728,10.496226,23.456928,403.93903,35.532364,0.0602,83.445686,0.2246,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.184,3511.082 -2388,0.618668,0.00092,269.3398,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051452,0.0319,0.834284,81.763272,10.496424,23.457372,403.94667,35.533036,0.0602,83.447264,0.2246,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.19,3511.082 -2389,0.617554,0.00092,269.34891,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051456,0.0319,0.834302,81.764816,10.496622,23.457816,403.95432,35.533708,0.0602,83.448842,0.2246,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.195,3511.082 -2390,0.61644,0.00092,269.35802,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05146,0.0319,0.83432,81.76636,10.49682,23.45826,403.96196,35.53438,0.0602,83.45042,0.2246,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.201,3511.082 -2391,0.615326,0.00092,269.36713,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051464,0.0319,0.834338,81.767904,10.497018,23.458704,403.9696,35.535052,0.0602,83.451998,0.2246,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.207,3511.082 -2392,0.614212,0.00092,269.37624,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051468,0.0319,0.834356,81.769448,10.497216,23.459148,403.97725,35.535724,0.0602,83.453576,0.2246,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.213,3511.082 -2393,0.613098,0.00092,269.38534,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051472,0.0319,0.834374,81.770992,10.497414,23.459592,403.98489,35.536396,0.0602,83.455154,0.2246,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.219,3511.082 -2394,0.611984,0.00092,269.39445,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051476,0.0319,0.834392,81.772536,10.497612,23.460036,403.99254,35.537068,0.0602,83.456732,0.2246,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.225,3511.082 -2395,0.61087,0.00092,269.40356,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05148,0.0319,0.83441,81.77408,10.49781,23.46048,404.00018,35.53774,0.0602,83.45831,0.2246,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.231,3511.082 -2396,0.609756,0.00092,269.41267,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051484,0.0319,0.834428,81.775624,10.498008,23.460924,404.00782,35.538412,0.0602,83.459888,0.2246,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.237,3511.082 -2397,0.608642,0.00092,269.42178,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051488,0.0319,0.834446,81.777168,10.498206,23.461368,404.01547,35.539084,0.0602,83.461466,0.2246,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.242,3511.082 -2398,0.607528,0.00092,269.43088,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051492,0.0319,0.834464,81.778712,10.498404,23.461812,404.02311,35.539756,0.0602,83.463044,0.2246,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.248,3511.082 -2399,0.606414,0.00092,269.43999,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051496,0.0319,0.834482,81.780256,10.498602,23.462256,404.03076,35.540428,0.0602,83.464622,0.2246,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.254,3511.082 -2400,0.6053,0.00092,269.4491,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.8345,81.7818,10.4988,23.4627,404.0384,35.5411,0.0602,83.4662,0.2246,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.26,3511.082 -2401,0.604434,0.00092,269.45702,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834514,81.783148,10.498972,23.463086,404.04505,35.541686,0.060202,83.467576,0.2246,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.265,3511.082 -2402,0.603568,0.00092,269.46495,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834528,81.784496,10.499144,23.463472,404.0517,35.542272,0.060204,83.468952,0.2246,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.271,3511.082 -2403,0.602702,0.00092,269.47287,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834542,81.785844,10.499316,23.463858,404.05835,35.542858,0.060206,83.470328,0.2246,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.277,3511.082 -2404,0.601836,0.00092,269.4808,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834556,81.787192,10.499488,23.464244,404.065,35.543444,0.060208,83.471704,0.2246,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.282,3511.082 -2405,0.60097,0.00092,269.48872,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83457,81.78854,10.49966,23.46463,404.07165,35.54403,0.06021,83.47308,0.2246,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.288,3511.082 -2406,0.600104,0.00092,269.49664,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834584,81.789888,10.499832,23.465016,404.0783,35.544616,0.060212,83.474456,0.2246,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.294,3511.082 -2407,0.599238,0.00092,269.50457,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834598,81.791236,10.500004,23.465402,404.08495,35.545202,0.060214,83.475832,0.2246,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.299,3511.082 -2408,0.598372,0.00092,269.51249,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834612,81.792584,10.500176,23.465788,404.0916,35.545788,0.060216,83.477208,0.2246,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.305,3511.082 -2409,0.597506,0.00092,269.52042,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834626,81.793932,10.500348,23.466174,404.09825,35.546374,0.060218,83.478584,0.2246,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.311,3511.082 -2410,0.59664,0.00092,269.52834,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83464,81.79528,10.50052,23.46656,404.1049,35.54696,0.06022,83.47996,0.2246,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.316,3511.082 -2411,0.595774,0.00092,269.53626,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834654,81.796628,10.500692,23.466946,404.11155,35.547546,0.060222,83.481336,0.2246,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.322,3511.082 -2412,0.594908,0.00092,269.54419,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834668,81.797976,10.500864,23.467332,404.1182,35.548132,0.060224,83.482712,0.2246,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.327,3511.082 -2413,0.594042,0.00092,269.55211,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834682,81.799324,10.501036,23.467718,404.12485,35.548718,0.060226,83.484088,0.2246,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.333,3511.082 -2414,0.593176,0.00092,269.56004,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834696,81.800672,10.501208,23.468104,404.1315,35.549304,0.060228,83.485464,0.2246,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.338,3511.082 -2415,0.59231,0.00092,269.56796,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83471,81.80202,10.50138,23.46849,404.13815,35.54989,0.06023,83.48684,0.2246,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.344,3511.082 -2416,0.591444,0.00092,269.57588,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834724,81.803368,10.501552,23.468876,404.1448,35.550476,0.060232,83.488216,0.2246,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.349,3511.082 -2417,0.590578,0.00092,269.58381,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834738,81.804716,10.501724,23.469262,404.15145,35.551062,0.060234,83.489592,0.2246,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.355,3511.082 -2418,0.589712,0.00092,269.59173,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834752,81.806064,10.501896,23.469648,404.1581,35.551648,0.060236,83.490968,0.2246,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.36,3511.082 -2419,0.588846,0.00092,269.59966,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834766,81.807412,10.502068,23.470034,404.16475,35.552234,0.060238,83.492344,0.2246,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.366,3511.082 -2420,0.58798,0.00092,269.60758,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83478,81.80876,10.50224,23.47042,404.1714,35.55282,0.06024,83.49372,0.2246,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.371,3511.082 -2421,0.587114,0.00092,269.6155,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834794,81.810108,10.502412,23.470806,404.17805,35.553406,0.060242,83.495096,0.2246,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.377,3511.082 -2422,0.586248,0.00092,269.62343,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834808,81.811456,10.502584,23.471192,404.1847,35.553992,0.060244,83.496472,0.2246,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.382,3511.082 -2423,0.585382,0.00092,269.63135,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834822,81.812804,10.502756,23.471578,404.19135,35.554578,0.060246,83.497848,0.2246,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.388,3511.082 -2424,0.584516,0.00092,269.63928,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834836,81.814152,10.502928,23.471964,404.198,35.555164,0.060248,83.499224,0.2246,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.393,3511.082 -2425,0.58365,0.00092,269.6472,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83485,81.8155,10.5031,23.47235,404.20465,35.55575,0.06025,83.5006,0.2246,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.398,3511.082 -2426,0.582784,0.00092,269.65512,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834864,81.816848,10.503272,23.472736,404.2113,35.556336,0.060252,83.501976,0.2246,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.404,3511.082 -2427,0.581918,0.00092,269.66305,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834878,81.818196,10.503444,23.473122,404.21795,35.556922,0.060254,83.503352,0.2246,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.409,3511.082 -2428,0.581052,0.00092,269.67097,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834892,81.819544,10.503616,23.473508,404.2246,35.557508,0.060256,83.504728,0.2246,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.414,3511.082 -2429,0.580186,0.00092,269.6789,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834906,81.820892,10.503788,23.473894,404.23125,35.558094,0.060258,83.506104,0.2246,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.42,3511.082 -2430,0.57932,0.00092,269.68682,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83492,81.82224,10.50396,23.47428,404.2379,35.55868,0.06026,83.50748,0.2246,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.425,3511.082 -2431,0.578454,0.00092,269.69474,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834934,81.823588,10.504132,23.474666,404.24455,35.559266,0.060262,83.508856,0.2246,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.43,3511.082 -2432,0.577588,0.00092,269.70267,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834948,81.824936,10.504304,23.475052,404.2512,35.559852,0.060264,83.510232,0.2246,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.436,3511.082 -2433,0.576722,0.00092,269.71059,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834962,81.826284,10.504476,23.475438,404.25785,35.560438,0.060266,83.511608,0.2246,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.441,3511.082 -2434,0.575856,0.00092,269.71852,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.834976,81.827632,10.504648,23.475824,404.2645,35.561024,0.060268,83.512984,0.2246,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.446,3511.082 -2435,0.57499,0.00092,269.72644,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83499,81.82898,10.50482,23.47621,404.27115,35.56161,0.06027,83.51436,0.2246,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.451,3511.082 -2436,0.574124,0.00092,269.73436,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835004,81.830328,10.504992,23.476596,404.2778,35.562196,0.060272,83.515736,0.2246,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.457,3511.082 -2437,0.573258,0.00092,269.74229,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835018,81.831676,10.505164,23.476982,404.28445,35.562782,0.060274,83.517112,0.2246,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.462,3511.082 -2438,0.572392,0.00092,269.75021,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835032,81.833024,10.505336,23.477368,404.2911,35.563368,0.060276,83.518488,0.2246,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.467,3511.082 -2439,0.571526,0.00092,269.75814,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835046,81.834372,10.505508,23.477754,404.29775,35.563954,0.060278,83.519864,0.2246,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.472,3511.082 -2440,0.57066,0.00092,269.76606,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83506,81.83572,10.50568,23.47814,404.3044,35.56454,0.06028,83.52124,0.2246,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.477,3511.082 -2441,0.569794,0.00092,269.77398,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835074,81.837068,10.505852,23.478526,404.31105,35.565126,0.060282,83.522616,0.2246,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.482,3511.082 -2442,0.568928,0.00092,269.78191,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835088,81.838416,10.506024,23.478912,404.3177,35.565712,0.060284,83.523992,0.2246,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.488,3511.082 -2443,0.568062,0.00092,269.78983,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835102,81.839764,10.506196,23.479298,404.32435,35.566298,0.060286,83.525368,0.2246,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.493,3511.082 -2444,0.567196,0.00092,269.79776,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835116,81.841112,10.506368,23.479684,404.331,35.566884,0.060288,83.526744,0.2246,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.498,3511.082 -2445,0.56633,0.00092,269.80568,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.83513,81.84246,10.50654,23.48007,404.33765,35.56747,0.06029,83.52812,0.2246,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.503,3511.082 -2446,0.565464,0.00092,269.8136,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835144,81.843808,10.506712,23.480456,404.3443,35.568056,0.060292,83.529496,0.2246,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.508,3511.082 -2447,0.564598,0.00092,269.82153,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835158,81.845156,10.506884,23.480842,404.35095,35.568642,0.060294,83.530872,0.2246,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.513,3511.082 -2448,0.563732,0.00092,269.82945,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835172,81.846504,10.507056,23.481228,404.3576,35.569228,0.060296,83.532248,0.2246,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.518,3511.082 -2449,0.562866,0.00092,269.83738,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.835186,81.847852,10.507228,23.481614,404.36425,35.569814,0.060298,83.533624,0.2246,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.523,3511.082 -2450,0.562,0.00092,269.8453,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0515,0.0319,0.8352,81.8492,10.5074,23.482,404.3709,35.5704,0.0603,83.535,0.2246,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.528,3511.082 -2451,0.56425,0.00092,269.82627,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051496,0.0319,0.835164,81.845968,10.506984,23.481072,404.35493,35.568994,0.060298,83.531698,0.2246,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.533,3511.082 -2452,0.5665,0.00092,269.80724,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051492,0.0319,0.835128,81.842736,10.506568,23.480144,404.33896,35.567588,0.060296,83.528396,0.2246,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.538,3511.082 -2453,0.56875,0.00092,269.7882,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051488,0.0319,0.835092,81.839504,10.506152,23.479216,404.32299,35.566182,0.060294,83.525094,0.2246,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.543,3511.082 -2454,0.571,0.00092,269.76917,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051484,0.0319,0.835056,81.836272,10.505736,23.478288,404.30702,35.564776,0.060292,83.521792,0.2246,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.548,3511.082 -2455,0.57325,0.00092,269.75014,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05148,0.0319,0.83502,81.83304,10.50532,23.47736,404.29105,35.56337,0.06029,83.51849,0.2246,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.553,3511.082 -2456,0.5755,0.00092,269.73111,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051476,0.0319,0.834984,81.829808,10.504904,23.476432,404.27508,35.561964,0.060288,83.515188,0.2246,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.558,3511.082 -2457,0.57775,0.00092,269.71208,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051472,0.0319,0.834948,81.826576,10.504488,23.475504,404.25911,35.560558,0.060286,83.511886,0.2246,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.563,3511.082 -2458,0.58,0.00092,269.69304,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051468,0.0319,0.834912,81.823344,10.504072,23.474576,404.24314,35.559152,0.060284,83.508584,0.2246,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.568,3511.082 -2459,0.58225,0.00092,269.67401,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051464,0.0319,0.834876,81.820112,10.503656,23.473648,404.22717,35.557746,0.060282,83.505282,0.2246,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.573,3511.082 -2460,0.5845,0.00092,269.65498,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05146,0.0319,0.83484,81.81688,10.50324,23.47272,404.2112,35.55634,0.06028,83.50198,0.2246,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.578,3511.082 -2461,0.58675,0.00092,269.63595,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051456,0.0319,0.834804,81.813648,10.502824,23.471792,404.19523,35.554934,0.060278,83.498678,0.2246,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.583,3511.082 -2462,0.589,0.00092,269.61692,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051452,0.0319,0.834768,81.810416,10.502408,23.470864,404.17926,35.553528,0.060276,83.495376,0.2246,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.588,3511.082 -2463,0.59125,0.00092,269.59788,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051448,0.0319,0.834732,81.807184,10.501992,23.469936,404.16329,35.552122,0.060274,83.492074,0.2246,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.593,3511.082 -2464,0.5935,0.00092,269.57885,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051444,0.0319,0.834696,81.803952,10.501576,23.469008,404.14732,35.550716,0.060272,83.488772,0.2246,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.597,3511.082 -2465,0.59575,0.00092,269.55982,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05144,0.0319,0.83466,81.80072,10.50116,23.46808,404.13135,35.54931,0.06027,83.48547,0.2246,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.602,3511.082 -2466,0.598,0.00092,269.54079,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051436,0.0319,0.834624,81.797488,10.500744,23.467152,404.11538,35.547904,0.060268,83.482168,0.2246,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.607,3511.082 -2467,0.60025,0.00092,269.52176,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051432,0.0319,0.834588,81.794256,10.500328,23.466224,404.09941,35.546498,0.060266,83.478866,0.2246,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.612,3511.082 -2468,0.6025,0.00092,269.50272,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051428,0.0319,0.834552,81.791024,10.499912,23.465296,404.08344,35.545092,0.060264,83.475564,0.2246,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.617,3511.082 -2469,0.60475,0.00092,269.48369,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051424,0.0319,0.834516,81.787792,10.499496,23.464368,404.06747,35.543686,0.060262,83.472262,0.2246,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.622,3511.082 -2470,0.607,0.00092,269.46466,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05142,0.0319,0.83448,81.78456,10.49908,23.46344,404.0515,35.54228,0.06026,83.46896,0.2246,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.626,3511.082 -2471,0.60925,0.00092,269.44563,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051416,0.0319,0.834444,81.781328,10.498664,23.462512,404.03553,35.540874,0.060258,83.465658,0.2246,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.631,3511.082 -2472,0.6115,0.00092,269.4266,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051412,0.0319,0.834408,81.778096,10.498248,23.461584,404.01956,35.539468,0.060256,83.462356,0.2246,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.636,3511.082 -2473,0.61375,0.00092,269.40756,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051408,0.0319,0.834372,81.774864,10.497832,23.460656,404.00359,35.538062,0.060254,83.459054,0.2246,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.641,3511.082 -2474,0.616,0.00092,269.38853,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051404,0.0319,0.834336,81.771632,10.497416,23.459728,403.98762,35.536656,0.060252,83.455752,0.2246,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.645,3511.082 -2475,0.61825,0.00092,269.3695,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0514,0.0319,0.8343,81.7684,10.497,23.4588,403.97165,35.53525,0.06025,83.45245,0.2246,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.65,3511.082 -2476,0.6205,0.00092,269.35047,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051396,0.0319,0.834264,81.765168,10.496584,23.457872,403.95568,35.533844,0.060248,83.449148,0.2246,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.655,3511.082 -2477,0.62275,0.00092,269.33144,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051392,0.0319,0.834228,81.761936,10.496168,23.456944,403.93971,35.532438,0.060246,83.445846,0.2246,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.66,3511.082 -2478,0.625,0.00092,269.3124,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051388,0.0319,0.834192,81.758704,10.495752,23.456016,403.92374,35.531032,0.060244,83.442544,0.2246,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.664,3511.082 -2479,0.62725,0.00092,269.29337,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051384,0.0319,0.834156,81.755472,10.495336,23.455088,403.90777,35.529626,0.060242,83.439242,0.2246,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.669,3511.082 -2480,0.6295,0.00092,269.27434,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05138,0.0319,0.83412,81.75224,10.49492,23.45416,403.8918,35.52822,0.06024,83.43594,0.2246,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.674,3511.082 -2481,0.63175,0.00092,269.25531,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051376,0.0319,0.834084,81.749008,10.494504,23.453232,403.87583,35.526814,0.060238,83.432638,0.2246,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.678,3511.082 -2482,0.634,0.00092,269.23628,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051372,0.0319,0.834048,81.745776,10.494088,23.452304,403.85986,35.525408,0.060236,83.429336,0.2246,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.683,3511.082 -2483,0.63625,0.00092,269.21724,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051368,0.0319,0.834012,81.742544,10.493672,23.451376,403.84389,35.524002,0.060234,83.426034,0.2246,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.688,3511.082 -2484,0.6385,0.00092,269.19821,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051364,0.0319,0.833976,81.739312,10.493256,23.450448,403.82792,35.522596,0.060232,83.422732,0.2246,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.692,3511.082 -2485,0.64075,0.00092,269.17918,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05136,0.0319,0.83394,81.73608,10.49284,23.44952,403.81195,35.52119,0.06023,83.41943,0.2246,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.697,3511.082 -2486,0.643,0.00092,269.16015,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051356,0.0319,0.833904,81.732848,10.492424,23.448592,403.79598,35.519784,0.060228,83.416128,0.2246,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.702,3511.082 -2487,0.64525,0.00092,269.14112,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051352,0.0319,0.833868,81.729616,10.492008,23.447664,403.78001,35.518378,0.060226,83.412826,0.2246,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.706,3511.082 -2488,0.6475,0.00092,269.12208,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051348,0.0319,0.833832,81.726384,10.491592,23.446736,403.76404,35.516972,0.060224,83.409524,0.2246,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.711,3511.082 -2489,0.64975,0.00092,269.10305,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051344,0.0319,0.833796,81.723152,10.491176,23.445808,403.74807,35.515566,0.060222,83.406222,0.2246,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.715,3511.082 -2490,0.652,0.00092,269.08402,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05134,0.0319,0.83376,81.71992,10.49076,23.44488,403.7321,35.51416,0.06022,83.40292,0.2246,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.72,3511.082 -2491,0.65425,0.00092,269.06499,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051336,0.0319,0.833724,81.716688,10.490344,23.443952,403.71613,35.512754,0.060218,83.399618,0.2246,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.725,3511.082 -2492,0.6565,0.00092,269.04596,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051332,0.0319,0.833688,81.713456,10.489928,23.443024,403.70016,35.511348,0.060216,83.396316,0.2246,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.729,3511.082 -2493,0.65875,0.00092,269.02692,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051328,0.0319,0.833652,81.710224,10.489512,23.442096,403.68419,35.509942,0.060214,83.393014,0.2246,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.734,3511.082 -2494,0.661,0.00092,269.00789,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051324,0.0319,0.833616,81.706992,10.489096,23.441168,403.66822,35.508536,0.060212,83.389712,0.2246,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0.181,0,158.738,3511.082 -2495,0.66325,0.00092,268.98886,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.05132,0.0319,0.83358,81.70376,10.48868,23.44024,403.65225,35.50713,0.06021,83.38641,0.2246,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.743,3511.082 -2496,0.6655,0.00092,268.96983,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051316,0.0319,0.833544,81.700528,10.488264,23.439312,403.63628,35.505724,0.060208,83.383108,0.2246,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.747,3511.082 -2497,0.66775,0.00092,268.9508,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051312,0.0319,0.833508,81.697296,10.487848,23.438384,403.62031,35.504318,0.060206,83.379806,0.2246,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.752,3511.082 -2498,0.67,0.00092,268.93176,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051308,0.0319,0.833472,81.694064,10.487432,23.437456,403.60434,35.502912,0.060204,83.376504,0.2246,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.756,3511.082 -2499,0.67225,0.00092,268.91273,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.051304,0.0319,0.833436,81.690832,10.487016,23.436528,403.58837,35.501506,0.060202,83.373202,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.761,3511.082 -2500,0.6745,0.00092,268.8937,7.0085,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,0.0513,0.0319,0.8334,81.6876,10.4866,23.4356,403.5724,35.5001,0.0602,83.3699,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.761,3511.082 diff --git a/inst/shinyApp/www/input/emissions/RCP45_emissions.csv b/inst/shinyApp/www/input/emissions/RCP45_emissions.csv deleted file mode 100644 index 7cf2a69..0000000 --- a/inst/shinyApp/www/input/emissions/RCP45_emissions.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP4.5 Emissions, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.0985,1.1385,317.2396,7.721,56.3034,56303.4,1057.0145,214.0518,38.5859,8.2245,35.9952,41.9902,11.411,2.5813,0.4427,10.5529,12.3831,3.8803,14.4509,121.0746,12.7893,5.1614,31.23,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.226,1.0815,318.5722,7.7579,55.8873,55887.3,1052.4683,212.6378,38.3772,8.1977,35.598,42.0965,11.2139,2.5131,0.4492,10.2947,13.7731,4.5246,15.1335,129.6223,13.1314,5.4292,35.5714,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.3531333,1.0245333,319.8964,7.7946667,55.4711,55471.1,1047.8519,211.21813,38.168667,8.1708667,35.199467,42.202733,11.012133,2.4452667,0.45503333,10.037233,15.162767,5.1677,15.798,133.99193,13.4753,5.6901667,39.912933,6.286,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.4802667,0.96756667,321.2206,7.8314333,55.0549,55054.9,1043.2354,209.79847,37.960133,8.1440333,34.800933,42.308967,10.810367,2.3774333,0.46086667,9.7797667,16.552433,5.8108,16.4625,138.36157,13.8192,5.9511333,44.254467,5.9707,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.6074,0.9106,322.5448,7.8682,54.6387,54638.7,1038.619,208.3788,37.7516,8.1172,34.4024,42.4152,10.6086,2.3096,0.4667,9.5223,17.9421,6.4539,17.127,142.7312,14.1631,6.2121,48.596,5.6554,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082 -2011,8.73381,0.85362,323.84112,7.90492,54.22214,54222.14,1033.7724,206.94006,37.54386,8.09002,33.99919,42.5208,10.3919,2.24289,0.43848,8.68531,22.21208,6.53107,18.54246,147.40164,14.51343,5.65092,52.93749,5.34014,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,0,1.445,0.156,167.857,3511.082 -2012,8.86022,0.79664,325.13744,7.94164,53.80558,53805.58,1028.9259,205.50132,37.33612,8.06284,33.59598,42.6264,10.1752,2.17618,0.41026,7.84832,26.48206,6.60824,19.95792,152.07208,14.86376,5.08974,57.27898,5.02488,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,0,1.373,0.139,167.857,3511.082 -2013,8.98663,0.73966,326.43376,7.97836,53.38902,53389.02,1024.0793,204.06258,37.12838,8.03566,33.19277,42.732,9.9585,2.10947,0.38204,7.01133,30.75204,6.68541,21.37338,156.74252,15.21409,4.52856,61.62047,4.70962,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,0,1.304,0.124,167.857,3511.082 -2014,9.11304,0.68268,327.73008,8.01508,52.97246,52972.46,1019.2328,202.62384,36.92064,8.00848,32.78956,42.8376,9.7418,2.04276,0.35382,6.17434,35.02202,6.76258,22.78884,161.41296,15.56442,3.96738,65.96196,4.39436,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,0,1.239,0.11,167.857,3511.082 -2015,9.23945,0.6257,329.0264,8.0518,52.5559,52555.9,1014.3863,201.1851,36.7129,7.9813,32.38635,42.9432,9.5251,1.97605,0.3256,5.33735,39.292,6.83975,24.2043,166.0834,15.91475,3.4062,70.30345,4.0791,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,0,1.177,0.098,155.925,3511.082 -2016,9.36586,0.56872,330.32272,8.08852,52.13934,52139.34,1009.5397,199.74636,36.50516,7.95412,31.98314,43.0488,9.3084,1.90934,0.29738,4.50036,43.56198,6.91692,25.61976,170.75384,16.26508,2.84502,74.64494,3.76384,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,0,1.118,0.087,155.925,3511.082 -2017,9.49227,0.51174,331.61904,8.12524,51.72278,51722.78,1004.6932,198.30762,36.29742,7.92694,31.57993,43.1544,9.0917,1.84263,0.26916,3.66337,47.83196,6.99409,27.03522,175.42428,16.61541,2.28384,78.98643,3.44858,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,0,1.062,0.078,155.925,3511.082 -2018,9.61868,0.45476,332.91536,8.16196,51.30622,51306.22,999.8466,196.86888,36.08968,7.89976,31.17672,43.26,8.875,1.77592,0.24094,2.82638,52.10194,7.07126,28.45068,180.09472,16.96574,1.72266,83.32792,3.13332,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,0,1.009,0.069,155.925,3511.082 -2019,9.74509,0.39778,334.21168,8.19868,50.88966,50889.66,995.00005,195.43014,35.88194,7.87258,30.77351,43.3656,8.6583,1.70921,0.21272,1.98939,56.37192,7.14843,29.86614,184.76516,17.31607,1.16148,87.66941,2.81806,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0,0.959,0.061,155.925,3511.082 -2020,9.8715,0.3408,335.508,8.2354,50.4731,50473.1,990.1535,193.9914,35.6742,7.8454,30.3703,43.4712,8.4416,1.6425,0.1845,1.1524,60.6419,7.2256,31.2816,189.4356,17.6664,0.6003,92.0109,2.5028,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0,0.911,0.055,155.925,3511.082 -2021,9.97968,0.32835,335.85701,8.26904,49.71227,49712.27,990.11353,194.87285,35.58304,7.79487,30.2411,43.66264,8.442,1.65926,0.17723,1.1063,61.78125,7.31559,31.32967,191.31961,17.94569,0.56612,92.38631,2.54361,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0,0.865,0.049,155.925,3511.082 -2022,10.08786,0.3159,336.20602,8.30268,48.95144,48951.44,990.07356,195.7543,35.49188,7.74434,30.1119,43.85408,8.4424,1.67602,0.16996,1.0602,62.9206,7.40558,31.37774,193.20362,18.22498,0.53194,92.76172,2.58442,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0,0.822,0.043,155.925,3511.082 -2023,10.19604,0.30345,336.55503,8.33632,48.19061,48190.61,990.03359,196.63575,35.40072,7.69381,29.9827,44.04552,8.4428,1.69278,0.16269,1.0141,64.05995,7.49557,31.42581,195.08763,18.50427,0.49776,93.13713,2.62523,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0,0.781,0.039,155.925,3511.082 -2024,10.30422,0.291,336.90404,8.36996,47.42978,47429.78,989.99362,197.5172,35.30956,7.64328,29.8535,44.23696,8.4432,1.70954,0.15542,0.968,65.1993,7.58556,31.47388,196.97164,18.78356,0.46358,93.51254,2.66604,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0,0.742,0.034,155.925,3511.082 -2025,10.4124,0.27855,337.25305,8.4036,46.66895,46668.95,989.95365,198.39865,35.2184,7.59275,29.7243,44.4284,8.4436,1.7263,0.14815,0.9219,66.33865,7.67555,31.52195,198.85565,19.06285,0.4294,93.88795,2.70685,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0,0.705,0.031,155.925,3511.082 -2026,10.52058,0.2661,337.60206,8.43724,45.90812,45908.12,989.91368,199.2801,35.12724,7.54222,29.5951,44.61984,8.444,1.74306,0.14088,0.8758,67.478,7.76554,31.57002,200.73966,19.34214,0.39522,94.26336,2.74766,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0,0.669,0.027,155.925,3511.082 -2027,10.62876,0.25365,337.95107,8.47088,45.14729,45147.29,989.87371,200.16155,35.03608,7.49169,29.4659,44.81128,8.4444,1.75982,0.13361,0.8297,68.61735,7.85553,31.61809,202.62367,19.62143,0.36104,94.63877,2.78847,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0,0.636,0.024,155.925,3511.082 -2028,10.73694,0.2412,338.30008,8.50452,44.38646,44386.46,989.83374,201.043,34.94492,7.44116,29.3367,45.00272,8.4448,1.77658,0.12634,0.7836,69.7567,7.94552,31.66616,204.50768,19.90072,0.32686,95.01418,2.82928,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0,0.604,0.022,155.925,3511.082 -2029,10.84512,0.22875,338.64909,8.53816,43.62563,43625.63,989.79377,201.92445,34.85376,7.39063,29.2075,45.19416,8.4452,1.79334,0.11907,0.7375,70.89605,8.03551,31.71423,206.39169,20.18001,0.29268,95.38959,2.87009,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0,0.574,0.019,155.925,3511.082 -2030,10.9533,0.2163,338.9981,8.5718,42.8648,42864.8,989.7538,202.8059,34.7626,7.3401,29.0783,45.3856,8.4456,1.8101,0.1118,0.6914,72.0354,8.1255,31.7623,208.2757,20.4593,0.2585,95.765,2.9109,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0,0.545,0.017,155.925,3511.082 -2031,10.99177,0.21454,338.85573,8.58349,42.03872,42038.72,985.80309,202.69076,34.54297,7.2846,28.95954,45.48715,8.46737,1.8237,0.1119,0.66362,72.90303,8.24943,31.72409,210.39103,20.74256,0.25838,95.88014,2.95352,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0,0.518,0.015,155.925,3511.082 -2032,11.03024,0.21278,338.71336,8.59518,41.21264,41212.64,981.85238,202.57562,34.32334,7.2291,28.84078,45.5887,8.48914,1.8373,0.112,0.63584,73.77066,8.37336,31.68588,212.50636,21.02582,0.25826,95.99528,2.99614,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0,0.492,0.013,155.925,3511.082 -2033,11.06871,0.21102,338.57099,8.60687,40.38656,40386.56,977.90167,202.46048,34.10371,7.1736,28.72202,45.69025,8.51091,1.8509,0.1121,0.60806,74.63829,8.49729,31.64767,214.62169,21.30908,0.25814,96.11042,3.03876,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0,0.467,0.012,155.925,3511.082 -2034,11.10718,0.20926,338.42862,8.61856,39.56048,39560.48,973.95096,202.34534,33.88408,7.1181,28.60326,45.7918,8.53268,1.8645,0.1122,0.58028,75.50592,8.62122,31.60946,216.73702,21.59234,0.25802,96.22556,3.08138,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0,0.444,0.011,155.925,3511.082 -2035,11.14565,0.2075,338.28625,8.63025,38.7344,38734.4,970.00025,202.2302,33.66445,7.0626,28.4845,45.89335,8.55445,1.8781,0.1123,0.5525,76.37355,8.74515,31.57125,218.85235,21.8756,0.2579,96.3407,3.124,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0,0.422,0.01,155.925,3511.082 -2036,11.18412,0.20574,338.14388,8.64194,37.90832,37908.32,966.04954,202.11506,33.44482,7.0071,28.36574,45.9949,8.57622,1.8917,0.1124,0.52472,77.24118,8.86908,31.53304,220.96768,22.15886,0.25778,96.45584,3.16662,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0,0.401,0.008,155.925,3511.082 -2037,11.22259,0.20398,338.00151,8.65363,37.08224,37082.24,962.09883,201.99992,33.22519,6.9516,28.24698,46.09645,8.59799,1.9053,0.1125,0.49694,78.10881,8.99301,31.49483,223.08301,22.44212,0.25766,96.57098,3.20924,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0,0.381,0.008,155.925,3511.082 -2038,11.26106,0.20222,337.85914,8.66532,36.25616,36256.16,958.14812,201.88478,33.00556,6.8961,28.12822,46.198,8.61976,1.9189,0.1126,0.46916,78.97644,9.11694,31.45662,225.19834,22.72538,0.25754,96.68612,3.25186,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0,0.362,0.007,155.925,3511.082 -2039,11.29953,0.20046,337.71677,8.67701,35.43008,35430.08,954.19741,201.76964,32.78593,6.8406,28.00946,46.29955,8.64153,1.9325,0.1127,0.44138,79.84407,9.24087,31.41841,227.31367,23.00864,0.25742,96.80126,3.29448,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0,0.344,0.006,155.925,3511.082 -2040,11.338,0.1987,337.5744,8.6887,34.604,34604,950.2467,201.6545,32.5663,6.7851,27.8907,46.4011,8.6633,1.9461,0.1128,0.4136,80.7117,9.3648,31.3802,229.429,23.2919,0.2573,96.9164,3.3371,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0,0.326,0.005,155.925,3511.082 -2041,11.30733,0.20369,336.95066,8.67866,33.71148,33711.48,942.49931,200.55337,32.21797,6.72454,27.78233,46.41253,8.71054,1.95661,0.11238,0.39687,80.10127,9.53783,31.31317,231.78318,23.57453,0.24048,96.77125,3.38154,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0,0.31,0.005,155.925,3511.082 -2042,11.27666,0.20868,336.32692,8.66862,32.81896,32818.96,934.75192,199.45224,31.86964,6.66398,27.67396,46.42396,8.75778,1.96712,0.11196,0.38014,79.49084,9.71086,31.24614,234.13736,23.85716,0.22366,96.6261,3.42598,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0,0.295,0.004,155.925,3511.082 -2043,11.24599,0.21367,335.70318,8.65858,31.92644,31926.44,927.00453,198.35111,31.52131,6.60342,27.56559,46.43539,8.80502,1.97763,0.11154,0.36341,78.88041,9.88389,31.17911,236.49154,24.13979,0.20684,96.48095,3.47042,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0,0.28,0.004,155.925,3511.082 -2044,11.21532,0.21866,335.07944,8.64854,31.03392,31033.92,919.25714,197.24998,31.17298,6.54286,27.45722,46.44682,8.85226,1.98814,0.11112,0.34668,78.26998,10.05692,31.11208,238.84572,24.42242,0.19002,96.3358,3.51486,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0,0.266,0.003,155.925,3511.082 -2045,11.18465,0.22365,334.4557,8.6385,30.1414,30141.4,911.50975,196.14885,30.82465,6.4823,27.34885,46.45825,8.8995,1.99865,0.1107,0.32995,77.65955,10.22995,31.04505,241.1999,24.70505,0.1732,96.19065,3.5593,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0,0.253,0.003,155.925,3511.082 -2046,11.15398,0.22864,333.83196,8.62846,29.24888,29248.88,903.76236,195.04772,30.47632,6.42174,27.24048,46.46968,8.94674,2.00916,0.11028,0.31322,77.04912,10.40298,30.97802,243.55408,24.98768,0.15638,96.0455,3.60374,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0,0.24,0.003,155.925,3511.082 -2047,11.12331,0.23363,333.20822,8.61842,28.35636,28356.36,896.01497,193.94659,30.12799,6.36118,27.13211,46.48111,8.99398,2.01967,0.10986,0.29649,76.43869,10.57601,30.91099,245.90826,25.27031,0.13956,95.90035,3.64818,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0,0.228,0.002,155.925,3511.082 -2048,11.09264,0.23862,332.58448,8.60838,27.46384,27463.84,888.26758,192.84546,29.77966,6.30062,27.02374,46.49254,9.04122,2.03018,0.10944,0.27976,75.82826,10.74904,30.84396,248.26244,25.55294,0.12274,95.7552,3.69262,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0,0.217,0.002,155.925,3511.082 -2049,11.06197,0.24361,331.96074,8.59834,26.57132,26571.32,880.52019,191.74433,29.43133,6.24006,26.91537,46.50397,9.08846,2.04069,0.10902,0.26303,75.21783,10.92207,30.77693,250.61662,25.83557,0.10592,95.61005,3.73706,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0,0.206,0.002,155.925,3511.082 -2050,11.0313,0.2486,331.337,8.5883,25.6788,25678.8,872.7728,190.6432,29.083,6.1795,26.807,46.5154,9.1357,2.0512,0.1086,0.2463,74.6074,11.0951,30.7099,252.9708,26.1182,0.0891,95.4649,3.7815,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0,0.195,0.002,155.925,3511.082 -2051,10.86829,0.24215,329.96427,8.58011,25.18207,25182.07,863.3512,189.56776,28.72999,6.11469,26.61515,46.46268,9.11255,2.04957,0.10848,0.23542,75.55522,11.09689,30.26107,252.01802,26.06031,0.08327,94.54597,3.83266,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0,0.186,0.001,155.925,3511.082 -2052,10.70528,0.2357,328.59154,8.57192,24.68534,24685.34,853.9296,188.49232,28.37698,6.04988,26.4233,46.40996,9.0894,2.04794,0.10836,0.22454,76.50304,11.09868,29.81224,251.06524,26.00242,0.07744,93.62704,3.88382,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0,0.176,0.001,155.925,3511.082 -2053,10.54227,0.22925,327.21881,8.56373,24.18861,24188.61,844.508,187.41688,28.02397,5.98507,26.23145,46.35724,9.06625,2.04631,0.10824,0.21366,77.45086,11.10047,29.36341,250.11246,25.94453,0.07161,92.70811,3.93498,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0,0.168,0.001,155.925,3511.082 -2054,10.37926,0.2228,325.84608,8.55554,23.69188,23691.88,835.0864,186.34144,27.67096,5.92026,26.0396,46.30452,9.0431,2.04468,0.10812,0.20278,78.39868,11.10226,28.91458,249.15968,25.88664,0.06578,91.78918,3.98614,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0,0.159,0.001,155.925,3511.082 -2055,10.21625,0.21635,324.47335,8.54735,23.19515,23195.15,825.6648,185.266,27.31795,5.85545,25.84775,46.2518,9.01995,2.04305,0.108,0.1919,79.3465,11.10405,28.46575,248.2069,25.82875,0.05995,90.87025,4.0373,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0,0.151,0.001,155.925,3511.082 -2056,10.05324,0.2099,323.10062,8.53916,22.69842,22698.42,816.2432,184.19056,26.96494,5.79064,25.6559,46.19908,8.9968,2.04142,0.10788,0.18102,80.29432,11.10584,28.01692,247.25412,25.77086,0.05412,89.95132,4.08846,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0,0.144,0.001,155.925,3511.082 -2057,9.89023,0.20345,321.72789,8.53097,22.20169,22201.69,806.8216,183.11512,26.61193,5.72583,25.46405,46.14636,8.97365,2.03979,0.10776,0.17014,81.24214,11.10763,27.56809,246.30134,25.71297,0.04829,89.03239,4.13962,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0,0.136,0.001,155.925,3511.082 -2058,9.72722,0.197,320.35516,8.52278,21.70496,21704.96,797.4,182.03968,26.25892,5.66102,25.2722,46.09364,8.9505,2.03816,0.10764,0.15926,82.18996,11.10942,27.11926,245.34856,25.65508,0.04246,88.11346,4.19078,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0,0.13,0.001,155.925,3511.082 -2059,9.56421,0.19055,318.98243,8.51459,21.20823,21208.23,787.9784,180.96424,25.90591,5.59621,25.08035,46.04092,8.92735,2.03653,0.10752,0.14838,83.13778,11.11121,26.67043,244.39578,25.59719,0.03663,87.19453,4.24194,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0,0.123,0.001,155.925,3511.082 -2060,9.4012,0.1841,317.6097,8.5064,20.7115,20711.5,778.5568,179.8888,25.5529,5.5314,24.8885,45.9882,8.9042,2.0349,0.1074,0.1375,84.0856,11.113,26.2216,243.443,25.5393,0.0308,86.2756,4.2931,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0,0.117,0.001,155.925,3511.082 -2061,9.1729,0.17607,315.92522,8.49168,20.28023,20280.23,768.06528,178.54508,25.2186,5.46337,24.67492,45.90952,8.91416,2.0301,0.10732,0.13105,85.06506,11.10641,25.99838,244.90395,25.78992,0.02989,85.73583,4.35328,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0,0.111,0,155.925,3511.082 -2062,8.9446,0.16804,314.24074,8.47696,19.84896,19848.96,757.57376,177.20136,24.8843,5.39534,24.46134,45.83084,8.92412,2.0253,0.10724,0.1246,86.04452,11.09982,25.77516,246.3649,26.04054,0.02898,85.19606,4.41346,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0,0.106,0,155.925,3511.082 -2063,8.7163,0.16001,312.55626,8.46224,19.41769,19417.69,747.08224,175.85764,24.55,5.32731,24.24776,45.75216,8.93408,2.0205,0.10716,0.11815,87.02398,11.09323,25.55194,247.82585,26.29116,0.02807,84.65629,4.47364,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0,0.1,0,155.925,3511.082 -2064,8.488,0.15198,310.87178,8.44752,18.98642,18986.42,736.59072,174.51392,24.2157,5.25928,24.03418,45.67348,8.94404,2.0157,0.10708,0.1117,88.00344,11.08664,25.32872,249.2868,26.54178,0.02716,84.11652,4.53382,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0,0.095,0,155.925,3511.082 -2065,8.2597,0.14395,309.1873,8.4328,18.55515,18555.15,726.0992,173.1702,23.8814,5.19125,23.8206,45.5948,8.954,2.0109,0.107,0.10525,88.9829,11.08005,25.1055,250.74775,26.7924,0.02625,83.57675,4.594,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0,0.091,0,155.925,3511.082 -2066,8.0314,0.13592,307.50282,8.41808,18.12388,18123.88,715.60768,171.82648,23.5471,5.12322,23.60702,45.51612,8.96396,2.0061,0.10692,0.0988,89.96236,11.07346,24.88228,252.2087,27.04302,0.02534,83.03698,4.65418,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0,0.086,0,155.925,3511.082 -2067,7.8031,0.12789,305.81834,8.40336,17.69261,17692.61,705.11616,170.48276,23.2128,5.05519,23.39344,45.43744,8.97392,2.0013,0.10684,0.09235,90.94182,11.06687,24.65906,253.66965,27.29364,0.02443,82.49721,4.71436,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0,0.082,0,155.925,3511.082 -2068,7.5748,0.11986,304.13386,8.38864,17.26134,17261.34,694.62464,169.13904,22.8785,4.98716,23.17986,45.35876,8.98388,1.9965,0.10676,0.0859,91.92128,11.06028,24.43584,255.1306,27.54426,0.02352,81.95744,4.77454,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0,0.078,0,155.925,3511.082 -2069,7.3465,0.11183,302.44938,8.37392,16.83007,16830.07,684.13312,167.79532,22.5442,4.91913,22.96628,45.28008,8.99384,1.9917,0.10668,0.07945,92.90074,11.05369,24.21262,256.59155,27.79488,0.02261,81.41767,4.83472,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0,0.074,0,155.925,3511.082 -2070,7.1182,0.1038,300.7649,8.3592,16.3988,16398.8,673.6416,166.4516,22.2099,4.8511,22.7527,45.2014,9.0038,1.9869,0.1066,0.073,93.8802,11.0471,23.9894,258.0525,28.0455,0.0217,80.8779,4.8949,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0,0.07,0,155.925,3511.082 -2071,6.82459,0.0942,298.76876,8.33796,16.03302,16033.02,662.0793,164.83958,21.89432,4.77984,22.5174,45.09671,9.04993,1.97901,0.10626,0.06942,94.1193,11.03809,23.94406,262.30888,28.61994,0.02131,80.71735,4.96411,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0,0.067,0,155.925,3511.082 -2072,6.53098,0.0846,296.77262,8.31672,15.66724,15667.24,650.517,163.22756,21.57874,4.70858,22.2821,44.99202,9.09606,1.97112,0.10592,0.06584,94.3584,11.02908,23.89872,266.56526,29.19438,0.02092,80.5568,5.03332,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0,0.063,0,155.925,3511.082 -2073,6.23737,0.075,294.77648,8.29548,15.30146,15301.46,638.9547,161.61554,21.26316,4.63732,22.0468,44.88733,9.14219,1.96323,0.10558,0.06226,94.5975,11.02007,23.85338,270.82164,29.76882,0.02053,80.39625,5.10253,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0,0.06,0,155.925,3511.082 -2074,5.94376,0.0654,292.78034,8.27424,14.93568,14935.68,627.3924,160.00352,20.94758,4.56606,21.8115,44.78264,9.18832,1.95534,0.10524,0.05868,94.8366,11.01106,23.80804,275.07802,30.34326,0.02014,80.2357,5.17174,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0,0.057,0,155.925,3511.082 -2075,5.65015,0.0558,290.7842,8.253,14.5699,14569.9,615.8301,158.3915,20.632,4.4948,21.5762,44.67795,9.23445,1.94745,0.1049,0.0551,95.0757,11.00205,23.7627,279.3344,30.9177,0.01975,80.07515,5.24095,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0,0.054,0,155.925,3511.082 -2076,5.35654,0.0462,288.78806,8.23176,14.20412,14204.12,604.2678,156.77948,20.31642,4.42354,21.3409,44.57326,9.28058,1.93956,0.10456,0.05152,95.3148,10.99304,23.71736,283.59078,31.49214,0.01936,79.9146,5.31016,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0,0.052,0,155.925,3511.082 -2077,5.06293,0.0366,286.79192,8.21052,13.83834,13838.34,592.7055,155.16746,20.00084,4.35228,21.1056,44.46857,9.32671,1.93167,0.10422,0.04794,95.5539,10.98403,23.67202,287.84716,32.06658,0.01897,79.75405,5.37937,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0,0.049,0,155.925,3511.082 -2078,4.76932,0.027,284.79578,8.18928,13.47256,13472.56,581.1432,153.55544,19.68526,4.28102,20.8703,44.36388,9.37284,1.92378,0.10388,0.04436,95.793,10.97502,23.62668,292.10354,32.64102,0.01858,79.5935,5.44858,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0,0.046,0,155.925,3511.082 -2079,4.47571,0.0174,282.79964,8.16804,13.10678,13106.78,569.5809,151.94342,19.36968,4.20976,20.635,44.25919,9.41897,1.91589,0.10354,0.04078,96.0321,10.96601,23.58134,296.35992,33.21546,0.01819,79.43295,5.51779,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0,0.044,0,155.925,3511.082 -2080,4.1821,0.0078,280.8035,8.1468,12.741,12741,558.0186,150.3314,19.0541,4.1385,20.3997,44.1545,9.4651,1.908,0.1032,0.0372,96.2712,10.957,23.536,300.6163,33.7899,0.0178,79.2724,5.587,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0,0.042,0,155.925,3511.082 -2081,4.18314,0.00973,280.06659,8.14506,12.66664,12666.64,553.9826,149.81652,19.0042,4.12467,20.34975,44.12524,9.57675,1.91453,0.1026,0.03348,95.76444,10.93657,23.53444,305.85507,34.4037,0.01759,79.4532,5.62936,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0,0.04,0,155.925,3511.082 -2082,4.18418,0.01166,279.32968,8.14332,12.59228,12592.28,549.9466,149.30164,18.9543,4.11084,20.2998,44.09598,9.6884,1.92106,0.102,0.02976,95.25768,10.91614,23.53288,311.09384,35.0175,0.01738,79.634,5.67172,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0,0.038,0,155.925,3511.082 -2083,4.18522,0.01359,278.59277,8.14158,12.51792,12517.92,545.9106,148.78676,18.9044,4.09701,20.24985,44.06672,9.80005,1.92759,0.1014,0.02604,94.75092,10.89571,23.53132,316.33261,35.6313,0.01717,79.8148,5.71408,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0,0.036,0,155.925,3511.082 -2084,4.18626,0.01552,277.85586,8.13984,12.44356,12443.56,541.8746,148.27188,18.8545,4.08318,20.1999,44.03746,9.9117,1.93412,0.1008,0.02232,94.24416,10.87528,23.52976,321.57138,36.2451,0.01696,79.9956,5.75644,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0,0.034,0,155.925,3511.082 -2085,4.1873,0.01745,277.11895,8.1381,12.3692,12369.2,537.8386,147.757,18.8046,4.06935,20.14995,44.0082,10.02335,1.94065,0.1002,0.0186,93.7374,10.85485,23.5282,326.81015,36.8589,0.01675,80.1764,5.7988,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0,0.032,0,155.925,3511.082 -2086,4.18834,0.01938,276.38204,8.13636,12.29484,12294.84,533.8026,147.24212,18.7547,4.05552,20.1,43.97894,10.135,1.94718,0.0996,0.01488,93.23064,10.83442,23.52664,332.04892,37.4727,0.01654,80.3572,5.84116,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0,0.031,0,155.925,3511.082 -2087,4.18938,0.02131,275.64513,8.13462,12.22048,12220.48,529.7666,146.72724,18.7048,4.04169,20.05005,43.94968,10.24665,1.95371,0.099,0.01116,92.72388,10.81399,23.52508,337.28769,38.0865,0.01633,80.538,5.88352,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0,0.029,0,155.925,3511.082 -2088,4.19042,0.02324,274.90822,8.13288,12.14612,12146.12,525.7306,146.21236,18.6549,4.02786,20.0001,43.92042,10.3583,1.96024,0.0984,0.00744,92.21712,10.79356,23.52352,342.52646,38.7003,0.01612,80.7188,5.92588,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0,0.028,0,155.925,3511.082 -2089,4.19146,0.02517,274.17131,8.13114,12.07176,12071.76,521.6946,145.69748,18.605,4.01403,19.95015,43.89116,10.46995,1.96677,0.0978,0.00372,91.71036,10.77313,23.52196,347.76523,39.3141,0.01591,80.8996,5.96824,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0,0.026,0,155.925,3511.082 -2090,4.1925,0.0271,273.4344,8.1294,11.9974,11997.4,517.6586,145.1826,18.5551,4.0002,19.9002,43.8619,10.5816,1.9733,0.0972,0,91.2036,10.7527,23.5204,353.004,39.9279,0.0157,81.0804,6.0106,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0,0.025,0,155.925,3511.082 -2091,4.19355,0.02902,272.69682,8.12762,11.92305,11923.05,513.6227,144.66772,18.50518,3.98639,19.85023,43.83258,10.66307,1.98218,0.09635,0,90.20592,10.71798,23.469,358.61111,40.56215,0.01555,81.2612,6.05297,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0,0.024,0,155.925,3511.082 -2092,4.1946,0.03094,271.95924,8.12584,11.8487,11848.7,509.5868,144.15284,18.45526,3.97258,19.80026,43.80326,10.74454,1.99106,0.0955,0,89.20824,10.68326,23.4176,364.21822,41.1964,0.0154,81.442,6.09534,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0,0.023,0,155.925,3511.082 -2093,4.19565,0.03286,271.22166,8.12406,11.77435,11774.35,505.5509,143.63796,18.40534,3.95877,19.75029,43.77394,10.82601,1.99994,0.09465,0,88.21056,10.64854,23.3662,369.82533,41.83065,0.01525,81.6228,6.13771,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0,0.022,0,155.925,3511.082 -2094,4.1967,0.03478,270.48408,8.12228,11.7,11700,501.515,143.12308,18.35542,3.94496,19.70032,43.74462,10.90748,2.00882,0.0938,0,87.21288,10.61382,23.3148,375.43244,42.4649,0.0151,81.8036,6.18008,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0,0.02,0,155.925,3511.082 -2095,4.19775,0.0367,269.7465,8.1205,11.62565,11625.65,497.4791,142.6082,18.3055,3.93115,19.65035,43.7153,10.98895,2.0177,0.09295,0,86.2152,10.5791,23.2634,381.03955,43.09915,0.01495,81.9844,6.22245,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0,0.019,0,155.925,3511.082 -2096,4.1988,0.03862,269.00892,8.11872,11.5513,11551.3,493.4432,142.09332,18.25558,3.91734,19.60038,43.68598,11.07042,2.02658,0.0921,0,85.21752,10.54438,23.212,386.64666,43.7334,0.0148,82.1652,6.26482,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0,0.018,0,155.925,3511.082 -2097,4.19985,0.04054,268.27134,8.11694,11.47695,11476.95,489.4073,141.57844,18.20566,3.90353,19.55041,43.65666,11.15189,2.03546,0.09125,0,84.21984,10.50966,23.1606,392.25377,44.36765,0.01465,82.346,6.30719,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0,0.018,0,155.925,3511.082 -2098,4.2009,0.04246,267.53376,8.11516,11.4026,11402.6,485.3714,141.06356,18.15574,3.88972,19.50044,43.62734,11.23336,2.04434,0.0904,0,83.22216,10.47494,23.1092,397.86088,45.0019,0.0145,82.5268,6.34956,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0,0.017,0,155.925,3511.082 -2099,4.20195,0.04438,266.79618,8.11338,11.32825,11328.25,481.3355,140.54868,18.10582,3.87591,19.45047,43.59802,11.31483,2.05322,0.08955,0,82.22448,10.44022,23.0578,403.46799,45.63615,0.01435,82.7076,6.39193,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0,0.016,0,155.925,3511.082 -2100,4.203,0.0463,266.0586,8.1116,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,11.3963,2.0621,0.0887,0,81.2268,10.4055,23.0064,409.0751,46.2704,0.0142,82.8884,6.4343,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0,0.015,0,155.925,3511.082 -2101,4.09086,0.04445,266.0588,8.08938,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,11.16938,2.02147,0.08703,0,81.2268,10.4055,23.0064,408.8936,46.045,0.01423,82.8884,6.30908,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0,0.014,0,155.925,3511.082 -2102,3.97872,0.0426,266.059,8.06716,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.94246,1.98084,0.08536,0,81.2268,10.4055,23.0064,408.7121,45.8196,0.01426,82.8884,6.18386,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0,0.014,0,155.925,3511.082 -2103,3.86658,0.04075,266.0592,8.04494,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.71554,1.94021,0.08369,0,81.2268,10.4055,23.0064,408.5306,45.5942,0.01429,82.8884,6.05864,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0,0.013,0,155.925,3511.082 -2104,3.75444,0.0389,266.0594,8.02272,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.48862,1.89958,0.08202,0,81.2268,10.4055,23.0064,408.3491,45.3688,0.01432,82.8884,5.93342,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0,0.012,0,155.925,3511.082 -2105,3.6423,0.03705,266.0596,8.0005,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.2617,1.85895,0.08035,0,81.2268,10.4055,23.0064,408.1676,45.1434,0.01435,82.8884,5.8082,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0,0.012,0,155.925,3511.082 -2106,3.53016,0.0352,266.0598,7.97828,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.03478,1.81832,0.07868,0,81.2268,10.4055,23.0064,407.9861,44.918,0.01438,82.8884,5.68298,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0,0.011,0,155.925,3511.082 -2107,3.41802,0.03335,266.06,7.95606,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.80786,1.77769,0.07701,0,81.2268,10.4055,23.0064,407.8046,44.6926,0.01441,82.8884,5.55776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0,0.011,0,155.925,3511.082 -2108,3.30588,0.0315,266.0602,7.93384,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.58094,1.73706,0.07534,0,81.2268,10.4055,23.0064,407.6231,44.4672,0.01444,82.8884,5.43254,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0,0.01,0,155.925,3511.082 -2109,3.19374,0.02965,266.0604,7.91162,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.35402,1.69643,0.07367,0,81.2268,10.4055,23.0064,407.4416,44.2418,0.01447,82.8884,5.30732,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0,0.009,0,155.925,3511.082 -2110,3.0816,0.0278,266.0606,7.8894,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.1271,1.6558,0.072,0,81.2268,10.4055,23.0064,407.2601,44.0164,0.0145,82.8884,5.1821,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0,0.009,0,155.925,3511.082 -2111,3.00189,0.02594,266.06075,7.86716,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.90017,1.61514,0.07032,0,81.2268,10.4055,23.0064,407.07859,43.79098,0.01452,82.8884,5.05688,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0,0.009,0,155.925,3511.082 -2112,2.92218,0.02408,266.0609,7.84492,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.67324,1.57448,0.06864,0,81.2268,10.4055,23.0064,406.89708,43.56556,0.01454,82.8884,4.93166,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0,0.008,0,155.925,3511.082 -2113,2.84247,0.02222,266.06105,7.82268,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.44631,1.53382,0.06696,0,81.2268,10.4055,23.0064,406.71557,43.34014,0.01456,82.8884,4.80644,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0,0.008,0,155.925,3511.082 -2114,2.76276,0.02036,266.0612,7.80044,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.21938,1.49316,0.06528,0,81.2268,10.4055,23.0064,406.53406,43.11472,0.01458,82.8884,4.68122,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0,0.007,0,155.925,3511.082 -2115,2.68305,0.0185,266.06135,7.7782,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.99245,1.4525,0.0636,0,81.2268,10.4055,23.0064,406.35255,42.8893,0.0146,82.8884,4.556,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0,0.007,0,155.925,3511.082 -2116,2.60334,0.01664,266.0615,7.75596,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.76552,1.41184,0.06192,0,81.2268,10.4055,23.0064,406.17104,42.66388,0.01462,82.8884,4.43078,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0,0.007,0,155.925,3511.082 -2117,2.52363,0.01478,266.06165,7.73372,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.53859,1.37118,0.06024,0,81.2268,10.4055,23.0064,405.98953,42.43846,0.01464,82.8884,4.30556,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0,0.006,0,155.925,3511.082 -2118,2.44392,0.01292,266.0618,7.71148,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.31166,1.33052,0.05856,0,81.2268,10.4055,23.0064,405.80802,42.21304,0.01466,82.8884,4.18034,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0,0.006,0,155.925,3511.082 -2119,2.36421,0.01106,266.06195,7.68924,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.08473,1.28986,0.05688,0,81.2268,10.4055,23.0064,405.62651,41.98762,0.01468,82.8884,4.05512,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0,0.006,0,155.925,3511.082 -2120,2.2845,0.0092,266.0621,7.667,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.8578,1.2492,0.0552,0,81.2268,10.4055,23.0064,405.445,41.7622,0.0147,82.8884,3.9299,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0,0.005,0,155.925,3511.082 -2121,2.25245,0.00828,266.06224,7.64476,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.63088,1.20857,0.05353,0,81.2268,10.4055,23.0064,405.2635,41.53679,0.01474,82.8884,3.80466,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0,0.005,0,155.925,3511.082 -2122,2.2204,0.00736,266.06238,7.62252,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.40396,1.16794,0.05186,0,81.2268,10.4055,23.0064,405.082,41.31138,0.01478,82.8884,3.67942,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0,0.005,0,155.925,3511.082 -2123,2.18835,0.00644,266.06252,7.60028,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.17704,1.12731,0.05019,0,81.2268,10.4055,23.0064,404.9005,41.08597,0.01482,82.8884,3.55418,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0,0.005,0,155.925,3511.082 -2124,2.1563,0.00552,266.06266,7.57804,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.95012,1.08668,0.04852,0,81.2268,10.4055,23.0064,404.719,40.86056,0.01486,82.8884,3.42894,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0,0.004,0,155.925,3511.082 -2125,2.12425,0.0046,266.0628,7.5558,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.7232,1.04605,0.04685,0,81.2268,10.4055,23.0064,404.5375,40.63515,0.0149,82.8884,3.3037,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0,0.004,0,155.925,3511.082 -2126,2.0922,0.00368,266.06294,7.53356,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.49628,1.00542,0.04518,0,81.2268,10.4055,23.0064,404.356,40.40974,0.01494,82.8884,3.17846,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0,0.004,0,155.925,3511.082 -2127,2.06015,0.00276,266.06308,7.51132,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.26936,0.96479,0.04351,0,81.2268,10.4055,23.0064,404.1745,40.18433,0.01498,82.8884,3.05322,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0,0.004,0,155.925,3511.082 -2128,2.0281,0.00184,266.06322,7.48908,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.04244,0.92416,0.04184,0,81.2268,10.4055,23.0064,403.993,39.95892,0.01502,82.8884,2.92798,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0,0.004,0,155.925,3511.082 -2129,1.99605,0.00092,266.06336,7.46684,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.81552,0.88353,0.04017,0,81.2268,10.4055,23.0064,403.8115,39.73351,0.01506,82.8884,2.80274,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0,0.003,0,155.925,3511.082 -2130,1.964,0.00092,266.0635,7.4446,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.5886,0.8429,0.0385,0,81.2268,10.4055,23.0064,403.63,39.5081,0.0151,82.8884,2.6775,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0,0.003,0,155.925,3511.082 -2131,1.93853,0.00092,266.06362,7.42237,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.36166,0.80226,0.03683,0,81.2268,10.4055,23.0064,403.4485,39.28269,0.01512,82.8884,2.55229,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0,0.003,0,155.925,3511.082 -2132,1.91306,0.00092,266.06374,7.40014,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.13472,0.76162,0.03516,0,81.2268,10.4055,23.0064,403.267,39.05728,0.01514,82.8884,2.42708,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0,0.003,0,155.925,3511.082 -2133,1.88759,0.00092,266.06386,7.37791,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.90778,0.72098,0.03349,0,81.2268,10.4055,23.0064,403.0855,38.83187,0.01516,82.8884,2.30187,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0,0.003,0,155.925,3511.082 -2134,1.86212,0.00092,266.06398,7.35568,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.68084,0.68034,0.03182,0,81.2268,10.4055,23.0064,402.904,38.60646,0.01518,82.8884,2.17666,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0,0.003,0,155.925,3511.082 -2135,1.83665,0.00092,266.0641,7.33345,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.4539,0.6397,0.03015,0,81.2268,10.4055,23.0064,402.7225,38.38105,0.0152,82.8884,2.05145,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0,0.002,0,155.925,3511.082 -2136,1.81118,0.00092,266.06422,7.31122,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.22696,0.59906,0.02848,0,81.2268,10.4055,23.0064,402.541,38.15564,0.01522,82.8884,1.92624,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0,0.002,0,155.925,3511.082 -2137,1.78571,0.00092,266.06434,7.28899,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.00002,0.55842,0.02681,0,81.2268,10.4055,23.0064,402.3595,37.93023,0.01524,82.8884,1.80103,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0,0.002,0,155.925,3511.082 -2138,1.76024,0.00092,266.06446,7.26676,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.77308,0.51778,0.02514,0,81.2268,10.4055,23.0064,402.178,37.70482,0.01526,82.8884,1.67582,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0,0.002,0,155.925,3511.082 -2139,1.73477,0.00092,266.06458,7.24453,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.54614,0.47714,0.02347,0,81.2268,10.4055,23.0064,401.9965,37.47941,0.01528,82.8884,1.55061,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0,0.002,0,155.925,3511.082 -2140,1.7093,0.00092,266.0647,7.2223,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.3192,0.4365,0.0218,0,81.2268,10.4055,23.0064,401.815,37.254,0.0153,82.8884,1.4254,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0,0.002,0,155.925,3511.082 -2141,1.6831375,0.00092,266.06481,7.200075,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.092275,0.39585,0.020125,0,81.2268,10.4055,23.0064,401.6335,37.0286,0.01535,82.8884,1.3001875,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0,0.002,0,155.925,3511.082 -2142,1.656975,0.00092,266.06493,7.17785,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.86535,0.3552,0.01845,0,81.2268,10.4055,23.0064,401.452,36.8032,0.0154,82.8884,1.174975,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0,0.002,0,155.925,3511.082 -2143,1.6308125,0.00092,266.06504,7.155625,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.638425,0.31455,0.016775,0,81.2268,10.4055,23.0064,401.2705,36.5778,0.01545,82.8884,1.0497625,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0,0.002,0,155.925,3511.082 -2144,1.60465,0.00092,266.06515,7.1334,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.4115,0.2739,0.0151,0,81.2268,10.4055,23.0064,401.089,36.3524,0.0155,82.8884,0.92455,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0,0.002,0,155.925,3511.082 -2145,1.5784875,0.00092,266.06526,7.111175,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.184575,0.23325,0.013425,0,81.2268,10.4055,23.0064,400.9075,36.127,0.01555,82.8884,0.7993375,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0,0.001,0,155.925,3511.082 -2146,1.552325,0.00092,266.06538,7.08895,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.95765,0.1926,0.01175,0,81.2268,10.4055,23.0064,400.726,35.9016,0.0156,82.8884,0.674125,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0,0.001,0,155.925,3511.082 -2147,1.5261625,0.00092,266.06549,7.066725,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.730725,0.15195,0.010075,0,81.2268,10.4055,23.0064,400.5445,35.6762,0.01565,82.8884,0.5489125,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0,0.001,0,155.925,3511.082 -2148,1.5,0.00092,266.0656,7.0445,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.5038,0.1113,0.0084,0,81.2268,10.4055,23.0064,400.363,35.4508,0.0157,82.8884,0.4237,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0,0.001,0,155.925,3511.082 -2149,1.5354,0.00092,266.0834,7.0065,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2101,10.4253,23.2987,401.2135,35.2926,0.06,82.8825,0.2246,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0,0.175,0,155.922,3511.082 -2150,1.5468,0.00092,266.0918,7.0074,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2115,10.4255,23.2991,401.2206,35.2933,0.06,82.8842,0.2246,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.949,3511.082 -2151,1.5531,0.00092,266.101,7.008,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2131,10.4256,23.2994,401.2282,35.2939,0.06,82.8858,0.2246,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.957,3511.082 -2152,1.5547,0.00092,266.1095,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2145,10.4258,23.2998,401.2355,35.2945,0.06,82.8872,0.2246,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.964,3511.082 -2153,1.5527,0.00092,266.12,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2164,10.426,23.3004,401.2444,35.2953,0.06,82.889,0.2246,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.973,3511.082 -2154,1.5482,0.00092,266.1327,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8287,81.2186,10.4263,23.3011,401.2551,35.2963,0.06,82.8912,0.2246,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.983,3511.082 -2155,1.5419,0.00092,266.1469,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8287,81.221,10.4267,23.3017,401.267,35.2974,0.06,82.8937,0.2246,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.994,3511.082 -2156,1.5324,0.00092,266.16414,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82874,81.22392,10.42708,23.30256,401.28146,35.29864,0.06,82.8967,0.2246,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.005,3511.082 -2157,1.5229,0.00092,266.18138,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82878,81.22684,10.42746,23.30342,401.29592,35.29988,0.06,82.8997,0.2246,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.018,3511.082 -2158,1.5134,0.00092,266.19862,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82882,81.22976,10.42784,23.30428,401.31038,35.30112,0.06,82.9027,0.2246,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.03,3511.082 -2159,1.5039,0.00092,266.21586,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82886,81.23268,10.42822,23.30514,401.32484,35.30236,0.06,82.9057,0.2246,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.044,3511.082 -2160,1.4944,0.00092,266.2331,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8289,81.2356,10.4286,23.306,401.3393,35.3036,0.06,82.9087,0.2246,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.057,3511.082 -2161,1.48311,0.00092,266.25295,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05111,0.0319,0.0058,0.82892,81.23897,10.42903,23.30697,401.35595,35.30507,0.06,82.91213,0.2246,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.071,3511.082 -2162,1.47182,0.00092,266.2728,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05112,0.0319,0.0058,0.82894,81.24234,10.42946,23.30794,401.3726,35.30654,0.06,82.91556,0.2246,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.084,3511.082 -2163,1.46053,0.00092,266.29265,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05113,0.0319,0.0058,0.82896,81.24571,10.42989,23.30891,401.38925,35.30801,0.06,82.91899,0.2246,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.098,3511.082 -2164,1.44924,0.00092,266.3125,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05114,0.0319,0.0058,0.82898,81.24908,10.43032,23.30988,401.4059,35.30948,0.06,82.92242,0.2246,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.112,3511.082 -2165,1.43795,0.00092,266.33235,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05115,0.0319,0.0058,0.829,81.25245,10.43075,23.31085,401.42255,35.31095,0.06,82.92585,0.2246,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.127,3511.082 -2166,1.42666,0.00092,266.3522,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05116,0.0319,0.0058,0.82902,81.25582,10.43118,23.31182,401.4392,35.31242,0.06,82.92928,0.2246,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.141,3511.082 -2167,1.41537,0.00092,266.37205,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05117,0.0319,0.0058,0.82904,81.25919,10.43161,23.31279,401.45585,35.31389,0.06,82.93271,0.2246,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.155,3511.082 -2168,1.40408,0.00092,266.3919,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05118,0.0319,0.0058,0.82906,81.26256,10.43204,23.31376,401.4725,35.31536,0.06,82.93614,0.2246,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.169,3511.082 -2169,1.39279,0.00092,266.41175,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05119,0.0319,0.0058,0.82908,81.26593,10.43247,23.31473,401.48915,35.31683,0.06,82.93957,0.2246,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.183,3511.082 -2170,1.3815,0.00092,266.4316,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8291,81.2693,10.4329,23.3157,401.5058,35.3183,0.06,82.943,0.2246,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.198,3511.082 -2171,1.3712,0.00092,266.45171,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82914,81.27272,10.43334,23.31666,401.52268,35.31979,0.06,82.9465,0.2246,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.212,3511.082 -2172,1.3609,0.00092,266.47182,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82918,81.27614,10.43378,23.31762,401.53956,35.32128,0.06,82.95,0.2246,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.226,3511.082 -2173,1.3506,0.00092,266.49193,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82922,81.27956,10.43422,23.31858,401.55644,35.32277,0.06,82.9535,0.2246,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.24,3511.082 -2174,1.3403,0.00092,266.51204,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82926,81.28298,10.43466,23.31954,401.57332,35.32426,0.06,82.957,0.2246,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.254,3511.082 -2175,1.33,0.00092,266.53215,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8293,81.2864,10.4351,23.3205,401.5902,35.32575,0.06,82.9605,0.2246,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.268,3511.082 -2176,1.3197,0.00092,266.55226,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82934,81.28982,10.43554,23.32146,401.60708,35.32724,0.06,82.964,0.2246,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.282,3511.082 -2177,1.3094,0.00092,266.57237,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82938,81.29324,10.43598,23.32242,401.62396,35.32873,0.06,82.9675,0.2246,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.296,3511.082 -2178,1.2991,0.00092,266.59248,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82942,81.29666,10.43642,23.32338,401.64084,35.33022,0.06,82.971,0.2246,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.31,3511.082 -2179,1.2888,0.00092,266.61259,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82946,81.30008,10.43686,23.32434,401.65772,35.33171,0.06,82.9745,0.2246,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.324,3511.082 -2180,1.2785,0.00092,266.6327,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8295,81.3035,10.4373,23.3253,401.6746,35.3332,0.06,82.978,0.2246,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.338,3511.082 -2181,1.26966,0.00092,266.65213,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82954,81.3068,10.43772,23.32625,401.69092,35.33464,0.06,82.98137,0.2246,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.351,3511.082 -2182,1.26082,0.00092,266.67156,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82958,81.3101,10.43814,23.3272,401.70724,35.33608,0.06,82.98474,0.2246,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.365,3511.082 -2183,1.25198,0.00092,266.69099,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82962,81.3134,10.43856,23.32815,401.72356,35.33752,0.06,82.98811,0.2246,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.379,3511.082 -2184,1.24314,0.00092,266.71042,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82966,81.3167,10.43898,23.3291,401.73988,35.33896,0.06,82.99148,0.2246,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.392,3511.082 -2185,1.2343,0.00092,266.72985,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8297,81.32,10.4394,23.33005,401.7562,35.3404,0.06,82.99485,0.2246,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.406,3511.082 -2186,1.22546,0.00092,266.74928,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82974,81.3233,10.43982,23.331,401.77252,35.34184,0.06,82.99822,0.2246,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.419,3511.082 -2187,1.21662,0.00092,266.76871,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82978,81.3266,10.44024,23.33195,401.78884,35.34328,0.06,83.00159,0.2246,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.432,3511.082 -2188,1.20778,0.00092,266.78814,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82982,81.3299,10.44066,23.3329,401.80516,35.34472,0.06,83.00496,0.2246,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.446,3511.082 -2189,1.19894,0.00092,266.80757,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82986,81.3332,10.44108,23.33385,401.82148,35.34616,0.06,83.00833,0.2246,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.459,3511.082 -2190,1.1901,0.00092,266.827,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8299,81.3365,10.4415,23.3348,401.8378,35.3476,0.06,83.0117,0.2246,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.472,3511.082 -2191,1.18257,0.00092,266.84554,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82992,81.33966,10.44192,23.33572,401.85335,35.34897,0.06,83.0149,0.2246,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.485,3511.082 -2192,1.17504,0.00092,266.86408,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82994,81.34282,10.44234,23.33664,401.8689,35.35034,0.06,83.0181,0.2246,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.498,3511.082 -2193,1.16751,0.00092,266.88262,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82996,81.34598,10.44276,23.33756,401.88445,35.35171,0.06,83.0213,0.2246,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.511,3511.082 -2194,1.15998,0.00092,266.90116,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82998,81.34914,10.44318,23.33848,401.9,35.35308,0.06,83.0245,0.2246,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.524,3511.082 -2195,1.15245,0.00092,266.9197,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83,81.3523,10.4436,23.3394,401.91555,35.35445,0.06,83.0277,0.2246,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.537,3511.082 -2196,1.14492,0.00092,266.93824,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83002,81.35546,10.44402,23.34032,401.9311,35.35582,0.06,83.0309,0.2246,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.549,3511.082 -2197,1.13739,0.00092,266.95678,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83004,81.35862,10.44444,23.34124,401.94665,35.35719,0.06,83.0341,0.2246,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.562,3511.082 -2198,1.12986,0.00092,266.97532,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83006,81.36178,10.44486,23.34216,401.9622,35.35856,0.06,83.0373,0.2246,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.575,3511.082 -2199,1.12233,0.00092,266.99386,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83008,81.36494,10.44528,23.34308,401.97775,35.35993,0.06,83.0405,0.2246,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.587,3511.082 -2200,1.1148,0.00092,267.0124,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8301,81.3681,10.4457,23.344,401.9933,35.3613,0.06,83.0437,0.2246,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.6,3511.082 -2201,1.10836,0.00092,267.03006,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05121,0.0319,0.0058,0.83013,81.3711,10.44606,23.34485,402.00813,35.3626,0.06,83.04677,0.2246,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.612,3511.082 -2202,1.10192,0.00092,267.04772,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05122,0.0319,0.0058,0.83016,81.3741,10.44642,23.3457,402.02296,35.3639,0.06,83.04984,0.2246,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.624,3511.082 -2203,1.09548,0.00092,267.06538,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05123,0.0319,0.0058,0.83019,81.3771,10.44678,23.34655,402.03779,35.3652,0.06,83.05291,0.2246,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.637,3511.082 -2204,1.08904,0.00092,267.08304,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05124,0.0319,0.0058,0.83022,81.3801,10.44714,23.3474,402.05262,35.3665,0.06,83.05598,0.2246,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.649,3511.082 -2205,1.0826,0.00092,267.1007,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05125,0.0319,0.0058,0.83025,81.3831,10.4475,23.34825,402.06745,35.3678,0.06,83.05905,0.2246,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.661,3511.082 -2206,1.07616,0.00092,267.11836,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05126,0.0319,0.0058,0.83028,81.3861,10.44786,23.3491,402.08228,35.3691,0.06,83.06212,0.2246,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.673,3511.082 -2207,1.06972,0.00092,267.13602,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05127,0.0319,0.0058,0.83031,81.3891,10.44822,23.34995,402.09711,35.3704,0.06,83.06519,0.2246,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.685,3511.082 -2208,1.06328,0.00092,267.15368,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05128,0.0319,0.0058,0.83034,81.3921,10.44858,23.3508,402.11194,35.3717,0.06,83.06826,0.2246,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.697,3511.082 -2209,1.05684,0.00092,267.17134,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05129,0.0319,0.0058,0.83037,81.3951,10.44894,23.35165,402.12677,35.373,0.06,83.07133,0.2246,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.709,3511.082 -2210,1.0504,0.00092,267.189,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8304,81.3981,10.4493,23.3525,402.1416,35.3743,0.06,83.0744,0.2246,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.721,3511.082 -2211,1.04486,0.00092,267.2058,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83044,81.40095,10.44967,23.35332,402.15569,35.37553,0.06,83.07732,0.2246,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.733,3511.082 -2212,1.03932,0.00092,267.2226,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83048,81.4038,10.45004,23.35414,402.16978,35.37676,0.06,83.08024,0.2246,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.744,3511.082 -2213,1.03378,0.00092,267.2394,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83052,81.40665,10.45041,23.35496,402.18387,35.37799,0.06,83.08316,0.2246,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.756,3511.082 -2214,1.02824,0.00092,267.2562,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83056,81.4095,10.45078,23.35578,402.19796,35.37922,0.06,83.08608,0.2246,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.768,3511.082 -2215,1.0227,0.00092,267.273,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8306,81.41235,10.45115,23.3566,402.21205,35.38045,0.06,83.089,0.2246,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.779,3511.082 -2216,1.01716,0.00092,267.2898,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83064,81.4152,10.45152,23.35742,402.22614,35.38168,0.06,83.09192,0.2246,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.791,3511.082 -2217,1.01162,0.00092,267.3066,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83068,81.41805,10.45189,23.35824,402.24023,35.38291,0.06,83.09484,0.2246,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.802,3511.082 -2218,1.00608,0.00092,267.3234,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83072,81.4209,10.45226,23.35906,402.25432,35.38414,0.06,83.09776,0.2246,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.813,3511.082 -2219,1.00054,0.00092,267.3402,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83076,81.42375,10.45263,23.35988,402.26841,35.38537,0.06,83.10068,0.2246,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.825,3511.082 -2220,0.995,0.00092,267.357,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8308,81.4266,10.453,23.3607,402.2825,35.3866,0.06,83.1036,0.2246,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.836,3511.082 -2221,0.99023,0.00092,267.373,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83082,81.42932,10.45337,23.36148,402.29593,35.38779,0.06,83.10637,0.2246,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.847,3511.082 -2222,0.98546,0.00092,267.389,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83084,81.43204,10.45374,23.36226,402.30936,35.38898,0.06,83.10914,0.2246,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.858,3511.082 -2223,0.98069,0.00092,267.405,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83086,81.43476,10.45411,23.36304,402.32279,35.39017,0.06,83.11191,0.2246,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.869,3511.082 -2224,0.97592,0.00092,267.421,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83088,81.43748,10.45448,23.36382,402.33622,35.39136,0.06,83.11468,0.2246,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.88,3511.082 -2225,0.97115,0.00092,267.437,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8309,81.4402,10.45485,23.3646,402.34965,35.39255,0.06,83.11745,0.2246,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.891,3511.082 -2226,0.96638,0.00092,267.453,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83092,81.44292,10.45522,23.36538,402.36308,35.39374,0.06,83.12022,0.2246,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.902,3511.082 -2227,0.96161,0.00092,267.469,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83094,81.44564,10.45559,23.36616,402.37651,35.39493,0.06,83.12299,0.2246,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.913,3511.082 -2228,0.95684,0.00092,267.485,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83096,81.44836,10.45596,23.36694,402.38994,35.39612,0.06,83.12576,0.2246,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.924,3511.082 -2229,0.95207,0.00092,267.501,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83098,81.45108,10.45633,23.36772,402.40337,35.39731,0.06,83.12853,0.2246,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.935,3511.082 -2230,0.9473,0.00092,267.517,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.831,81.4538,10.4567,23.3685,402.4168,35.3985,0.06,83.1313,0.2246,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.945,3511.082 -2231,0.94314,0.00092,267.53226,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83103,81.45639,10.45701,23.36925,402.42961,35.39963,0.06,83.13395,0.2246,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.956,3511.082 -2232,0.93898,0.00092,267.54752,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83106,81.45898,10.45732,23.37,402.44242,35.40076,0.06,83.1366,0.2246,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.967,3511.082 -2233,0.93482,0.00092,267.56278,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83109,81.46157,10.45763,23.37075,402.45523,35.40189,0.06,83.13925,0.2246,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.977,3511.082 -2234,0.93066,0.00092,267.57804,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83112,81.46416,10.45794,23.3715,402.46804,35.40302,0.06,83.1419,0.2246,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.988,3511.082 -2235,0.9265,0.00092,267.5933,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83115,81.46675,10.45825,23.37225,402.48085,35.40415,0.06,83.14455,0.2246,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.998,3511.082 -2236,0.92234,0.00092,267.60856,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83118,81.46934,10.45856,23.373,402.49366,35.40528,0.06,83.1472,0.2246,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.008,3511.082 -2237,0.91818,0.00092,267.62382,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83121,81.47193,10.45887,23.37375,402.50647,35.40641,0.06,83.14985,0.2246,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.019,3511.082 -2238,0.91402,0.00092,267.63908,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83124,81.47452,10.45918,23.3745,402.51928,35.40754,0.06,83.1525,0.2246,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.029,3511.082 -2239,0.90986,0.00092,267.65434,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83127,81.47711,10.45949,23.37525,402.53209,35.40867,0.06,83.15515,0.2246,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.039,3511.082 -2240,0.9057,0.00092,267.6696,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8313,81.4797,10.4598,23.376,402.5449,35.4098,0.06,83.1578,0.2246,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.05,3511.082 -2241,0.90206,0.00092,267.68419,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83133,81.48216,10.46013,23.37671,402.55715,35.41087,0.06,83.16032,0.2246,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.06,3511.082 -2242,0.89842,0.00092,267.69878,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83136,81.48462,10.46046,23.37742,402.5694,35.41194,0.06,83.16284,0.2246,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.07,3511.082 -2243,0.89478,0.00092,267.71337,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83139,81.48708,10.46079,23.37813,402.58165,35.41301,0.06,83.16536,0.2246,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.08,3511.082 -2244,0.89114,0.00092,267.72796,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83142,81.48954,10.46112,23.37884,402.5939,35.41408,0.06,83.16788,0.2246,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.09,3511.082 -2245,0.8875,0.00092,267.74255,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83145,81.492,10.46145,23.37955,402.60615,35.41515,0.06,83.1704,0.2246,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.1,3511.082 -2246,0.88386,0.00092,267.75714,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83148,81.49446,10.46178,23.38026,402.6184,35.41622,0.06,83.17292,0.2246,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.11,3511.082 -2247,0.88022,0.00092,267.77173,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83151,81.49692,10.46211,23.38097,402.63065,35.41729,0.06,83.17544,0.2246,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.12,3511.082 -2248,0.87658,0.00092,267.78632,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83154,81.49938,10.46244,23.38168,402.6429,35.41836,0.06,83.17796,0.2246,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.13,3511.082 -2249,0.87294,0.00092,267.80091,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83157,81.50184,10.46277,23.38239,402.65515,35.41943,0.06,83.18048,0.2246,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.139,3511.082 -2250,0.8693,0.00092,267.8155,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8316,81.5043,10.4631,23.3831,402.6674,35.4205,0.06,83.183,0.2246,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.149,3511.082 -2251,0.8661,0.00092,267.82946,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83162,81.50668,10.46339,23.38378,402.67913,35.42153,0.06,83.18543,0.2246,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.159,3511.082 -2252,0.8629,0.00092,267.84342,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83164,81.50906,10.46368,23.38446,402.69086,35.42256,0.06,83.18786,0.2246,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.168,3511.082 -2253,0.8597,0.00092,267.85738,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83166,81.51144,10.46397,23.38514,402.70259,35.42359,0.06,83.19029,0.2246,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.178,3511.082 -2254,0.8565,0.00092,267.87134,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83168,81.51382,10.46426,23.38582,402.71432,35.42462,0.06,83.19272,0.2246,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.188,3511.082 -2255,0.8533,0.00092,267.8853,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8317,81.5162,10.46455,23.3865,402.72605,35.42565,0.06,83.19515,0.2246,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.197,3511.082 -2256,0.8501,0.00092,267.89926,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83172,81.51858,10.46484,23.38718,402.73778,35.42668,0.06,83.19758,0.2246,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.207,3511.082 -2257,0.8469,0.00092,267.91322,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83174,81.52096,10.46513,23.38786,402.74951,35.42771,0.06,83.20001,0.2246,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.216,3511.082 -2258,0.8437,0.00092,267.92718,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83176,81.52334,10.46542,23.38854,402.76124,35.42874,0.06,83.20244,0.2246,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.226,3511.082 -2259,0.8405,0.00092,267.94114,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83178,81.52572,10.46571,23.38922,402.77297,35.42977,0.06,83.20487,0.2246,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.235,3511.082 -2260,0.8373,0.00092,267.9551,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8318,81.5281,10.466,23.3899,402.7847,35.4308,0.06,83.2073,0.2246,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.244,3511.082 -2261,0.83445,0.00092,267.96848,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83182,81.53037,10.46631,23.39054,402.7959,35.43178,0.06001,83.20961,0.2246,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.253,3511.082 -2262,0.8316,0.00092,267.98186,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83184,81.53264,10.46662,23.39118,402.8071,35.43276,0.06002,83.21192,0.2246,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.263,3511.082 -2263,0.82875,0.00092,267.99524,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83186,81.53491,10.46693,23.39182,402.8183,35.43374,0.06003,83.21423,0.2246,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.272,3511.082 -2264,0.8259,0.00092,268.00862,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83188,81.53718,10.46724,23.39246,402.8295,35.43472,0.06004,83.21654,0.2246,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.281,3511.082 -2265,0.82305,0.00092,268.022,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8319,81.53945,10.46755,23.3931,402.8407,35.4357,0.06005,83.21885,0.2246,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.29,3511.082 -2266,0.8202,0.00092,268.03538,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83192,81.54172,10.46786,23.39374,402.8519,35.43668,0.06006,83.22116,0.2246,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.299,3511.082 -2267,0.81735,0.00092,268.04876,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83194,81.54399,10.46817,23.39438,402.8631,35.43766,0.06007,83.22347,0.2246,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.308,3511.082 -2268,0.8145,0.00092,268.06214,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83196,81.54626,10.46848,23.39502,402.8743,35.43864,0.06008,83.22578,0.2246,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.317,3511.082 -2269,0.81165,0.00092,268.07552,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83198,81.54853,10.46879,23.39566,402.8855,35.43962,0.06009,83.22809,0.2246,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.326,3511.082 -2270,0.8088,0.00092,268.0889,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.832,81.5508,10.4691,23.3963,402.8967,35.4406,0.0601,83.2304,0.2246,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.335,3511.082 -2271,0.80629,0.00092,268.10174,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83202,81.55298,10.46937,23.39694,402.90748,35.44156,0.0601,83.23262,0.2246,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.344,3511.082 -2272,0.80378,0.00092,268.11458,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83204,81.55516,10.46964,23.39758,402.91826,35.44252,0.0601,83.23484,0.2246,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.353,3511.082 -2273,0.80127,0.00092,268.12742,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83206,81.55734,10.46991,23.39822,402.92904,35.44348,0.0601,83.23706,0.2246,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.362,3511.082 -2274,0.79876,0.00092,268.14026,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83208,81.55952,10.47018,23.39886,402.93982,35.44444,0.0601,83.23928,0.2246,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.371,3511.082 -2275,0.79625,0.00092,268.1531,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8321,81.5617,10.47045,23.3995,402.9506,35.4454,0.0601,83.2415,0.2246,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.379,3511.082 -2276,0.79374,0.00092,268.16594,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83212,81.56388,10.47072,23.40014,402.96138,35.44636,0.0601,83.24372,0.2246,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.388,3511.082 -2277,0.79123,0.00092,268.17878,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83214,81.56606,10.47099,23.40078,402.97216,35.44732,0.0601,83.24594,0.2246,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.397,3511.082 -2278,0.78872,0.00092,268.19162,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83216,81.56824,10.47126,23.40142,402.98294,35.44828,0.0601,83.24816,0.2246,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.406,3511.082 -2279,0.78621,0.00092,268.20446,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83218,81.57042,10.47153,23.40206,402.99372,35.44924,0.0601,83.25038,0.2246,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.414,3511.082 -2280,0.7837,0.00092,268.2173,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8322,81.5726,10.4718,23.4027,403.0045,35.4502,0.0601,83.2526,0.2246,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.423,3511.082 -2281,0.78142,0.00092,268.22963,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83223,81.5747,10.47207,23.4033,403.01486,35.45111,0.0601,83.25474,0.2246,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.431,3511.082 -2282,0.77914,0.00092,268.24196,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83226,81.5768,10.47234,23.4039,403.02522,35.45202,0.0601,83.25688,0.2246,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.44,3511.082 -2283,0.77686,0.00092,268.25429,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83229,81.5789,10.47261,23.4045,403.03558,35.45293,0.0601,83.25902,0.2246,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.448,3511.082 -2284,0.77458,0.00092,268.26662,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83232,81.581,10.47288,23.4051,403.04594,35.45384,0.0601,83.26116,0.2246,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.457,3511.082 -2285,0.7723,0.00092,268.27895,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83235,81.5831,10.47315,23.4057,403.0563,35.45475,0.0601,83.2633,0.2246,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.465,3511.082 -2286,0.77002,0.00092,268.29128,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83238,81.5852,10.47342,23.4063,403.06666,35.45566,0.0601,83.26544,0.2246,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.473,3511.082 -2287,0.76774,0.00092,268.30361,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83241,81.5873,10.47369,23.4069,403.07702,35.45657,0.0601,83.26758,0.2246,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.482,3511.082 -2288,0.76546,0.00092,268.31594,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83244,81.5894,10.47396,23.4075,403.08738,35.45748,0.0601,83.26972,0.2246,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.49,3511.082 -2289,0.76318,0.00092,268.32827,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83247,81.5915,10.47423,23.4081,403.09774,35.45839,0.0601,83.27186,0.2246,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.498,3511.082 -2290,0.7609,0.00092,268.3406,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8325,81.5936,10.4745,23.4087,403.1081,35.4593,0.0601,83.274,0.2246,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.507,3511.082 -2291,0.75884,0.00092,268.35247,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83251,81.59562,10.47475,23.40928,403.11806,35.46017,0.06011,83.27607,0.2246,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.515,3511.082 -2292,0.75678,0.00092,268.36434,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83252,81.59764,10.475,23.40986,403.12802,35.46104,0.06012,83.27814,0.2246,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.523,3511.082 -2293,0.75472,0.00092,268.37621,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83253,81.59966,10.47525,23.41044,403.13798,35.46191,0.06013,83.28021,0.2246,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.531,3511.082 -2294,0.75266,0.00092,268.38808,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83254,81.60168,10.4755,23.41102,403.14794,35.46278,0.06014,83.28228,0.2246,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.539,3511.082 -2295,0.7506,0.00092,268.39995,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83255,81.6037,10.47575,23.4116,403.1579,35.46365,0.06015,83.28435,0.2246,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.547,3511.082 -2296,0.74854,0.00092,268.41182,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83256,81.60572,10.476,23.41218,403.16786,35.46452,0.06016,83.28642,0.2246,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.555,3511.082 -2297,0.74648,0.00092,268.42369,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83257,81.60774,10.47625,23.41276,403.17782,35.46539,0.06017,83.28849,0.2246,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.564,3511.082 -2298,0.74442,0.00092,268.43556,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83258,81.60976,10.4765,23.41334,403.18778,35.46626,0.06018,83.29056,0.2246,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.572,3511.082 -2299,0.74236,0.00092,268.44743,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83259,81.61178,10.47675,23.41392,403.19774,35.46713,0.06019,83.29263,0.2246,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.579,3511.082 -2300,0.7403,0.00092,268.4593,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8326,81.6138,10.477,23.4145,403.2077,35.468,0.0602,83.2947,0.2246,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.587,3511.082 -2301,0.738714,0.00092,268.46999,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83262,81.615616,10.477238,23.41502,403.21667,35.46879,0.0602,83.296552,0.2246,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.595,3511.082 -2302,0.737128,0.00092,268.48068,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83264,81.617432,10.477476,23.41554,403.22564,35.46958,0.0602,83.298404,0.2246,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.603,3511.082 -2303,0.735542,0.00092,268.49136,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83266,81.619248,10.477714,23.41606,403.23461,35.47037,0.0602,83.300256,0.2246,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.611,3511.082 -2304,0.733956,0.00092,268.50205,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83268,81.621064,10.477952,23.41658,403.24358,35.47116,0.0602,83.302108,0.2246,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.619,3511.082 -2305,0.73237,0.00092,268.51274,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8327,81.62288,10.47819,23.4171,403.25255,35.47195,0.0602,83.30396,0.2246,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.627,3511.082 -2306,0.730784,0.00092,268.52343,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83272,81.624696,10.478428,23.41762,403.26152,35.47274,0.0602,83.305812,0.2246,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.634,3511.082 -2307,0.729198,0.00092,268.53412,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83274,81.626512,10.478666,23.41814,403.27049,35.47353,0.0602,83.307664,0.2246,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.642,3511.082 -2308,0.727612,0.00092,268.5448,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83276,81.628328,10.478904,23.41866,403.27946,35.47432,0.0602,83.309516,0.2246,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.65,3511.082 -2309,0.726026,0.00092,268.55549,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83278,81.630144,10.479142,23.41918,403.28843,35.47511,0.0602,83.311368,0.2246,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.658,3511.082 -2310,0.72444,0.00092,268.56618,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8328,81.63196,10.47938,23.4197,403.2974,35.4759,0.0602,83.31322,0.2246,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.665,3511.082 -2311,0.722854,0.00092,268.57687,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83282,81.633776,10.479618,23.42022,403.30637,35.47669,0.0602,83.315072,0.2246,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.673,3511.082 -2312,0.721268,0.00092,268.58756,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83284,81.635592,10.479856,23.42074,403.31534,35.47748,0.0602,83.316924,0.2246,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.68,3511.082 -2313,0.719682,0.00092,268.59824,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83286,81.637408,10.480094,23.42126,403.32431,35.47827,0.0602,83.318776,0.2246,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.688,3511.082 -2314,0.718096,0.00092,268.60893,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83288,81.639224,10.480332,23.42178,403.33328,35.47906,0.0602,83.320628,0.2246,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.696,3511.082 -2315,0.71651,0.00092,268.61962,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8329,81.64104,10.48057,23.4223,403.34225,35.47985,0.0602,83.32248,0.2246,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.703,3511.082 -2316,0.714924,0.00092,268.63031,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83292,81.642856,10.480808,23.42282,403.35122,35.48064,0.0602,83.324332,0.2246,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.711,3511.082 -2317,0.713338,0.00092,268.641,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83294,81.644672,10.481046,23.42334,403.36019,35.48143,0.0602,83.326184,0.2246,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.718,3511.082 -2318,0.711752,0.00092,268.65168,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83296,81.646488,10.481284,23.42386,403.36916,35.48222,0.0602,83.328036,0.2246,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.725,3511.082 -2319,0.710166,0.00092,268.66237,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83298,81.648304,10.481522,23.42438,403.37813,35.48301,0.0602,83.329888,0.2246,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.733,3511.082 -2320,0.70858,0.00092,268.67306,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.833,81.65012,10.48176,23.4249,403.3871,35.4838,0.0602,83.33174,0.2246,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.74,3511.082 -2321,0.706994,0.00092,268.68375,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83302,81.651936,10.481998,23.42542,403.39607,35.48459,0.0602,83.333592,0.2246,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.748,3511.082 -2322,0.705408,0.00092,268.69444,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83304,81.653752,10.482236,23.42594,403.40504,35.48538,0.0602,83.335444,0.2246,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.755,3511.082 -2323,0.703822,0.00092,268.70512,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83306,81.655568,10.482474,23.42646,403.41401,35.48617,0.0602,83.337296,0.2246,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.762,3511.082 -2324,0.702236,0.00092,268.71581,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83308,81.657384,10.482712,23.42698,403.42298,35.48696,0.0602,83.339148,0.2246,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.77,3511.082 -2325,0.70065,0.00092,268.7265,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8331,81.6592,10.48295,23.4275,403.43195,35.48775,0.0602,83.341,0.2246,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.777,3511.082 -2326,0.699064,0.00092,268.73719,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83312,81.661016,10.483188,23.42802,403.44092,35.48854,0.0602,83.342852,0.2246,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.784,3511.082 -2327,0.697478,0.00092,268.74788,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83314,81.662832,10.483426,23.42854,403.44989,35.48933,0.0602,83.344704,0.2246,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.791,3511.082 -2328,0.695892,0.00092,268.75856,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83316,81.664648,10.483664,23.42906,403.45886,35.49012,0.0602,83.346556,0.2246,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.798,3511.082 -2329,0.694306,0.00092,268.76925,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83318,81.666464,10.483902,23.42958,403.46783,35.49091,0.0602,83.348408,0.2246,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.806,3511.082 -2330,0.69272,0.00092,268.77994,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8332,81.66828,10.48414,23.4301,403.4768,35.4917,0.0602,83.35026,0.2246,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.813,3511.082 -2331,0.691134,0.00092,268.79063,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83322,81.670096,10.484378,23.43062,403.48577,35.49249,0.0602,83.352112,0.2246,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.82,3511.082 -2332,0.689548,0.00092,268.80132,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83324,81.671912,10.484616,23.43114,403.49474,35.49328,0.0602,83.353964,0.2246,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.827,3511.082 -2333,0.687962,0.00092,268.812,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83326,81.673728,10.484854,23.43166,403.50371,35.49407,0.0602,83.355816,0.2246,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.834,3511.082 -2334,0.686376,0.00092,268.82269,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83328,81.675544,10.485092,23.43218,403.51268,35.49486,0.0602,83.357668,0.2246,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.841,3511.082 -2335,0.68479,0.00092,268.83338,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8333,81.67736,10.48533,23.4327,403.52165,35.49565,0.0602,83.35952,0.2246,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.848,3511.082 -2336,0.683204,0.00092,268.84407,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83332,81.679176,10.485568,23.43322,403.53062,35.49644,0.0602,83.361372,0.2246,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.855,3511.082 -2337,0.681618,0.00092,268.85476,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83334,81.680992,10.485806,23.43374,403.53959,35.49723,0.0602,83.363224,0.2246,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.862,3511.082 -2338,0.680032,0.00092,268.86544,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83336,81.682808,10.486044,23.43426,403.54856,35.49802,0.0602,83.365076,0.2246,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.869,3511.082 -2339,0.678446,0.00092,268.87613,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83338,81.684624,10.486282,23.43478,403.55753,35.49881,0.0602,83.366928,0.2246,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.876,3511.082 -2340,0.67686,0.00092,268.88682,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8334,81.68644,10.48652,23.4353,403.5665,35.4996,0.0602,83.36878,0.2246,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.883,3511.082 -2341,0.675274,0.00092,268.89751,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83342,81.688256,10.486758,23.43582,403.57547,35.50039,0.0602,83.370632,0.2246,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.89,3511.082 -2342,0.673688,0.00092,268.9082,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83344,81.690072,10.486996,23.43634,403.58444,35.50118,0.0602,83.372484,0.2246,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.896,3511.082 -2343,0.672102,0.00092,268.91888,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83346,81.691888,10.487234,23.43686,403.59341,35.50197,0.0602,83.374336,0.2246,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.903,3511.082 -2344,0.670516,0.00092,268.92957,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83348,81.693704,10.487472,23.43738,403.60238,35.50276,0.0602,83.376188,0.2246,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.91,3511.082 -2345,0.66893,0.00092,268.94026,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8335,81.69552,10.48771,23.4379,403.61135,35.50355,0.0602,83.37804,0.2246,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.917,3511.082 -2346,0.667344,0.00092,268.95095,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83352,81.697336,10.487948,23.43842,403.62032,35.50434,0.0602,83.379892,0.2246,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.924,3511.082 -2347,0.665758,0.00092,268.96164,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83354,81.699152,10.488186,23.43894,403.62929,35.50513,0.0602,83.381744,0.2246,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.93,3511.082 -2348,0.664172,0.00092,268.97232,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83356,81.700968,10.488424,23.43946,403.63826,35.50592,0.0602,83.383596,0.2246,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.937,3511.082 -2349,0.662586,0.00092,268.98301,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83358,81.702784,10.488662,23.43998,403.64723,35.50671,0.0602,83.385448,0.2246,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.944,3511.082 -2350,0.661,0.00092,268.9937,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8336,81.7046,10.4889,23.4405,403.6562,35.5075,0.0602,83.3873,0.2246,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.951,3511.082 -2351,0.659886,0.00092,269.00281,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051304,0.0319,0.0058,0.833618,81.706144,10.489098,23.440944,403.66384,35.508172,0.0602,83.388878,0.2246,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.957,3511.082 -2352,0.658772,0.00092,269.01192,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051308,0.0319,0.0058,0.833636,81.707688,10.489296,23.441388,403.67149,35.508844,0.0602,83.390456,0.2246,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.964,3511.082 -2353,0.657658,0.00092,269.02102,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051312,0.0319,0.0058,0.833654,81.709232,10.489494,23.441832,403.67913,35.509516,0.0602,83.392034,0.2246,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.97,3511.082 -2354,0.656544,0.00092,269.03013,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051316,0.0319,0.0058,0.833672,81.710776,10.489692,23.442276,403.68678,35.510188,0.0602,83.393612,0.2246,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.977,3511.082 -2355,0.65543,0.00092,269.03924,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05132,0.0319,0.0058,0.83369,81.71232,10.48989,23.44272,403.69442,35.51086,0.0602,83.39519,0.2246,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.984,3511.082 -2356,0.654316,0.00092,269.04835,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051324,0.0319,0.0058,0.833708,81.713864,10.490088,23.443164,403.70206,35.511532,0.0602,83.396768,0.2246,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.99,3511.082 -2357,0.653202,0.00092,269.05746,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051328,0.0319,0.0058,0.833726,81.715408,10.490286,23.443608,403.70971,35.512204,0.0602,83.398346,0.2246,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.997,3511.082 -2358,0.652088,0.00092,269.06656,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051332,0.0319,0.0058,0.833744,81.716952,10.490484,23.444052,403.71735,35.512876,0.0602,83.399924,0.2246,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.003,3511.082 -2359,0.650974,0.00092,269.07567,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051336,0.0319,0.0058,0.833762,81.718496,10.490682,23.444496,403.725,35.513548,0.0602,83.401502,0.2246,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.01,3511.082 -2360,0.64986,0.00092,269.08478,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05134,0.0319,0.0058,0.83378,81.72004,10.49088,23.44494,403.73264,35.51422,0.0602,83.40308,0.2246,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.016,3511.082 -2361,0.648746,0.00092,269.09389,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051344,0.0319,0.0058,0.833798,81.721584,10.491078,23.445384,403.74028,35.514892,0.0602,83.404658,0.2246,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.023,3511.082 -2362,0.647632,0.00092,269.103,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051348,0.0319,0.0058,0.833816,81.723128,10.491276,23.445828,403.74793,35.515564,0.0602,83.406236,0.2246,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.029,3511.082 -2363,0.646518,0.00092,269.1121,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051352,0.0319,0.0058,0.833834,81.724672,10.491474,23.446272,403.75557,35.516236,0.0602,83.407814,0.2246,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.035,3511.082 -2364,0.645404,0.00092,269.12121,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051356,0.0319,0.0058,0.833852,81.726216,10.491672,23.446716,403.76322,35.516908,0.0602,83.409392,0.2246,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.042,3511.082 -2365,0.64429,0.00092,269.13032,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05136,0.0319,0.0058,0.83387,81.72776,10.49187,23.44716,403.77086,35.51758,0.0602,83.41097,0.2246,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.048,3511.082 -2366,0.643176,0.00092,269.13943,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051364,0.0319,0.0058,0.833888,81.729304,10.492068,23.447604,403.7785,35.518252,0.0602,83.412548,0.2246,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.055,3511.082 -2367,0.642062,0.00092,269.14854,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051368,0.0319,0.0058,0.833906,81.730848,10.492266,23.448048,403.78615,35.518924,0.0602,83.414126,0.2246,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.061,3511.082 -2368,0.640948,0.00092,269.15764,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051372,0.0319,0.0058,0.833924,81.732392,10.492464,23.448492,403.79379,35.519596,0.0602,83.415704,0.2246,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.067,3511.082 -2369,0.639834,0.00092,269.16675,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051376,0.0319,0.0058,0.833942,81.733936,10.492662,23.448936,403.80144,35.520268,0.0602,83.417282,0.2246,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.073,3511.082 -2370,0.63872,0.00092,269.17586,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05138,0.0319,0.0058,0.83396,81.73548,10.49286,23.44938,403.80908,35.52094,0.0602,83.41886,0.2246,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.08,3511.082 -2371,0.637606,0.00092,269.18497,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051384,0.0319,0.0058,0.833978,81.737024,10.493058,23.449824,403.81672,35.521612,0.0602,83.420438,0.2246,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.086,3511.082 -2372,0.636492,0.00092,269.19408,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051388,0.0319,0.0058,0.833996,81.738568,10.493256,23.450268,403.82437,35.522284,0.0602,83.422016,0.2246,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.092,3511.082 -2373,0.635378,0.00092,269.20318,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051392,0.0319,0.0058,0.834014,81.740112,10.493454,23.450712,403.83201,35.522956,0.0602,83.423594,0.2246,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.098,3511.082 -2374,0.634264,0.00092,269.21229,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051396,0.0319,0.0058,0.834032,81.741656,10.493652,23.451156,403.83966,35.523628,0.0602,83.425172,0.2246,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.105,3511.082 -2375,0.63315,0.00092,269.2214,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0514,0.0319,0.0058,0.83405,81.7432,10.49385,23.4516,403.8473,35.5243,0.0602,83.42675,0.2246,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.111,3511.082 -2376,0.632036,0.00092,269.23051,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051404,0.0319,0.0058,0.834068,81.744744,10.494048,23.452044,403.85494,35.524972,0.0602,83.428328,0.2246,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.117,3511.082 -2377,0.630922,0.00092,269.23962,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051408,0.0319,0.0058,0.834086,81.746288,10.494246,23.452488,403.86259,35.525644,0.0602,83.429906,0.2246,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.123,3511.082 -2378,0.629808,0.00092,269.24872,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051412,0.0319,0.0058,0.834104,81.747832,10.494444,23.452932,403.87023,35.526316,0.0602,83.431484,0.2246,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.129,3511.082 -2379,0.628694,0.00092,269.25783,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051416,0.0319,0.0058,0.834122,81.749376,10.494642,23.453376,403.87788,35.526988,0.0602,83.433062,0.2246,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.135,3511.082 -2380,0.62758,0.00092,269.26694,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05142,0.0319,0.0058,0.83414,81.75092,10.49484,23.45382,403.88552,35.52766,0.0602,83.43464,0.2246,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.141,3511.082 -2381,0.626466,0.00092,269.27605,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051424,0.0319,0.0058,0.834158,81.752464,10.495038,23.454264,403.89316,35.528332,0.0602,83.436218,0.2246,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.148,3511.082 -2382,0.625352,0.00092,269.28516,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051428,0.0319,0.0058,0.834176,81.754008,10.495236,23.454708,403.90081,35.529004,0.0602,83.437796,0.2246,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.154,3511.082 -2383,0.624238,0.00092,269.29426,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051432,0.0319,0.0058,0.834194,81.755552,10.495434,23.455152,403.90845,35.529676,0.0602,83.439374,0.2246,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.16,3511.082 -2384,0.623124,0.00092,269.30337,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051436,0.0319,0.0058,0.834212,81.757096,10.495632,23.455596,403.9161,35.530348,0.0602,83.440952,0.2246,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.166,3511.082 -2385,0.62201,0.00092,269.31248,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05144,0.0319,0.0058,0.83423,81.75864,10.49583,23.45604,403.92374,35.53102,0.0602,83.44253,0.2246,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.172,3511.082 -2386,0.620896,0.00092,269.32159,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051444,0.0319,0.0058,0.834248,81.760184,10.496028,23.456484,403.93138,35.531692,0.0602,83.444108,0.2246,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.178,3511.082 -2387,0.619782,0.00092,269.3307,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051448,0.0319,0.0058,0.834266,81.761728,10.496226,23.456928,403.93903,35.532364,0.0602,83.445686,0.2246,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.184,3511.082 -2388,0.618668,0.00092,269.3398,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051452,0.0319,0.0058,0.834284,81.763272,10.496424,23.457372,403.94667,35.533036,0.0602,83.447264,0.2246,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.19,3511.082 -2389,0.617554,0.00092,269.34891,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051456,0.0319,0.0058,0.834302,81.764816,10.496622,23.457816,403.95432,35.533708,0.0602,83.448842,0.2246,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.195,3511.082 -2390,0.61644,0.00092,269.35802,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05146,0.0319,0.0058,0.83432,81.76636,10.49682,23.45826,403.96196,35.53438,0.0602,83.45042,0.2246,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.201,3511.082 -2391,0.615326,0.00092,269.36713,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051464,0.0319,0.0058,0.834338,81.767904,10.497018,23.458704,403.9696,35.535052,0.0602,83.451998,0.2246,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.207,3511.082 -2392,0.614212,0.00092,269.37624,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051468,0.0319,0.0058,0.834356,81.769448,10.497216,23.459148,403.97725,35.535724,0.0602,83.453576,0.2246,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.213,3511.082 -2393,0.613098,0.00092,269.38534,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051472,0.0319,0.0058,0.834374,81.770992,10.497414,23.459592,403.98489,35.536396,0.0602,83.455154,0.2246,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.219,3511.082 -2394,0.611984,0.00092,269.39445,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051476,0.0319,0.0058,0.834392,81.772536,10.497612,23.460036,403.99254,35.537068,0.0602,83.456732,0.2246,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.225,3511.082 -2395,0.61087,0.00092,269.40356,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05148,0.0319,0.0058,0.83441,81.77408,10.49781,23.46048,404.00018,35.53774,0.0602,83.45831,0.2246,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.231,3511.082 -2396,0.609756,0.00092,269.41267,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051484,0.0319,0.0058,0.834428,81.775624,10.498008,23.460924,404.00782,35.538412,0.0602,83.459888,0.2246,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.237,3511.082 -2397,0.608642,0.00092,269.42178,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051488,0.0319,0.0058,0.834446,81.777168,10.498206,23.461368,404.01547,35.539084,0.0602,83.461466,0.2246,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.242,3511.082 -2398,0.607528,0.00092,269.43088,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051492,0.0319,0.0058,0.834464,81.778712,10.498404,23.461812,404.02311,35.539756,0.0602,83.463044,0.2246,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.248,3511.082 -2399,0.606414,0.00092,269.43999,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051496,0.0319,0.0058,0.834482,81.780256,10.498602,23.462256,404.03076,35.540428,0.0602,83.464622,0.2246,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.254,3511.082 -2400,0.6053,0.00092,269.4491,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.8345,81.7818,10.4988,23.4627,404.0384,35.5411,0.0602,83.4662,0.2246,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.26,3511.082 -2401,0.604434,0.00092,269.45702,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834514,81.783148,10.498972,23.463086,404.04505,35.541686,0.060202,83.467576,0.2246,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.265,3511.082 -2402,0.603568,0.00092,269.46495,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834528,81.784496,10.499144,23.463472,404.0517,35.542272,0.060204,83.468952,0.2246,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.271,3511.082 -2403,0.602702,0.00092,269.47287,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834542,81.785844,10.499316,23.463858,404.05835,35.542858,0.060206,83.470328,0.2246,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.277,3511.082 -2404,0.601836,0.00092,269.4808,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834556,81.787192,10.499488,23.464244,404.065,35.543444,0.060208,83.471704,0.2246,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.282,3511.082 -2405,0.60097,0.00092,269.48872,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83457,81.78854,10.49966,23.46463,404.07165,35.54403,0.06021,83.47308,0.2246,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.288,3511.082 -2406,0.600104,0.00092,269.49664,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834584,81.789888,10.499832,23.465016,404.0783,35.544616,0.060212,83.474456,0.2246,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.294,3511.082 -2407,0.599238,0.00092,269.50457,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834598,81.791236,10.500004,23.465402,404.08495,35.545202,0.060214,83.475832,0.2246,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.299,3511.082 -2408,0.598372,0.00092,269.51249,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834612,81.792584,10.500176,23.465788,404.0916,35.545788,0.060216,83.477208,0.2246,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.305,3511.082 -2409,0.597506,0.00092,269.52042,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834626,81.793932,10.500348,23.466174,404.09825,35.546374,0.060218,83.478584,0.2246,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.311,3511.082 -2410,0.59664,0.00092,269.52834,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83464,81.79528,10.50052,23.46656,404.1049,35.54696,0.06022,83.47996,0.2246,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.316,3511.082 -2411,0.595774,0.00092,269.53626,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834654,81.796628,10.500692,23.466946,404.11155,35.547546,0.060222,83.481336,0.2246,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.322,3511.082 -2412,0.594908,0.00092,269.54419,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834668,81.797976,10.500864,23.467332,404.1182,35.548132,0.060224,83.482712,0.2246,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.327,3511.082 -2413,0.594042,0.00092,269.55211,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834682,81.799324,10.501036,23.467718,404.12485,35.548718,0.060226,83.484088,0.2246,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.333,3511.082 -2414,0.593176,0.00092,269.56004,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834696,81.800672,10.501208,23.468104,404.1315,35.549304,0.060228,83.485464,0.2246,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.338,3511.082 -2415,0.59231,0.00092,269.56796,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83471,81.80202,10.50138,23.46849,404.13815,35.54989,0.06023,83.48684,0.2246,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.344,3511.082 -2416,0.591444,0.00092,269.57588,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834724,81.803368,10.501552,23.468876,404.1448,35.550476,0.060232,83.488216,0.2246,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.349,3511.082 -2417,0.590578,0.00092,269.58381,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834738,81.804716,10.501724,23.469262,404.15145,35.551062,0.060234,83.489592,0.2246,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.355,3511.082 -2418,0.589712,0.00092,269.59173,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834752,81.806064,10.501896,23.469648,404.1581,35.551648,0.060236,83.490968,0.2246,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.36,3511.082 -2419,0.588846,0.00092,269.59966,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834766,81.807412,10.502068,23.470034,404.16475,35.552234,0.060238,83.492344,0.2246,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.366,3511.082 -2420,0.58798,0.00092,269.60758,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83478,81.80876,10.50224,23.47042,404.1714,35.55282,0.06024,83.49372,0.2246,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.371,3511.082 -2421,0.587114,0.00092,269.6155,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834794,81.810108,10.502412,23.470806,404.17805,35.553406,0.060242,83.495096,0.2246,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.377,3511.082 -2422,0.586248,0.00092,269.62343,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834808,81.811456,10.502584,23.471192,404.1847,35.553992,0.060244,83.496472,0.2246,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.382,3511.082 -2423,0.585382,0.00092,269.63135,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834822,81.812804,10.502756,23.471578,404.19135,35.554578,0.060246,83.497848,0.2246,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.388,3511.082 -2424,0.584516,0.00092,269.63928,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834836,81.814152,10.502928,23.471964,404.198,35.555164,0.060248,83.499224,0.2246,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.393,3511.082 -2425,0.58365,0.00092,269.6472,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83485,81.8155,10.5031,23.47235,404.20465,35.55575,0.06025,83.5006,0.2246,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.398,3511.082 -2426,0.582784,0.00092,269.65512,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834864,81.816848,10.503272,23.472736,404.2113,35.556336,0.060252,83.501976,0.2246,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.404,3511.082 -2427,0.581918,0.00092,269.66305,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834878,81.818196,10.503444,23.473122,404.21795,35.556922,0.060254,83.503352,0.2246,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.409,3511.082 -2428,0.581052,0.00092,269.67097,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834892,81.819544,10.503616,23.473508,404.2246,35.557508,0.060256,83.504728,0.2246,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.414,3511.082 -2429,0.580186,0.00092,269.6789,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834906,81.820892,10.503788,23.473894,404.23125,35.558094,0.060258,83.506104,0.2246,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.42,3511.082 -2430,0.57932,0.00092,269.68682,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83492,81.82224,10.50396,23.47428,404.2379,35.55868,0.06026,83.50748,0.2246,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.425,3511.082 -2431,0.578454,0.00092,269.69474,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834934,81.823588,10.504132,23.474666,404.24455,35.559266,0.060262,83.508856,0.2246,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.43,3511.082 -2432,0.577588,0.00092,269.70267,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834948,81.824936,10.504304,23.475052,404.2512,35.559852,0.060264,83.510232,0.2246,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.436,3511.082 -2433,0.576722,0.00092,269.71059,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834962,81.826284,10.504476,23.475438,404.25785,35.560438,0.060266,83.511608,0.2246,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.441,3511.082 -2434,0.575856,0.00092,269.71852,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834976,81.827632,10.504648,23.475824,404.2645,35.561024,0.060268,83.512984,0.2246,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.446,3511.082 -2435,0.57499,0.00092,269.72644,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83499,81.82898,10.50482,23.47621,404.27115,35.56161,0.06027,83.51436,0.2246,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.451,3511.082 -2436,0.574124,0.00092,269.73436,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835004,81.830328,10.504992,23.476596,404.2778,35.562196,0.060272,83.515736,0.2246,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.457,3511.082 -2437,0.573258,0.00092,269.74229,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835018,81.831676,10.505164,23.476982,404.28445,35.562782,0.060274,83.517112,0.2246,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.462,3511.082 -2438,0.572392,0.00092,269.75021,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835032,81.833024,10.505336,23.477368,404.2911,35.563368,0.060276,83.518488,0.2246,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.467,3511.082 -2439,0.571526,0.00092,269.75814,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835046,81.834372,10.505508,23.477754,404.29775,35.563954,0.060278,83.519864,0.2246,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.472,3511.082 -2440,0.57066,0.00092,269.76606,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83506,81.83572,10.50568,23.47814,404.3044,35.56454,0.06028,83.52124,0.2246,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.477,3511.082 -2441,0.569794,0.00092,269.77398,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835074,81.837068,10.505852,23.478526,404.31105,35.565126,0.060282,83.522616,0.2246,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.482,3511.082 -2442,0.568928,0.00092,269.78191,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835088,81.838416,10.506024,23.478912,404.3177,35.565712,0.060284,83.523992,0.2246,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.488,3511.082 -2443,0.568062,0.00092,269.78983,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835102,81.839764,10.506196,23.479298,404.32435,35.566298,0.060286,83.525368,0.2246,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.493,3511.082 -2444,0.567196,0.00092,269.79776,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835116,81.841112,10.506368,23.479684,404.331,35.566884,0.060288,83.526744,0.2246,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.498,3511.082 -2445,0.56633,0.00092,269.80568,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83513,81.84246,10.50654,23.48007,404.33765,35.56747,0.06029,83.52812,0.2246,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.503,3511.082 -2446,0.565464,0.00092,269.8136,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835144,81.843808,10.506712,23.480456,404.3443,35.568056,0.060292,83.529496,0.2246,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.508,3511.082 -2447,0.564598,0.00092,269.82153,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835158,81.845156,10.506884,23.480842,404.35095,35.568642,0.060294,83.530872,0.2246,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.513,3511.082 -2448,0.563732,0.00092,269.82945,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835172,81.846504,10.507056,23.481228,404.3576,35.569228,0.060296,83.532248,0.2246,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.518,3511.082 -2449,0.562866,0.00092,269.83738,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835186,81.847852,10.507228,23.481614,404.36425,35.569814,0.060298,83.533624,0.2246,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.523,3511.082 -2450,0.562,0.00092,269.8453,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.8352,81.8492,10.5074,23.482,404.3709,35.5704,0.0603,83.535,0.2246,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.528,3511.082 -2451,0.56425,0.00092,269.82627,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051496,0.0319,0.0058,0.835164,81.845968,10.506984,23.481072,404.35493,35.568994,0.060298,83.531698,0.2246,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.533,3511.082 -2452,0.5665,0.00092,269.80724,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051492,0.0319,0.0058,0.835128,81.842736,10.506568,23.480144,404.33896,35.567588,0.060296,83.528396,0.2246,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.538,3511.082 -2453,0.56875,0.00092,269.7882,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051488,0.0319,0.0058,0.835092,81.839504,10.506152,23.479216,404.32299,35.566182,0.060294,83.525094,0.2246,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.543,3511.082 -2454,0.571,0.00092,269.76917,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051484,0.0319,0.0058,0.835056,81.836272,10.505736,23.478288,404.30702,35.564776,0.060292,83.521792,0.2246,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.548,3511.082 -2455,0.57325,0.00092,269.75014,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05148,0.0319,0.0058,0.83502,81.83304,10.50532,23.47736,404.29105,35.56337,0.06029,83.51849,0.2246,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.553,3511.082 -2456,0.5755,0.00092,269.73111,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051476,0.0319,0.0058,0.834984,81.829808,10.504904,23.476432,404.27508,35.561964,0.060288,83.515188,0.2246,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.558,3511.082 -2457,0.57775,0.00092,269.71208,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051472,0.0319,0.0058,0.834948,81.826576,10.504488,23.475504,404.25911,35.560558,0.060286,83.511886,0.2246,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.563,3511.082 -2458,0.58,0.00092,269.69304,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051468,0.0319,0.0058,0.834912,81.823344,10.504072,23.474576,404.24314,35.559152,0.060284,83.508584,0.2246,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.568,3511.082 -2459,0.58225,0.00092,269.67401,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051464,0.0319,0.0058,0.834876,81.820112,10.503656,23.473648,404.22717,35.557746,0.060282,83.505282,0.2246,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.573,3511.082 -2460,0.5845,0.00092,269.65498,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05146,0.0319,0.0058,0.83484,81.81688,10.50324,23.47272,404.2112,35.55634,0.06028,83.50198,0.2246,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.578,3511.082 -2461,0.58675,0.00092,269.63595,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051456,0.0319,0.0058,0.834804,81.813648,10.502824,23.471792,404.19523,35.554934,0.060278,83.498678,0.2246,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.583,3511.082 -2462,0.589,0.00092,269.61692,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051452,0.0319,0.0058,0.834768,81.810416,10.502408,23.470864,404.17926,35.553528,0.060276,83.495376,0.2246,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.588,3511.082 -2463,0.59125,0.00092,269.59788,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051448,0.0319,0.0058,0.834732,81.807184,10.501992,23.469936,404.16329,35.552122,0.060274,83.492074,0.2246,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.593,3511.082 -2464,0.5935,0.00092,269.57885,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051444,0.0319,0.0058,0.834696,81.803952,10.501576,23.469008,404.14732,35.550716,0.060272,83.488772,0.2246,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.597,3511.082 -2465,0.59575,0.00092,269.55982,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05144,0.0319,0.0058,0.83466,81.80072,10.50116,23.46808,404.13135,35.54931,0.06027,83.48547,0.2246,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.602,3511.082 -2466,0.598,0.00092,269.54079,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051436,0.0319,0.0058,0.834624,81.797488,10.500744,23.467152,404.11538,35.547904,0.060268,83.482168,0.2246,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.607,3511.082 -2467,0.60025,0.00092,269.52176,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051432,0.0319,0.0058,0.834588,81.794256,10.500328,23.466224,404.09941,35.546498,0.060266,83.478866,0.2246,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.612,3511.082 -2468,0.6025,0.00092,269.50272,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051428,0.0319,0.0058,0.834552,81.791024,10.499912,23.465296,404.08344,35.545092,0.060264,83.475564,0.2246,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.617,3511.082 -2469,0.60475,0.00092,269.48369,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051424,0.0319,0.0058,0.834516,81.787792,10.499496,23.464368,404.06747,35.543686,0.060262,83.472262,0.2246,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.622,3511.082 -2470,0.607,0.00092,269.46466,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05142,0.0319,0.0058,0.83448,81.78456,10.49908,23.46344,404.0515,35.54228,0.06026,83.46896,0.2246,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.626,3511.082 -2471,0.60925,0.00092,269.44563,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051416,0.0319,0.0058,0.834444,81.781328,10.498664,23.462512,404.03553,35.540874,0.060258,83.465658,0.2246,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.631,3511.082 -2472,0.6115,0.00092,269.4266,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051412,0.0319,0.0058,0.834408,81.778096,10.498248,23.461584,404.01956,35.539468,0.060256,83.462356,0.2246,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.636,3511.082 -2473,0.61375,0.00092,269.40756,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051408,0.0319,0.0058,0.834372,81.774864,10.497832,23.460656,404.00359,35.538062,0.060254,83.459054,0.2246,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.641,3511.082 -2474,0.616,0.00092,269.38853,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051404,0.0319,0.0058,0.834336,81.771632,10.497416,23.459728,403.98762,35.536656,0.060252,83.455752,0.2246,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.645,3511.082 -2475,0.61825,0.00092,269.3695,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0514,0.0319,0.0058,0.8343,81.7684,10.497,23.4588,403.97165,35.53525,0.06025,83.45245,0.2246,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.65,3511.082 -2476,0.6205,0.00092,269.35047,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051396,0.0319,0.0058,0.834264,81.765168,10.496584,23.457872,403.95568,35.533844,0.060248,83.449148,0.2246,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.655,3511.082 -2477,0.62275,0.00092,269.33144,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051392,0.0319,0.0058,0.834228,81.761936,10.496168,23.456944,403.93971,35.532438,0.060246,83.445846,0.2246,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.66,3511.082 -2478,0.625,0.00092,269.3124,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051388,0.0319,0.0058,0.834192,81.758704,10.495752,23.456016,403.92374,35.531032,0.060244,83.442544,0.2246,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.664,3511.082 -2479,0.62725,0.00092,269.29337,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051384,0.0319,0.0058,0.834156,81.755472,10.495336,23.455088,403.90777,35.529626,0.060242,83.439242,0.2246,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.669,3511.082 -2480,0.6295,0.00092,269.27434,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05138,0.0319,0.0058,0.83412,81.75224,10.49492,23.45416,403.8918,35.52822,0.06024,83.43594,0.2246,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.674,3511.082 -2481,0.63175,0.00092,269.25531,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051376,0.0319,0.0058,0.834084,81.749008,10.494504,23.453232,403.87583,35.526814,0.060238,83.432638,0.2246,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.678,3511.082 -2482,0.634,0.00092,269.23628,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051372,0.0319,0.0058,0.834048,81.745776,10.494088,23.452304,403.85986,35.525408,0.060236,83.429336,0.2246,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.683,3511.082 -2483,0.63625,0.00092,269.21724,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051368,0.0319,0.0058,0.834012,81.742544,10.493672,23.451376,403.84389,35.524002,0.060234,83.426034,0.2246,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.688,3511.082 -2484,0.6385,0.00092,269.19821,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051364,0.0319,0.0058,0.833976,81.739312,10.493256,23.450448,403.82792,35.522596,0.060232,83.422732,0.2246,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.692,3511.082 -2485,0.64075,0.00092,269.17918,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05136,0.0319,0.0058,0.83394,81.73608,10.49284,23.44952,403.81195,35.52119,0.06023,83.41943,0.2246,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.697,3511.082 -2486,0.643,0.00092,269.16015,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051356,0.0319,0.0058,0.833904,81.732848,10.492424,23.448592,403.79598,35.519784,0.060228,83.416128,0.2246,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.702,3511.082 -2487,0.64525,0.00092,269.14112,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051352,0.0319,0.0058,0.833868,81.729616,10.492008,23.447664,403.78001,35.518378,0.060226,83.412826,0.2246,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.706,3511.082 -2488,0.6475,0.00092,269.12208,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051348,0.0319,0.0058,0.833832,81.726384,10.491592,23.446736,403.76404,35.516972,0.060224,83.409524,0.2246,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.711,3511.082 -2489,0.64975,0.00092,269.10305,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051344,0.0319,0.0058,0.833796,81.723152,10.491176,23.445808,403.74807,35.515566,0.060222,83.406222,0.2246,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.715,3511.082 -2490,0.652,0.00092,269.08402,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05134,0.0319,0.0058,0.83376,81.71992,10.49076,23.44488,403.7321,35.51416,0.06022,83.40292,0.2246,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.72,3511.082 -2491,0.65425,0.00092,269.06499,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051336,0.0319,0.0058,0.833724,81.716688,10.490344,23.443952,403.71613,35.512754,0.060218,83.399618,0.2246,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.725,3511.082 -2492,0.6565,0.00092,269.04596,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051332,0.0319,0.0058,0.833688,81.713456,10.489928,23.443024,403.70016,35.511348,0.060216,83.396316,0.2246,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.729,3511.082 -2493,0.65875,0.00092,269.02692,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051328,0.0319,0.0058,0.833652,81.710224,10.489512,23.442096,403.68419,35.509942,0.060214,83.393014,0.2246,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.734,3511.082 -2494,0.661,0.00092,269.00789,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051324,0.0319,0.0058,0.833616,81.706992,10.489096,23.441168,403.66822,35.508536,0.060212,83.389712,0.2246,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0,0.181,0,158.738,3511.082 -2495,0.66325,0.00092,268.98886,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05132,0.0319,0.0058,0.83358,81.70376,10.48868,23.44024,403.65225,35.50713,0.06021,83.38641,0.2246,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.743,3511.082 -2496,0.6655,0.00092,268.96983,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051316,0.0319,0.0058,0.833544,81.700528,10.488264,23.439312,403.63628,35.505724,0.060208,83.383108,0.2246,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.747,3511.082 -2497,0.66775,0.00092,268.9508,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051312,0.0319,0.0058,0.833508,81.697296,10.487848,23.438384,403.62031,35.504318,0.060206,83.379806,0.2246,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.752,3511.082 -2498,0.67,0.00092,268.93176,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051308,0.0319,0.0058,0.833472,81.694064,10.487432,23.437456,403.60434,35.502912,0.060204,83.376504,0.2246,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.756,3511.082 -2499,0.67225,0.00092,268.91273,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051304,0.0319,0.0058,0.833436,81.690832,10.487016,23.436528,403.58837,35.501506,0.060202,83.373202,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082 -2500,0.6745,0.00092,268.8937,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8334,81.6876,10.4866,23.4356,403.5724,35.5001,0.0602,83.3699,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082 diff --git a/inst/shinyApp/www/input/emissions/RCP6_custom_template.csv b/inst/shinyApp/www/input/emissions/RCP6_custom_template.csv deleted file mode 100644 index e4e7f1d..0000000 --- a/inst/shinyApp/www/input/emissions/RCP6_custom_template.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP 6 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,CF4_emissions,C2F6_emissions,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,1.6637375,0.23563239,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,1.7507764,0.24803412,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,1.8423953,0.26108852,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,1.9388369,0.27483004,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,2.0403528,0.28929476,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,2.1472124,0.30452082,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,2.2596977,0.32054821,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,2.3781004,0.33741917,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,2.5027381,0.35517808,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,2.6339328,0.37387169,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,2.7720335,0.39354912,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,2.9174066,0.41426223,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,3.0704314,0.39468287,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,3.2315097,0.37832187,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,3.4010636,0.3640764,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,3.579544,0.35194679,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,3.7674167,0.34193311,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,3.9651774,0.33403572,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,4.1733472,0.32825472,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,4.3924702,0.32459037,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,4.62313,0.32304286,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,4.865916,0.32361242,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,5.121479,0.32629927,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,5.3904959,0.3311036,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,5.6736692,0.33802563,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,5.9717491,0.34706557,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,6.2855162,0.35822365,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,6.6157969,0.37150001,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,6.9634615,0.38689499,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,7.3294266,0.40440867,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,7.7146508,0.42404135,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,8.1201607,0.4457932,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,8.5470132,0.46966444,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,14.984956,0.49565531,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,13.488099,0.52376596,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,13.488369,0.55399667,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,13.488639,0.58634761,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,13.488909,0.62081899,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,13.48918,0.65741104,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,13.489449,0.69612398,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,11.992564,0.73695798,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,13.489967,0.7799133,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,13.490244,0.82499011,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,13.490523,0.87218868,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,11.993645,0.9215092,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,13.49105,0.97295172,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,13.491328,1.0265167,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,11.994452,1.0822044,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,13.491857,1.1400146,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,11.994981,1.1999481,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,13.492387,1.2620043,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,11.995499,1.3261846,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,13.492893,1.392488,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,11.996004,1.4609153,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,11.996242,1.5314669,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,11.99648,1.6041426,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,13.493874,1.678943,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,11.996986,1.7558675,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,11.997224,1.8349176,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,11.997462,1.9160924,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,11.997683,2.0735678,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,11.997905,2.3729101,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,11.998111,2.3731469,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,11.998354,2.3733837,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,11.998587,2.3736205,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,10.501674,2.3738573,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,11.999071,2.3740941,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,11.999322,2.3743309,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,11.999575,2.3745677,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,10.502692,2.3748045,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,12.0001,2.3749,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,11.925,2.4345,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,11.8481,2.4915,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,11.7693,2.5463,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,11.6885,2.599,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,11.6059,2.6494,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,1.92,0.314,168.841,3511.082 -2006,8.081,1.1319,317.6624,7.7838,56640.5,1057.4015,215.3798,38.6291,8.228,36.3475,13.735,2.6399,10.5529,12.3831,3.8802,12.649,121.0746,10.9216,5.6761,34.1569,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,1.834,0.279,167.857,3511.082 -2007,8.1899,1.0683,319.4203,7.8838,56557.8,1053.2589,215.2944,38.4618,8.2049,36.3034,15.8599,2.6308,10.2946,13.773,4.5245,11.5302,129.6223,9.3647,6.4623,41.4253,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,1.752,0.249,167.857,3511.082 -2008,8.2971667,1.0046667,321.17513,7.9843333,56467.8,1049.0791,215.20513,38.292033,8.1816667,36.259433,17.976533,2.6214333,10.037133,15.1627,5.1676,10.393733,135.18193,7.7477,7.2483,48.693733,6.9909667,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,1.675,0.221,167.857,3511.082 -2009,8.4044333,0.94103333,322.92997,8.0848667,56377.8,1044.8993,215.11587,38.122267,8.1584333,36.215467,20.093167,2.6120667,9.7796667,16.5524,5.8107,9.2572667,140.74157,6.1307,8.0343,55.962167,7.3806333,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,1.601,0.197,167.857,3511.082 -2010,8.5117,0.8774,324.6848,8.1854,56287.8,1040.7195,215.0266,37.9525,8.1352,36.1715,22.2098,2.6027,9.5222,17.9421,6.4538,8.1208,146.3012,4.5137,8.8203,63.2306,7.7703,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,1.521,0.175,167.857,3511.082 -2011,8.55557,0.83029,323.38128,8.15982,55637.74,1039.1875,214.89234,37.71422,8.09546,36.16182,22.27617,2.60843,8.68522,22.21208,6.53096,8.19765,147.06015,4.61769,8.08983,63.4781,7.93581,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,1.445,0.156,167.857,3511.082 -2012,8.59944,0.78318,322.07776,8.13424,54987.68,1037.6555,214.75808,37.47594,8.05572,36.15214,22.34254,2.61416,7.84824,26.48206,6.60812,8.2745,147.8191,4.72168,7.35936,63.7256,8.10132,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,1.373,0.139,167.857,3511.082 -2013,8.64331,0.73607,320.77424,8.10866,54337.62,1036.1234,214.62382,37.23766,8.01598,36.14246,22.40891,2.61989,7.01126,30.75204,6.68528,8.35135,148.57805,4.82567,6.62889,63.9731,8.26683,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,1.304,0.124,167.857,3511.082 -2014,8.68718,0.68896,319.47072,8.08308,53687.56,1034.5914,214.48956,36.99938,7.97624,36.13278,22.47528,2.62562,6.17428,35.02202,6.76244,8.4282,149.337,4.92966,5.89842,64.2206,8.43234,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,1.239,0.11,167.857,3511.082 -2015,8.73105,0.64185,318.1672,8.0575,53037.5,1033.0594,214.3553,36.7611,7.9365,36.1231,22.54165,2.63135,5.3373,39.292,6.8396,8.50505,150.09595,5.03365,5.16795,64.4681,8.59785,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,1.177,0.098,155.925,3511.082 -2016,8.77492,0.59474,316.86368,8.03192,52387.44,1031.5274,214.22104,36.52282,7.89676,36.11342,22.60802,2.63708,4.50032,43.56198,6.91676,8.5819,150.8549,5.13764,4.43748,64.7156,8.76336,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,1.118,0.087,155.925,3511.082 -2017,8.81879,0.54763,315.56016,8.00634,51737.38,1029.9954,214.08678,36.28454,7.85702,36.10374,22.67439,2.64281,3.66334,47.83196,6.99392,8.65875,151.61385,5.24163,3.70701,64.9631,8.92887,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,1.062,0.078,155.925,3511.082 -2018,8.86266,0.50052,314.25664,7.98076,51087.32,1028.4633,213.95252,36.04626,7.81728,36.09406,22.74076,2.64854,2.82636,52.10194,7.07108,8.7356,152.3728,5.34562,2.97654,65.2106,9.09438,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,1.009,0.069,155.925,3511.082 -2019,8.90653,0.45341,312.95312,7.95518,50437.26,1026.9313,213.81826,35.80798,7.77754,36.08438,22.80713,2.65427,1.98938,56.37192,7.14824,8.81245,153.13175,5.44961,2.24607,65.4581,9.25989,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0.959,0.061,155.925,3511.082 -2020,8.9504,0.4063,311.6496,7.9296,49787.2,1025.3993,213.684,35.5697,7.7378,36.0747,22.8735,2.66,1.1524,60.6419,7.2254,8.8893,153.8907,5.5536,1.5156,65.7056,9.4254,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0.911,0.055,155.925,3511.082 -2021,9.05487,0.30994,313.11564,8.01843,48941.31,1025.732,213.95296,35.35512,7.71469,36.05673,22.9386,2.66493,1.1063,61.78125,7.31538,8.94218,154.41356,5.60414,1.43416,65.86791,9.44312,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0.865,0.049,155.925,3511.082 -2022,9.15934,0.21358,314.58168,8.10726,48095.42,1026.0648,214.22192,35.14054,7.69158,36.03876,23.0037,2.66986,1.0602,62.9206,7.40536,8.99506,154.93642,5.65468,1.35272,66.03022,9.46084,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0.822,0.043,155.925,3511.082 -2023,9.26381,0.11722,316.04772,8.19609,47249.53,1026.3975,214.49088,34.92596,7.66847,36.02079,23.0688,2.67479,1.0141,64.05995,7.49534,9.04794,155.45928,5.70522,1.27128,66.19253,9.47856,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0.781,0.039,155.925,3511.082 -2024,9.36828,0.02086,317.51376,8.28492,46403.64,1026.7303,214.75984,34.71138,7.64536,36.00282,23.1339,2.67972,0.968,65.1993,7.58532,9.10082,155.98214,5.75576,1.18984,66.35484,9.49628,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0.742,0.034,155.925,3511.082 -2025,9.47275,-0.0755,318.9798,8.37375,45557.75,1027.063,215.0288,34.4968,7.62225,35.98485,23.199,2.68465,0.9219,66.33865,7.6753,9.1537,156.505,5.8063,1.1084,66.51715,9.514,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0.705,0.031,155.925,3511.082 -2026,9.57722,-0.17186,320.44584,8.46258,44711.86,1027.3957,215.29776,34.28222,7.59914,35.96688,23.2641,2.68958,0.8758,67.478,7.76528,9.20658,157.02786,5.85684,1.02696,66.67946,9.53172,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0.669,0.027,155.925,3511.082 -2027,9.68169,-0.26822,321.91188,8.55141,43865.97,1027.7285,215.56672,34.06764,7.57603,35.94891,23.3292,2.69451,0.8297,68.61735,7.85526,9.25946,157.55072,5.90738,0.94552,66.84177,9.54944,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0.636,0.024,155.925,3511.082 -2028,9.78616,-0.36458,323.37792,8.64024,43020.08,1028.0612,215.83568,33.85306,7.55292,35.93094,23.3943,2.69944,0.7836,69.7567,7.94524,9.31234,158.07358,5.95792,0.86408,67.00408,9.56716,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0.604,0.022,155.925,3511.082 -2029,9.89063,-0.46094,324.84396,8.72907,42174.19,1028.394,216.10464,33.63848,7.52981,35.91297,23.4594,2.70437,0.7375,70.89605,8.03522,9.36522,158.59644,6.00846,0.78264,67.16639,9.58488,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0.574,0.019,155.925,3511.082 -2030,9.9951,-0.5573,326.31,8.8179,41328.3,1028.7267,216.3736,33.4239,7.5067,35.895,23.5245,2.7093,0.6914,72.0354,8.1252,9.4181,159.1193,6.059,0.7012,67.3287,9.6026,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0.545,0.017,155.925,3511.082 -2031,10.15102,-0.57298,328.09167,8.90894,41456.23,1030.971,217.00384,33.37117,7.4966,35.9507,23.55538,2.70139,0.66359,72.90303,8.24913,9.47689,159.57023,6.11699,0.70177,67.44688,9.61107,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0.518,0.015,155.925,3511.082 -2032,10.30694,-0.58866,329.87334,8.99998,41584.16,1033.2153,217.63408,33.31844,7.4865,36.0064,23.58626,2.69348,0.63578,73.77066,8.37306,9.53568,160.02116,6.17498,0.70234,67.56506,9.61954,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0.492,0.013,155.925,3511.082 -2033,10.46286,-0.60434,331.65501,9.09102,41712.09,1035.4597,218.26432,33.26571,7.4764,36.0621,23.61714,2.68557,0.60797,74.63829,8.49699,9.59447,160.47209,6.23297,0.70291,67.68324,9.62801,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0.467,0.012,155.925,3511.082 -2034,10.61878,-0.62002,333.43668,9.18206,41840.02,1037.704,218.89456,33.21298,7.4663,36.1178,23.64802,2.67766,0.58016,75.50592,8.62092,9.65326,160.92302,6.29096,0.70348,67.80142,9.63648,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0.444,0.011,155.925,3511.082 -2035,10.7747,-0.6357,335.21835,9.2731,41967.95,1039.9483,219.5248,33.16025,7.4562,36.1735,23.6789,2.66975,0.55235,76.37355,8.74485,9.71205,161.37395,6.34895,0.70405,67.9196,9.64495,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0.422,0.01,155.925,3511.082 -2036,10.93062,-0.65138,337.00002,9.36414,42095.88,1042.1926,220.15504,33.10752,7.4461,36.2292,23.70978,2.66184,0.52454,77.24118,8.86878,9.77084,161.82488,6.40694,0.70462,68.03778,9.65342,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0.401,0.008,155.925,3511.082 -2037,11.08654,-0.66706,338.78169,9.45518,42223.81,1044.4369,220.78528,33.05479,7.436,36.2849,23.74066,2.65393,0.49673,78.10881,8.99271,9.82963,162.27581,6.46493,0.70519,68.15596,9.66189,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0.381,0.008,155.925,3511.082 -2038,11.24246,-0.68274,340.56336,9.54622,42351.74,1046.6813,221.41552,33.00206,7.4259,36.3406,23.77154,2.64602,0.46892,78.97644,9.11664,9.88842,162.72674,6.52292,0.70576,68.27414,9.67036,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0.362,0.007,155.925,3511.082 -2039,11.39838,-0.69842,342.34503,9.63726,42479.67,1048.9256,222.04576,32.94933,7.4158,36.3963,23.80242,2.63811,0.44111,79.84407,9.24057,9.94721,163.17767,6.58091,0.70633,68.39232,9.67883,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0.344,0.006,155.925,3511.082 -2040,11.5543,-0.7141,344.1267,9.7283,42607.6,1051.1699,222.676,32.8966,7.4057,36.452,23.8333,2.6302,0.4133,80.7117,9.3645,10.006,163.6286,6.6389,0.7069,68.5105,9.6873,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0.326,0.005,155.925,3511.082 -2041,11.70325,-0.68907,345.22016,9.80918,42065.2,1049.4931,222.44617,32.65711,7.37374,36.47072,23.82125,2.6223,0.3966,80.10127,9.53752,10.04389,163.97624,6.68694,0.65691,68.554,9.69652,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0.31,0.005,155.925,3511.082 -2042,11.8522,-0.66404,346.31362,9.89006,41522.8,1047.8163,222.21634,32.41762,7.34178,36.48944,23.8092,2.6144,0.3799,79.49084,9.71054,10.08178,164.32388,6.73498,0.60692,68.5975,9.70574,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0.295,0.004,155.925,3511.082 -2043,12.00115,-0.63901,347.40708,9.97094,40980.4,1046.1395,221.98651,32.17813,7.30982,36.50816,23.79715,2.6065,0.3632,78.88041,9.88356,10.11967,164.67152,6.78302,0.55693,68.641,9.71496,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0.28,0.004,155.925,3511.082 -2044,12.1501,-0.61398,348.50054,10.05182,40438,1044.4627,221.75668,31.93864,7.27786,36.52688,23.7851,2.5986,0.3465,78.26998,10.05658,10.15756,165.01916,6.83106,0.50694,68.6845,9.72418,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0.266,0.003,155.925,3511.082 -2045,12.29905,-0.58895,349.594,10.1327,39895.6,1042.7859,221.52685,31.69915,7.2459,36.5456,23.77305,2.5907,0.3298,77.65955,10.2296,10.19545,165.3668,6.8791,0.45695,68.728,9.7334,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0.253,0.003,155.925,3511.082 -2046,12.448,-0.56392,350.68746,10.21358,39353.2,1041.1092,221.29702,31.45966,7.21394,36.56432,23.761,2.5828,0.3131,77.04912,10.40262,10.23334,165.71444,6.92714,0.40696,68.7715,9.74262,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0.24,0.003,155.925,3511.082 -2047,12.59695,-0.53889,351.78092,10.29446,38810.8,1039.4324,221.06719,31.22017,7.18198,36.58304,23.74895,2.5749,0.2964,76.43869,10.57564,10.27123,166.06208,6.97518,0.35697,68.815,9.75184,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0.228,0.002,155.925,3511.082 -2048,12.7459,-0.51386,352.87438,10.37534,38268.4,1037.7556,220.83736,30.98068,7.15002,36.60176,23.7369,2.567,0.2797,75.82826,10.74866,10.30912,166.40972,7.02322,0.30698,68.8585,9.76106,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0.217,0.002,155.925,3511.082 -2049,12.89485,-0.48883,353.96784,10.45622,37726,1036.0788,220.60753,30.74119,7.11806,36.62048,23.72485,2.5591,0.263,75.21783,10.92168,10.34701,166.75736,7.07126,0.25699,68.902,9.77028,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0.206,0.002,155.925,3511.082 -2050,13.0438,-0.4638,355.0613,10.5371,37183.6,1034.402,220.3777,30.5017,7.0861,36.6392,23.7128,2.5512,0.2463,74.6074,11.0947,10.3849,167.105,7.1193,0.207,68.9455,9.7795,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0.195,0.002,155.925,3511.082 -2051,13.22186,-0.44326,355.94998,10.6195,36957.17,1030.5732,219.75002,30.28262,7.02414,36.54813,23.71405,2.54411,0.23543,75.55522,11.0965,10.44021,167.59135,7.18313,0.1948,69.0534,9.79437,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0.186,0.001,155.925,3511.082 -2052,13.39992,-0.42272,356.83866,10.7019,36730.74,1026.7444,219.12234,30.06354,6.96218,36.45706,23.7153,2.53702,0.22456,76.50304,11.0983,10.49552,168.0777,7.24696,0.1826,69.1613,9.80924,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0.176,0.001,155.925,3511.082 -2053,13.57798,-0.40218,357.72734,10.7843,36504.31,1022.9156,218.49466,29.84446,6.90022,36.36599,23.71655,2.52993,0.21369,77.45086,11.1001,10.55083,168.56405,7.31079,0.1704,69.2692,9.82411,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0.168,0.001,155.925,3511.082 -2054,13.75604,-0.38164,358.61602,10.8667,36277.88,1019.0868,217.86698,29.62538,6.83826,36.27492,23.7178,2.52284,0.20282,78.39868,11.1019,10.60614,169.0504,7.37462,0.1582,69.3771,9.83898,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0.159,0.001,155.925,3511.082 -2055,13.9341,-0.3611,359.5047,10.9491,36051.45,1015.258,217.2393,29.4063,6.7763,36.18385,23.71905,2.51575,0.19195,79.3465,11.1037,10.66145,169.53675,7.43845,0.146,69.485,9.85385,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0.151,0.001,155.925,3511.082 -2056,14.11216,-0.34056,360.39338,11.0315,35825.02,1011.4293,216.61162,29.18722,6.71434,36.09278,23.7203,2.50866,0.18108,80.29432,11.1055,10.71676,170.0231,7.50228,0.1338,69.5929,9.86872,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0.144,0.001,155.925,3511.082 -2057,14.29022,-0.32002,361.28206,11.1139,35598.59,1007.6005,215.98394,28.96814,6.65238,36.00171,23.72155,2.50157,0.17021,81.24214,11.1073,10.77207,170.50945,7.56611,0.1216,69.7008,9.88359,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0.136,0.001,155.925,3511.082 -2058,14.46828,-0.29948,362.17074,11.1963,35372.16,1003.7717,215.35626,28.74906,6.59042,35.91064,23.7228,2.49448,0.15934,82.18996,11.1091,10.82738,170.9958,7.62994,0.1094,69.8087,9.89846,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0.13,0.001,155.925,3511.082 -2059,14.64634,-0.27894,363.05942,11.2787,35145.73,999.94289,214.72858,28.52998,6.52846,35.81957,23.72405,2.48739,0.14847,83.13778,11.1109,10.88269,171.48215,7.69377,0.0972,69.9166,9.91333,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0.123,0.001,155.925,3511.082 -2060,14.8244,-0.2584,363.9481,11.3611,34919.3,996.1141,214.1009,28.3109,6.4665,35.7285,23.7253,2.4803,0.1376,84.0856,11.1127,10.938,171.9685,7.7576,0.085,70.0245,9.9282,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0.117,0.001,155.925,3511.082 -2061,14.99256,-0.23549,363.5485,11.42811,33657.47,990.16887,213.11653,27.85015,6.38933,35.58927,23.69872,2.48426,0.13115,85.06506,11.10611,10.98618,172.36387,7.81599,0.08313,70.08915,9.94365,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0.111,0,155.925,3511.082 -2062,15.16072,-0.21258,363.1489,11.49512,32395.64,984.22364,212.13216,27.3894,6.31216,35.45004,23.67214,2.48822,0.1247,86.04452,11.09952,11.03436,172.75924,7.87438,0.08126,70.1538,9.9591,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0.106,0,155.925,3511.082 -2063,15.32888,-0.18967,362.7493,11.56213,31133.81,978.27841,211.14779,26.92865,6.23499,35.31081,23.64556,2.49218,0.11825,87.02398,11.09293,11.08254,173.15461,7.93277,0.07939,70.21845,9.97455,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0.1,0,155.925,3511.082 -2064,15.49704,-0.16676,362.3497,11.62914,29871.98,972.33318,210.16342,26.4679,6.15782,35.17158,23.61898,2.49614,0.1118,88.00344,11.08634,11.13072,173.54998,7.99116,0.07752,70.2831,9.99,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0.095,0,155.925,3511.082 -2065,15.6652,-0.14385,361.9501,11.69615,28610.15,966.38795,209.17905,26.00715,6.08065,35.03235,23.5924,2.5001,0.10535,88.9829,11.07975,11.1789,173.94535,8.04955,0.07565,70.34775,10.00545,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0.091,0,155.925,3511.082 -2066,15.83336,-0.12094,361.5505,11.76316,27348.32,960.44272,208.19468,25.5464,6.00348,34.89312,23.56582,2.50406,0.0989,89.96236,11.07316,11.22708,174.34072,8.10794,0.07378,70.4124,10.0209,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0.086,0,155.925,3511.082 -2067,16.00152,-0.09803,361.1509,11.83017,26086.49,954.49749,207.21031,25.08565,5.92631,34.75389,23.53924,2.50802,0.09245,90.94182,11.06657,11.27526,174.73609,8.16633,0.07191,70.47705,10.03635,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0.082,0,155.925,3511.082 -2068,16.16968,-0.07512,360.7513,11.89718,24824.66,948.55226,206.22594,24.6249,5.84914,34.61466,23.51266,2.51198,0.086,91.92128,11.05998,11.32344,175.13146,8.22472,0.07004,70.5417,10.0518,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0.078,0,155.925,3511.082 -2069,16.33784,-0.05221,360.3517,11.96419,23562.83,942.60703,205.24157,24.16415,5.77197,34.47543,23.48608,2.51594,0.07955,92.90074,11.05339,11.37162,175.52683,8.28311,0.06817,70.60635,10.06725,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0.074,0,155.925,3511.082 -2070,16.506,-0.0293,359.9521,12.0312,22301,936.6618,204.2572,23.7034,5.6948,34.3362,23.4595,2.5199,0.0731,93.8802,11.0468,11.4198,175.9222,8.3415,0.0663,70.671,10.0827,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0.07,0,155.925,3511.082 -2071,16.58346,-0.00196,357.94994,12.06433,21571.32,930.29864,203.01075,23.32501,5.63556,34.23657,23.40702,2.5018,0.06951,94.1193,11.03777,11.45168,176.03719,8.38413,0.06477,70.60634,10.07405,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0.067,0,155.925,3511.082 -2072,16.66092,0.02538,355.94778,12.09746,20841.64,923.93548,201.7643,22.94662,5.57632,34.13694,23.35454,2.4837,0.06592,94.3584,11.02874,11.48356,176.15218,8.42676,0.06324,70.54168,10.0654,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0.063,0,155.925,3511.082 -2073,16.73838,0.05272,353.94562,12.13059,20111.96,917.57232,200.51785,22.56823,5.51708,34.03731,23.30206,2.4656,0.06233,94.5975,11.01971,11.51544,176.26717,8.46939,0.06171,70.47702,10.05675,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0.06,0,155.925,3511.082 -2074,16.81584,0.08006,351.94346,12.16372,19382.28,911.20916,199.2714,22.18984,5.45784,33.93768,23.24958,2.4475,0.05874,94.8366,11.01068,11.54732,176.38216,8.51202,0.06018,70.41236,10.0481,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0.057,0,155.925,3511.082 -2075,16.8933,0.1074,349.9413,12.19685,18652.6,904.846,198.02495,21.81145,5.3986,33.83805,23.1971,2.4294,0.05515,95.0757,11.00165,11.5792,176.49715,8.55465,0.05865,70.3477,10.03945,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0.054,0,155.925,3511.082 -2076,16.97076,0.13474,347.93914,12.22998,17922.92,898.48284,196.7785,21.43306,5.33936,33.73842,23.14462,2.4113,0.05156,95.3148,10.99262,11.61108,176.61214,8.59728,0.05712,70.28304,10.0308,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0.052,0,155.925,3511.082 -2077,17.04822,0.16208,345.93698,12.26311,17193.24,892.11968,195.53205,21.05467,5.28012,33.63879,23.09214,2.3932,0.04797,95.5539,10.98359,11.64296,176.72713,8.63991,0.05559,70.21838,10.02215,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0.049,0,155.925,3511.082 -2078,17.12568,0.18942,343.93482,12.29624,16463.56,885.75652,194.2856,20.67628,5.22088,33.53916,23.03966,2.3751,0.04438,95.793,10.97456,11.67484,176.84212,8.68254,0.05406,70.15372,10.0135,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0.046,0,155.925,3511.082 -2079,17.20314,0.21676,341.93266,12.32937,15733.88,879.39336,193.03915,20.29789,5.16164,33.43953,22.98718,2.357,0.04079,96.0321,10.96553,11.70672,176.95711,8.72517,0.05253,70.08906,10.00485,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0.044,0,155.925,3511.082 -2080,17.2806,0.2441,339.9305,12.3625,15004.2,873.0302,191.7927,19.9195,5.1024,33.3399,22.9347,2.3389,0.0372,96.2712,10.9565,11.7386,177.0721,8.7678,0.051,70.0244,9.9962,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0.042,0,155.925,3511.082 -2081,16.98385,0.24394,332.93877,12.36222,14762.52,869.00559,190.80261,19.72493,5.0587,33.27324,22.83527,2.33197,0.03348,95.76444,10.9361,11.74268,176.82146,8.79093,0.04968,69.79775,9.98408,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0.04,0,155.925,3511.082 -2082,16.6871,0.24378,325.94704,12.36194,14520.84,864.98098,189.81252,19.53036,5.015,33.20658,22.73584,2.32504,0.02976,95.25768,10.9157,11.74676,176.57082,8.81406,0.04836,69.5711,9.97196,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0.038,0,155.925,3511.082 -2083,16.39035,0.24362,318.95531,12.36166,14279.16,860.95637,188.82243,19.33579,4.9713,33.13992,22.63641,2.31811,0.02604,94.75092,10.8953,11.75084,176.32018,8.83719,0.04704,69.34445,9.95984,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0.036,0,155.925,3511.082 -2084,16.0936,0.24346,311.96358,12.36138,14037.48,856.93176,187.83234,19.14122,4.9276,33.07326,22.53698,2.31118,0.02232,94.24416,10.8749,11.75492,176.06954,8.86032,0.04572,69.1178,9.94772,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0.034,0,155.925,3511.082 -2085,15.79685,0.2433,304.97185,12.3611,13795.8,852.90715,186.84225,18.94665,4.8839,33.0066,22.43755,2.30425,0.0186,93.7374,10.8545,11.759,175.8189,8.88345,0.0444,68.89115,9.9356,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0.032,0,155.925,3511.082 -2086,15.5001,0.24314,297.98012,12.36082,13554.12,848.88254,185.85216,18.75208,4.8402,32.93994,22.33812,2.29732,0.01488,93.23064,10.8341,11.76308,175.56826,8.90658,0.04308,68.6645,9.92348,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0.031,0,155.925,3511.082 -2087,15.20335,0.24298,290.98839,12.36054,13312.44,844.85793,184.86207,18.55751,4.7965,32.87328,22.23869,2.29039,0.01116,92.72388,10.8137,11.76716,175.31762,8.92971,0.04176,68.43785,9.91136,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0.029,0,155.925,3511.082 -2088,14.9066,0.24282,283.99666,12.36026,13070.76,840.83332,183.87198,18.36294,4.7528,32.80662,22.13926,2.28346,0.00744,92.21712,10.7933,11.77124,175.06698,8.95284,0.04044,68.2112,9.89924,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0.028,0,155.925,3511.082 -2089,14.60985,0.24266,277.00493,12.35998,12829.08,836.80871,182.88189,18.16837,4.7091,32.73996,22.03983,2.27653,0.00372,91.71036,10.7729,11.77532,174.81634,8.97597,0.03912,67.98455,9.88712,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0.026,0,155.925,3511.082 -2090,14.3131,0.2425,270.0132,12.3597,12587.4,832.7841,181.8918,17.9738,4.6654,32.6733,21.9404,2.2696,0,91.2036,10.7525,11.7794,174.5657,8.9991,0.0378,67.7579,9.875,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0.025,0,155.925,3511.082 -2091,14.25712,0.23639,267.60942,12.35073,12372.53,828.72826,180.91739,17.78501,4.63501,32.62249,21.82626,2.25281,0,90.20593,10.7178,11.77139,174.15911,9.00912,0.03676,67.48827,9.83722,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0.024,0,155.925,3511.082 -2092,14.20114,0.23028,265.20564,12.34176,12157.66,824.67242,179.94298,17.59622,4.60462,32.57168,21.71212,2.23602,0,89.20826,10.6831,11.76338,173.75252,9.01914,0.03572,67.21864,9.79944,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0.023,0,155.925,3511.082 -2093,14.14516,0.22417,262.80186,12.33279,11942.79,820.61658,178.96857,17.40743,4.57423,32.52087,21.59798,2.21923,0,88.21059,10.6484,11.75537,173.34593,9.02916,0.03468,66.94901,9.76166,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0.022,0,155.925,3511.082 -2094,14.08918,0.21806,260.39808,12.32382,11727.92,816.56074,177.99416,17.21864,4.54384,32.47006,21.48384,2.20244,0,87.21292,10.6137,11.74736,172.93934,9.03918,0.03364,66.67938,9.72388,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0.02,0,155.925,3511.082 -2095,14.0332,0.21195,257.9943,12.31485,11513.05,812.5049,177.01975,17.02985,4.51345,32.41925,21.3697,2.18565,0,86.21525,10.579,11.73935,172.53275,9.0492,0.0326,66.40975,9.6861,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0.019,0,155.925,3511.082 -2096,13.97722,0.20584,255.59052,12.30588,11298.18,808.44906,176.04534,16.84106,4.48306,32.36844,21.25556,2.16886,0,85.21758,10.5443,11.73134,172.12616,9.05922,0.03156,66.14012,9.64832,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0.018,0,155.925,3511.082 -2097,13.92124,0.19973,253.18674,12.29691,11083.31,804.39322,175.07093,16.65227,4.45267,32.31763,21.14142,2.15207,0,84.21991,10.5096,11.72333,171.71957,9.06924,0.03052,65.87049,9.61054,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0.018,0,155.925,3511.082 -2098,13.86526,0.19362,250.78296,12.28794,10868.44,800.33738,174.09652,16.46348,4.42228,32.26682,21.02728,2.13528,0,83.22224,10.4749,11.71532,171.31298,9.07926,0.02948,65.60086,9.57276,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0.017,0,155.925,3511.082 -2099,13.80928,0.18751,248.37918,12.27897,10653.57,796.28154,173.12211,16.27469,4.39189,32.21601,20.91314,2.11849,0,82.22457,10.4402,11.70731,170.90639,9.08928,0.02844,65.33123,9.53498,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0.016,0,155.925,3511.082 -2100,13.7533,0.1814,245.9754,12.27,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,20.799,2.1017,0,81.2269,10.4055,11.6993,170.4998,9.0993,0.0274,65.0616,9.4972,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0.015,0,155.925,3511.082 -2101,13.548236,0.174144,245.99464,12.203604,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,20.384732,2.06044,0,81.228628,10.406792,11.6993,170.4998,9.081312,0.0274,65.0616,9.315568,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0.014,0,155.925,3511.082 -2102,13.343172,0.166888,246.01389,12.137208,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,19.970464,2.01918,0,81.230356,10.408084,11.6993,170.4998,9.063324,0.0274,65.0616,9.133936,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0.014,0,155.925,3511.082 -2103,13.138108,0.159632,246.03313,12.070812,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,19.556196,1.97792,0,81.232084,10.409376,11.6993,170.4998,9.045336,0.0274,65.0616,8.952304,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0.013,0,155.925,3511.082 -2104,12.933044,0.152376,246.05238,12.004416,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,19.141928,1.93666,0,81.233812,10.410668,11.6993,170.4998,9.027348,0.0274,65.0616,8.770672,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0.012,0,155.925,3511.082 -2105,12.72798,0.14512,246.07162,11.93802,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,18.72766,1.8954,0,81.23554,10.41196,11.6993,170.4998,9.00936,0.0274,65.0616,8.58904,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0.012,0,155.925,3511.082 -2106,12.522916,0.137864,246.09086,11.871624,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,18.313392,1.85414,0,81.237268,10.413252,11.6993,170.4998,8.991372,0.0274,65.0616,8.407408,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0.011,0,155.925,3511.082 -2107,12.317852,0.130608,246.11011,11.805228,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,17.899124,1.81288,0,81.238996,10.414544,11.6993,170.4998,8.973384,0.0274,65.0616,8.225776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0.011,0,155.925,3511.082 -2108,12.112788,0.123352,246.12935,11.738832,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,17.484856,1.77162,0,81.240724,10.415836,11.6993,170.4998,8.955396,0.0274,65.0616,8.044144,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0.01,0,155.925,3511.082 -2109,11.907724,0.116096,246.1486,11.672436,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,17.070588,1.73036,0,81.242452,10.417128,11.6993,170.4998,8.937408,0.0274,65.0616,7.862512,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0.009,0,155.925,3511.082 -2110,11.70266,0.10884,246.16784,11.60604,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,16.65632,1.6891,0,81.24418,10.41842,11.6993,170.4998,8.91942,0.0274,65.0616,7.68088,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0.009,0,155.925,3511.082 -2111,11.497596,0.101584,246.18708,11.539644,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,16.242052,1.64784,0,81.245908,10.419712,11.6993,170.4998,8.901432,0.0274,65.0616,7.499248,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0.009,0,155.925,3511.082 -2112,11.292532,0.094328,246.20633,11.473248,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,15.827784,1.60658,0,81.247636,10.421004,11.6993,170.4998,8.883444,0.0274,65.0616,7.317616,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0.008,0,155.925,3511.082 -2113,11.087468,0.087072,246.22557,11.406852,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,15.413516,1.56532,0,81.249364,10.422296,11.6993,170.4998,8.865456,0.0274,65.0616,7.135984,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0.008,0,155.925,3511.082 -2114,10.882404,0.079816,246.24482,11.340456,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,14.999248,1.52406,0,81.251092,10.423588,11.6993,170.4998,8.847468,0.0274,65.0616,6.954352,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0.007,0,155.925,3511.082 -2115,10.67734,0.07256,246.26406,11.27406,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,14.58498,1.4828,0,81.25282,10.42488,11.6993,170.4998,8.82948,0.0274,65.0616,6.77272,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0.007,0,155.925,3511.082 -2116,10.472276,0.065304,246.2833,11.207664,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,14.170712,1.44154,0,81.254548,10.426172,11.6993,170.4998,8.811492,0.0274,65.0616,6.591088,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0.007,0,155.925,3511.082 -2117,10.267212,0.058048,246.30255,11.141268,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,13.756444,1.40028,0,81.256276,10.427464,11.6993,170.4998,8.793504,0.0274,65.0616,6.409456,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0.006,0,155.925,3511.082 -2118,10.062148,0.050792,246.32179,11.074872,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,13.342176,1.35902,0,81.258004,10.428756,11.6993,170.4998,8.775516,0.0274,65.0616,6.227824,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0.006,0,155.925,3511.082 -2119,9.857084,0.043536,246.34104,11.008476,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,12.927908,1.31776,0,81.259732,10.430048,11.6993,170.4998,8.757528,0.0274,65.0616,6.046192,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0.006,0,155.925,3511.082 -2120,9.65202,0.03628,246.36028,10.94208,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,12.51364,1.2765,0,81.26146,10.43134,11.6993,170.4998,8.73954,0.0274,65.0616,5.86456,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0.005,0,155.925,3511.082 -2121,9.446956,0.029024,246.37952,10.875684,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,12.099372,1.23524,0,81.263188,10.432632,11.6993,170.4998,8.721552,0.0274,65.0616,5.682928,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0.005,0,155.925,3511.082 -2122,9.241892,0.021768,246.39877,10.809288,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,11.685104,1.19398,0,81.264916,10.433924,11.6993,170.4998,8.703564,0.0274,65.0616,5.501296,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0.005,0,155.925,3511.082 -2123,9.036828,0.014512,246.41801,10.742892,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,11.270836,1.15272,0,81.266644,10.435216,11.6993,170.4998,8.685576,0.0274,65.0616,5.319664,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0.005,0,155.925,3511.082 -2124,8.831764,0.007256,246.43726,10.676496,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,10.856568,1.11146,0,81.268372,10.436508,11.6993,170.4998,8.667588,0.0274,65.0616,5.138032,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0.004,0,155.925,3511.082 -2125,8.6267,0,246.4565,10.6101,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,10.4423,1.0702,0,81.2701,10.4378,11.6993,170.4998,8.6496,0.0274,65.0616,4.9564,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0.004,0,155.925,3511.082 -2126,8.4216348,0,246.47573,10.543696,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,10.02803,1.0289391,0,81.271826,10.4391,11.6993,170.4998,8.6316174,0.0274,65.0616,4.7747739,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0.004,0,155.925,3511.082 -2127,8.2165696,0,246.49496,10.477291,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,9.6137609,0.98767826,0,81.273552,10.4404,11.6993,170.4998,8.6136348,0.0274,65.0616,4.5931478,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0.004,0,155.925,3511.082 -2128,8.0115043,0,246.51419,10.410887,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,9.1994913,0.94641739,0,81.275278,10.4417,11.6993,170.4998,8.5956522,0.0274,65.0616,4.4115217,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0.004,0,155.925,3511.082 -2129,7.8064391,0,246.53342,10.344483,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,8.7852217,0.90515652,0,81.277004,10.443,11.6993,170.4998,8.5776696,0.0274,65.0616,4.2298957,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0.003,0,155.925,3511.082 -2130,7.6013739,0,246.55265,10.278078,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,8.3709522,0.86389565,0,81.27873,10.4443,11.6993,170.4998,8.559687,0.0274,65.0616,4.0482696,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0.003,0,155.925,3511.082 -2131,7.3963087,0,246.57188,10.211674,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,7.9566826,0.82263478,0,81.280457,10.4456,11.6993,170.4998,8.5417043,0.0274,65.0616,3.8666435,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0.003,0,155.925,3511.082 -2132,7.1912435,0,246.59111,10.14527,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,7.542413,0.78137391,0,81.282183,10.4469,11.6993,170.4998,8.5237217,0.0274,65.0616,3.6850174,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0.003,0,155.925,3511.082 -2133,6.9861783,0,246.61034,10.078865,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,7.1281435,0.74011304,0,81.283909,10.4482,11.6993,170.4998,8.5057391,0.0274,65.0616,3.5033913,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0.003,0,155.925,3511.082 -2134,6.781113,0,246.62957,10.012461,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,6.7138739,0.69885217,0,81.285635,10.4495,11.6993,170.4998,8.4877565,0.0274,65.0616,3.3217652,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0.003,0,155.925,3511.082 -2135,6.5760478,0,246.6488,9.9460565,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,6.2996043,0.6575913,0,81.287361,10.4508,11.6993,170.4998,8.4697739,0.0274,65.0616,3.1401391,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0.002,0,155.925,3511.082 -2136,6.3709826,0,246.66803,9.8796522,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,5.8853348,0.61633043,0,81.289087,10.4521,11.6993,170.4998,8.4517913,0.0274,65.0616,2.958513,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0.002,0,155.925,3511.082 -2137,6.1659174,0,246.68727,9.8132478,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,5.4710652,0.57506957,0,81.290813,10.4534,11.6993,170.4998,8.4338087,0.0274,65.0616,2.776887,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0.002,0,155.925,3511.082 -2138,5.9608522,0,246.7065,9.7468435,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,5.0567957,0.5338087,0,81.292539,10.4547,11.6993,170.4998,8.4158261,0.0274,65.0616,2.5952609,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0.002,0,155.925,3511.082 -2139,5.755787,0,246.72573,9.6804391,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,4.6425261,0.49254783,0,81.294265,10.456,11.6993,170.4998,8.3978435,0.0274,65.0616,2.4136348,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0.002,0,155.925,3511.082 -2140,5.5507217,0,246.74496,9.6140348,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,4.2282565,0.45128696,0,81.295991,10.4573,11.6993,170.4998,8.3798609,0.0274,65.0616,2.2320087,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0.002,0,155.925,3511.082 -2141,5.3456565,0,246.76419,9.5476304,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,3.813987,0.41002609,0,81.297717,10.4586,11.6993,170.4998,8.3618783,0.0274,65.0616,2.0503826,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0.002,0,155.925,3511.082 -2142,5.1405913,0,246.78342,9.4812261,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,3.3997174,0.36876522,0,81.299443,10.4599,11.6993,170.4998,8.3438957,0.0274,65.0616,1.8687565,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0.002,0,155.925,3511.082 -2143,4.9355261,0,246.80265,9.4148217,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,2.9854478,0.32750435,0,81.30117,10.4612,11.6993,170.4998,8.325913,0.0274,65.0616,1.6871304,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0.002,0,155.925,3511.082 -2144,4.7304609,0,246.82188,9.3484174,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,2.5711783,0.28624348,0,81.302896,10.4625,11.6993,170.4998,8.3079304,0.0274,65.0616,1.5055043,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0.002,0,155.925,3511.082 -2145,4.5253957,0,246.84111,9.282013,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,2.1569087,0.24498261,0,81.304622,10.4638,11.6993,170.4998,8.2899478,0.0274,65.0616,1.3238783,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0.001,0,155.925,3511.082 -2146,4.3203304,0,246.86034,9.2156087,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,1.7426391,0.20372174,0,81.306348,10.4651,11.6993,170.4998,8.2719652,0.0274,65.0616,1.1422522,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0.001,0,155.925,3511.082 -2147,4.1152652,0,246.87957,9.1492043,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,1.3283696,0.16246087,0,81.308074,10.4664,11.6993,170.4998,8.2539826,0.0274,65.0616,0.96062609,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0.001,0,155.925,3511.082 -2148,3.9102,0,246.8988,9.0828,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.9141,0.1212,0,81.3098,10.4677,11.6993,170.4998,8.236,0.0274,65.0616,0.779,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0.001,0,155.925,3511.082 -2149,3.5678,0,247.6444,9.0373,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0819,0.037,0.8262,81.3751,10.5132,11.7206,171.2635,8.1553,0.1092,65.1637,0.3953,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0.175,0,155.922,3511.082 -2150,3.5062,0,247.7303,9.0391,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0819,0.037,0.8264,81.3904,10.5152,11.7228,171.2955,8.157,0.1092,65.176,0.3953,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.949,3511.082 -2151,3.4375,0,247.7774,9.0405,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8264,81.3986,10.5162,11.7239,171.3129,8.1577,0.1092,65.1826,0.3953,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.957,3511.082 -2152,3.3717,0,247.8331,9.0411,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8265,81.4085,10.5175,11.7253,171.3336,8.1585,0.1092,65.1904,0.3953,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.964,3511.082 -2153,3.3114,0,247.8896,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8267,81.4185,10.5187,11.7267,171.3547,8.1597,0.1092,65.1983,0.3953,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.973,3511.082 -2154,3.2545,0,247.9452,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8268,81.4283,10.52,11.7282,171.3754,8.1606,0.1092,65.2063,0.3953,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.983,3511.082 -2155,3.2005,0,247.9997,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8268,81.4378,10.5215,11.7296,171.3954,8.1617,0.1092,65.2139,0.3953,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,155.994,3511.082 -2156,3.15264,0,248.05092,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8269,81.44686,10.52262,11.7309,171.41446,8.16262,0.10922,65.22116,0.3953,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.005,3511.082 -2157,3.10478,0,248.10214,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.827,81.45592,10.52374,11.7322,171.43352,8.16354,0.10924,65.22842,0.3953,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.018,3511.082 -2158,3.05692,0,248.15336,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8271,81.46498,10.52486,11.7335,171.45258,8.16446,0.10926,65.23568,0.3953,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.03,3511.082 -2159,3.00906,0,248.20458,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8272,81.47404,10.52598,11.7348,171.47164,8.16538,0.10928,65.24294,0.3953,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.044,3511.082 -2160,2.9612,0,248.2558,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8273,81.4831,10.5271,11.7361,171.4907,8.1663,0.1093,65.2502,0.3953,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.057,3511.082 -2161,2.92104,0,248.30274,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82738,81.49138,10.5282,11.7373,171.50814,8.16712,0.10932,65.25682,0.3953,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.071,3511.082 -2162,2.88088,0,248.34968,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82746,81.49966,10.5293,11.7385,171.52558,8.16794,0.10934,65.26344,0.3953,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.084,3511.082 -2163,2.84072,0,248.39662,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82754,81.50794,10.5304,11.7397,171.54302,8.16876,0.10936,65.27006,0.3953,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.098,3511.082 -2164,2.80056,0,248.44356,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82762,81.51622,10.5315,11.7409,171.56046,8.16958,0.10938,65.27668,0.3953,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.112,3511.082 -2165,2.7604,0,248.4905,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.8277,81.5245,10.5326,11.7421,171.5779,8.1704,0.1094,65.2833,0.3953,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.127,3511.082 -2166,2.7258,0,248.53416,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82776,81.53222,10.53358,11.74322,171.59414,8.17116,0.10942,65.28948,0.3953,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.141,3511.082 -2167,2.6912,0,248.57782,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82782,81.53994,10.53456,11.74434,171.61038,8.17192,0.10944,65.29566,0.3953,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.155,3511.082 -2168,2.6566,0,248.62148,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82788,81.54766,10.53554,11.74546,171.62662,8.17268,0.10946,65.30184,0.3953,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.169,3511.082 -2169,2.622,0,248.66514,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.82794,81.55538,10.53652,11.74658,171.64286,8.17344,0.10948,65.30802,0.3953,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.183,3511.082 -2170,2.5874,0,248.7088,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082,0.037,0.828,81.5631,10.5375,11.7477,171.6591,8.1742,0.1095,65.3142,0.3953,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.198,3511.082 -2171,2.55704,0,248.74978,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08202,0.037,0.8281,81.57034,10.53844,11.74872,171.67432,8.1749,0.1095,65.32,0.3953,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.212,3511.082 -2172,2.52668,0,248.79076,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08204,0.037,0.8282,81.57758,10.53938,11.74974,171.68954,8.1756,0.1095,65.3258,0.3953,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.226,3511.082 -2173,2.49632,0,248.83174,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08206,0.037,0.8283,81.58482,10.54032,11.75076,171.70476,8.1763,0.1095,65.3316,0.3953,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.24,3511.082 -2174,2.46596,0,248.87272,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08208,0.037,0.8284,81.59206,10.54126,11.75178,171.71998,8.177,0.1095,65.3374,0.3953,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.254,3511.082 -2175,2.4356,0,248.9137,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.8285,81.5993,10.5422,11.7528,171.7352,8.1777,0.1095,65.3432,0.3953,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0.175,0,156.268,3511.082 -2176,2.40884,0,248.95232,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82858,81.6061,10.54306,11.75378,171.74956,8.17838,0.10952,65.34866,0.3953,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.282,3511.082 -2177,2.38208,0,248.99094,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82866,81.6129,10.54392,11.75476,171.76392,8.17906,0.10954,65.35412,0.3953,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.296,3511.082 -2178,2.35532,0,249.02956,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82874,81.6197,10.54478,11.75574,171.77828,8.17974,0.10956,65.35958,0.3953,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.31,3511.082 -2179,2.32856,0,249.06818,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82882,81.6265,10.54564,11.75672,171.79264,8.18042,0.10958,65.36504,0.3953,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.324,3511.082 -2180,2.3018,0,249.1068,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.8289,81.6333,10.5465,11.7577,171.807,8.1811,0.1096,65.3705,0.3953,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.338,3511.082 -2181,2.27802,0,249.14344,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82894,81.63978,10.54736,11.75862,171.82058,8.18178,0.1096,65.37568,0.3953,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.351,3511.082 -2182,2.25424,0,249.18008,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82898,81.64626,10.54822,11.75954,171.83416,8.18246,0.1096,65.38086,0.3953,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.365,3511.082 -2183,2.23046,0,249.21672,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82902,81.65274,10.54908,11.76046,171.84774,8.18314,0.1096,65.38604,0.3953,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.379,3511.082 -2184,2.20668,0,249.25336,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.82906,81.65922,10.54994,11.76138,171.86132,8.18382,0.1096,65.39122,0.3953,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.392,3511.082 -2185,2.1829,0,249.29,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0821,0.037,0.8291,81.6657,10.5508,11.7623,171.8749,8.1845,0.1096,65.3964,0.3953,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.406,3511.082 -2186,2.1617,0,249.32488,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08212,0.037,0.82918,81.67186,10.55156,11.7632,171.88788,8.18512,0.1096,65.40132,0.3953,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0.176,0,156.419,3511.082 -2187,2.1405,0,249.35976,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08214,0.037,0.82926,81.67802,10.55232,11.7641,171.90086,8.18574,0.1096,65.40624,0.3953,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.432,3511.082 -2188,2.1193,0,249.39464,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08216,0.037,0.82934,81.68418,10.55308,11.765,171.91384,8.18636,0.1096,65.41116,0.3953,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.446,3511.082 -2189,2.0981,0,249.42952,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08218,0.037,0.82942,81.69034,10.55384,11.7659,171.92682,8.18698,0.1096,65.41608,0.3953,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.459,3511.082 -2190,2.0769,0,249.4644,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8295,81.6965,10.5546,11.7668,171.9398,8.1876,0.1096,65.421,0.3953,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.472,3511.082 -2191,2.05792,0,249.49772,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82954,81.7024,10.55538,11.76764,171.9522,8.18818,0.1096,65.42574,0.3953,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.485,3511.082 -2192,2.03894,0,249.53104,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82958,81.7083,10.55616,11.76848,171.9646,8.18876,0.1096,65.43048,0.3953,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.498,3511.082 -2193,2.01996,0,249.56436,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82962,81.7142,10.55694,11.76932,171.977,8.18934,0.1096,65.43522,0.3953,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.511,3511.082 -2194,2.00098,0,249.59768,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82966,81.7201,10.55772,11.77016,171.9894,8.18992,0.1096,65.43996,0.3953,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.524,3511.082 -2195,1.982,0,249.631,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8297,81.726,10.5585,11.771,172.0018,8.1905,0.1096,65.4447,0.3953,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.537,3511.082 -2196,1.96498,0,249.66292,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82976,81.7316,10.55924,11.77184,172.01368,8.19108,0.1096,65.44922,0.3953,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.549,3511.082 -2197,1.94796,0,249.69484,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82982,81.7372,10.55998,11.77268,172.02556,8.19166,0.1096,65.45374,0.3953,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.562,3511.082 -2198,1.93094,0,249.72676,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82988,81.7428,10.56072,11.77352,172.03744,8.19224,0.1096,65.45826,0.3953,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0.176,0,156.575,3511.082 -2199,1.91392,0,249.75868,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.82994,81.7484,10.56146,11.77436,172.04932,8.19282,0.1096,65.46278,0.3953,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.587,3511.082 -2200,1.8969,0,249.7906,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83,81.754,10.5622,11.7752,172.0612,8.1934,0.1096,65.4673,0.3953,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.6,3511.082 -2201,1.88235,0,249.82068,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83005,81.75932,10.56289,11.77597,172.07236,8.19394,0.10961,65.47155,0.3953,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.612,3511.082 -2202,1.8678,0,249.85076,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8301,81.76464,10.56358,11.77674,172.08352,8.19448,0.10962,65.4758,0.3953,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.624,3511.082 -2203,1.85325,0,249.88084,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83015,81.76996,10.56427,11.77751,172.09468,8.19502,0.10963,65.48005,0.3953,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.637,3511.082 -2204,1.8387,0,249.91092,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8302,81.77528,10.56496,11.77828,172.10584,8.19556,0.10964,65.4843,0.3953,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.649,3511.082 -2205,1.82415,0,249.941,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83025,81.7806,10.56565,11.77905,172.117,8.1961,0.10965,65.48855,0.3953,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.661,3511.082 -2206,1.8096,0,249.97108,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8303,81.78592,10.56634,11.77982,172.12816,8.19664,0.10966,65.4928,0.3953,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.673,3511.082 -2207,1.79505,0,250.00116,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83035,81.79124,10.56703,11.78059,172.13932,8.19718,0.10967,65.49705,0.3953,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.685,3511.082 -2208,1.7805,0,250.03124,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8304,81.79656,10.56772,11.78136,172.15048,8.19772,0.10968,65.5013,0.3953,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.697,3511.082 -2209,1.76595,0,250.06132,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.83045,81.80188,10.56841,11.78213,172.16164,8.19826,0.10969,65.50555,0.3953,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.709,3511.082 -2210,1.7514,0,250.0914,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0822,0.037,0.8305,81.8072,10.5691,11.7829,172.1728,8.1988,0.1097,65.5098,0.3953,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.721,3511.082 -2211,1.73953,0,250.11931,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08222,0.037,0.83055,81.81212,10.56974,11.7836,172.18317,8.19928,0.1097,65.51374,0.3953,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.733,3511.082 -2212,1.72766,0,250.14722,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08224,0.037,0.8306,81.81704,10.57038,11.7843,172.19354,8.19976,0.1097,65.51768,0.3953,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.176,0,156.744,3511.082 -2213,1.71579,0,250.17513,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08226,0.037,0.83065,81.82196,10.57102,11.785,172.20391,8.20024,0.1097,65.52162,0.3953,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.756,3511.082 -2214,1.70392,0,250.20304,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08228,0.037,0.8307,81.82688,10.57166,11.7857,172.21428,8.20072,0.1097,65.52556,0.3953,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.768,3511.082 -2215,1.69205,0,250.23095,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0823,0.037,0.83075,81.8318,10.5723,11.7864,172.22465,8.2012,0.1097,65.5295,0.3953,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.779,3511.082 -2216,1.68018,0,250.25886,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08232,0.037,0.8308,81.83672,10.57294,11.7871,172.23502,8.20168,0.1097,65.53344,0.3953,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.791,3511.082 -2217,1.66831,0,250.28677,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08234,0.037,0.83085,81.84164,10.57358,11.7878,172.24539,8.20216,0.1097,65.53738,0.3953,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.802,3511.082 -2218,1.65644,0,250.31468,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08236,0.037,0.8309,81.84656,10.57422,11.7885,172.25576,8.20264,0.1097,65.54132,0.3953,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.813,3511.082 -2219,1.64457,0,250.34259,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08238,0.037,0.83095,81.85148,10.57486,11.7892,172.26613,8.20312,0.1097,65.54526,0.3953,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.825,3511.082 -2220,1.6327,0,250.3705,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.831,81.8564,10.5755,11.7899,172.2765,8.2036,0.1097,65.5492,0.3953,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.836,3511.082 -2221,1.62294,0,250.3966,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83106,81.86101,10.57608,11.79056,172.2862,8.20406,0.10971,65.55289,0.3953,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.847,3511.082 -2222,1.61318,0,250.4227,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83112,81.86562,10.57666,11.79122,172.2959,8.20452,0.10972,65.55658,0.3953,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.858,3511.082 -2223,1.60342,0,250.4488,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83118,81.87023,10.57724,11.79188,172.3056,8.20498,0.10973,65.56027,0.3953,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.869,3511.082 -2224,1.59366,0,250.4749,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83124,81.87484,10.57782,11.79254,172.3153,8.20544,0.10974,65.56396,0.3953,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.88,3511.082 -2225,1.5839,0,250.501,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.8313,81.87945,10.5784,11.7932,172.325,8.2059,0.10975,65.56765,0.3953,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.891,3511.082 -2226,1.57414,0,250.5271,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83136,81.88406,10.57898,11.79386,172.3347,8.20636,0.10976,65.57134,0.3953,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.902,3511.082 -2227,1.56438,0,250.5532,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83142,81.88867,10.57956,11.79452,172.3444,8.20682,0.10977,65.57503,0.3953,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.913,3511.082 -2228,1.55462,0,250.5793,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83148,81.89328,10.58014,11.79518,172.3541,8.20728,0.10978,65.57872,0.3953,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.924,3511.082 -2229,1.54486,0,250.6054,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83154,81.89789,10.58072,11.79584,172.3638,8.20774,0.10979,65.58241,0.3953,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.935,3511.082 -2230,1.5351,0,250.6315,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.8316,81.9025,10.5813,11.7965,172.3735,8.2082,0.1098,65.5861,0.3953,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.945,3511.082 -2231,1.52697,0,250.65601,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83164,81.90685,10.58188,11.79712,172.38261,8.20864,0.10981,65.58957,0.3953,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.956,3511.082 -2232,1.51884,0,250.68052,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83168,81.9112,10.58246,11.79774,172.39172,8.20908,0.10982,65.59304,0.3953,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0.177,0,156.967,3511.082 -2233,1.51071,0,250.70503,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83172,81.91555,10.58304,11.79836,172.40083,8.20952,0.10983,65.59651,0.3953,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.977,3511.082 -2234,1.50258,0,250.72954,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83176,81.9199,10.58362,11.79898,172.40994,8.20996,0.10984,65.59998,0.3953,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.988,3511.082 -2235,1.49445,0,250.75405,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.8318,81.92425,10.5842,11.7996,172.41905,8.2104,0.10985,65.60345,0.3953,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,156.998,3511.082 -2236,1.48632,0,250.77856,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83184,81.9286,10.58478,11.80022,172.42816,8.21084,0.10986,65.60692,0.3953,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.008,3511.082 -2237,1.47819,0,250.80307,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83188,81.93295,10.58536,11.80084,172.43727,8.21128,0.10987,65.61039,0.3953,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.019,3511.082 -2238,1.47006,0,250.82758,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83192,81.9373,10.58594,11.80146,172.44638,8.21172,0.10988,65.61386,0.3953,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.029,3511.082 -2239,1.46193,0,250.85209,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.83196,81.94165,10.58652,11.80208,172.45549,8.21216,0.10989,65.61733,0.3953,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.039,3511.082 -2240,1.4538,0,250.8766,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0824,0.037,0.832,81.946,10.5871,11.8027,172.4646,8.2126,0.1099,65.6208,0.3953,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.05,3511.082 -2241,1.44702,0,250.89972,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08242,0.037,0.83203,81.95006,10.58761,11.80329,172.4732,8.21301,0.10991,65.62406,0.3953,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.06,3511.082 -2242,1.44024,0,250.92284,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08244,0.037,0.83206,81.95412,10.58812,11.80388,172.4818,8.21342,0.10992,65.62732,0.3953,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.07,3511.082 -2243,1.43346,0,250.94596,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08246,0.037,0.83209,81.95818,10.58863,11.80447,172.4904,8.21383,0.10993,65.63058,0.3953,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.08,3511.082 -2244,1.42668,0,250.96908,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08248,0.037,0.83212,81.96224,10.58914,11.80506,172.499,8.21424,0.10994,65.63384,0.3953,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.09,3511.082 -2245,1.4199,0,250.9922,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0825,0.037,0.83215,81.9663,10.58965,11.80565,172.5076,8.21465,0.10995,65.6371,0.3953,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.1,3511.082 -2246,1.41312,0,251.01532,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08252,0.037,0.83218,81.97036,10.59016,11.80624,172.5162,8.21506,0.10996,65.64036,0.3953,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.11,3511.082 -2247,1.40634,0,251.03844,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08254,0.037,0.83221,81.97442,10.59067,11.80683,172.5248,8.21547,0.10997,65.64362,0.3953,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.12,3511.082 -2248,1.39956,0,251.06156,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08256,0.037,0.83224,81.97848,10.59118,11.80742,172.5334,8.21588,0.10998,65.64688,0.3953,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.13,3511.082 -2249,1.39278,0,251.08468,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08258,0.037,0.83227,81.98254,10.59169,11.80801,172.542,8.21629,0.10999,65.65014,0.3953,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.139,3511.082 -2250,1.386,0,251.1078,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8323,81.9866,10.5922,11.8086,172.5506,8.2167,0.11,65.6534,0.3953,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.149,3511.082 -2251,1.380872,0,251.12888,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83234,81.99032,10.592676,11.809136,172.55843,8.217072,0.11,65.656376,0.3953,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.159,3511.082 -2252,1.375744,0,251.14995,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83238,81.99404,10.593152,11.809672,172.56626,8.217444,0.11,65.659352,0.3953,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.168,3511.082 -2253,1.370616,0,251.17103,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83242,81.99776,10.593628,11.810208,172.57408,8.217816,0.11,65.662328,0.3953,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.178,3511.082 -2254,1.365488,0,251.1921,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83246,82.00148,10.594104,11.810744,172.58191,8.218188,0.11,65.665304,0.3953,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.188,3511.082 -2255,1.36036,0,251.21318,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8325,82.0052,10.59458,11.81128,172.58974,8.21856,0.11,65.66828,0.3953,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.197,3511.082 -2256,1.355232,0,251.23426,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83254,82.00892,10.595056,11.811816,172.59757,8.218932,0.11,65.671256,0.3953,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.207,3511.082 -2257,1.350104,0,251.25533,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83258,82.01264,10.595532,11.812352,172.6054,8.219304,0.11,65.674232,0.3953,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0.177,0,157.216,3511.082 -2258,1.344976,0,251.27641,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83262,82.01636,10.596008,11.812888,172.61322,8.219676,0.11,65.677208,0.3953,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.226,3511.082 -2259,1.339848,0,251.29748,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83266,82.02008,10.596484,11.813424,172.62105,8.220048,0.11,65.680184,0.3953,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.235,3511.082 -2260,1.33472,0,251.31856,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8327,82.0238,10.59696,11.81396,172.62888,8.22042,0.11,65.68316,0.3953,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.244,3511.082 -2261,1.329592,0,251.33964,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83274,82.02752,10.597436,11.814496,172.63671,8.220792,0.11,65.686136,0.3953,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.253,3511.082 -2262,1.324464,0,251.36071,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83278,82.03124,10.597912,11.815032,172.64454,8.221164,0.11,65.689112,0.3953,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.263,3511.082 -2263,1.319336,0,251.38179,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83282,82.03496,10.598388,11.815568,172.65236,8.221536,0.11,65.692088,0.3953,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.272,3511.082 -2264,1.314208,0,251.40286,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83286,82.03868,10.598864,11.816104,172.66019,8.221908,0.11,65.695064,0.3953,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.281,3511.082 -2265,1.30908,0,251.42394,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8329,82.0424,10.59934,11.81664,172.66802,8.22228,0.11,65.69804,0.3953,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.29,3511.082 -2266,1.303952,0,251.44502,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83294,82.04612,10.599816,11.817176,172.67585,8.222652,0.11,65.701016,0.3953,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.299,3511.082 -2267,1.298824,0,251.46609,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83298,82.04984,10.600292,11.817712,172.68368,8.223024,0.11,65.703992,0.3953,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.308,3511.082 -2268,1.293696,0,251.48717,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83302,82.05356,10.600768,11.818248,172.6915,8.223396,0.11,65.706968,0.3953,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.317,3511.082 -2269,1.288568,0,251.50824,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83306,82.05728,10.601244,11.818784,172.69933,8.223768,0.11,65.709944,0.3953,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.326,3511.082 -2270,1.28344,0,251.52932,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8331,82.061,10.60172,11.81932,172.70716,8.22414,0.11,65.71292,0.3953,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.335,3511.082 -2271,1.278312,0,251.5504,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83314,82.06472,10.602196,11.819856,172.71499,8.224512,0.11,65.715896,0.3953,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.344,3511.082 -2272,1.273184,0,251.57147,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83318,82.06844,10.602672,11.820392,172.72282,8.224884,0.11,65.718872,0.3953,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.353,3511.082 -2273,1.268056,0,251.59255,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83322,82.07216,10.603148,11.820928,172.73064,8.225256,0.11,65.721848,0.3953,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.362,3511.082 -2274,1.262928,0,251.61362,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.83326,82.07588,10.603624,11.821464,172.73847,8.225628,0.11,65.724824,0.3953,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.371,3511.082 -2275,1.2578,0,251.6347,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0826,0.037,0.8333,82.0796,10.6041,11.822,172.7463,8.226,0.11,65.7278,0.3953,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.379,3511.082 -2276,1.254232,0,251.65339,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082604,0.037,0.833336,82.082904,10.604528,11.822476,172.75325,8.226328,0.110008,65.730448,0.3953,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.388,3511.082 -2277,1.250664,0,251.67208,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082608,0.037,0.833372,82.086208,10.604956,11.822952,172.7602,8.226656,0.110016,65.733096,0.3953,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.397,3511.082 -2278,1.247096,0,251.69076,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082612,0.037,0.833408,82.089512,10.605384,11.823428,172.76714,8.226984,0.110024,65.735744,0.3953,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.406,3511.082 -2279,1.243528,0,251.70945,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082616,0.037,0.833444,82.092816,10.605812,11.823904,172.77409,8.227312,0.110032,65.738392,0.3953,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.414,3511.082 -2280,1.23996,0,251.72814,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08262,0.037,0.83348,82.09612,10.60624,11.82438,172.78104,8.22764,0.11004,65.74104,0.3953,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.423,3511.082 -2281,1.236392,0,251.74683,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082624,0.037,0.833516,82.099424,10.606668,11.824856,172.78799,8.227968,0.110048,65.743688,0.3953,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.431,3511.082 -2282,1.232824,0,251.76552,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082628,0.037,0.833552,82.102728,10.607096,11.825332,172.79494,8.228296,0.110056,65.746336,0.3953,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.44,3511.082 -2283,1.229256,0,251.7842,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082632,0.037,0.833588,82.106032,10.607524,11.825808,172.80188,8.228624,0.110064,65.748984,0.3953,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.448,3511.082 -2284,1.225688,0,251.80289,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082636,0.037,0.833624,82.109336,10.607952,11.826284,172.80883,8.228952,0.110072,65.751632,0.3953,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.457,3511.082 -2285,1.22212,0,251.82158,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08264,0.037,0.83366,82.11264,10.60838,11.82676,172.81578,8.22928,0.11008,65.75428,0.3953,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.465,3511.082 -2286,1.218552,0,251.84027,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082644,0.037,0.833696,82.115944,10.608808,11.827236,172.82273,8.229608,0.110088,65.756928,0.3953,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.473,3511.082 -2287,1.214984,0,251.85896,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082648,0.037,0.833732,82.119248,10.609236,11.827712,172.82968,8.229936,0.110096,65.759576,0.3953,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.482,3511.082 -2288,1.211416,0,251.87764,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082652,0.037,0.833768,82.122552,10.609664,11.828188,172.83662,8.230264,0.110104,65.762224,0.3953,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.49,3511.082 -2289,1.207848,0,251.89633,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082656,0.037,0.833804,82.125856,10.610092,11.828664,172.84357,8.230592,0.110112,65.764872,0.3953,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.498,3511.082 -2290,1.20428,0,251.91502,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08266,0.037,0.83384,82.12916,10.61052,11.82914,172.85052,8.23092,0.11012,65.76752,0.3953,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0.178,0,157.507,3511.082 -2291,1.200712,0,251.93371,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082664,0.037,0.833876,82.132464,10.610948,11.829616,172.85747,8.231248,0.110128,65.770168,0.3953,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.515,3511.082 -2292,1.197144,0,251.9524,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082668,0.037,0.833912,82.135768,10.611376,11.830092,172.86442,8.231576,0.110136,65.772816,0.3953,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.523,3511.082 -2293,1.193576,0,251.97108,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082672,0.037,0.833948,82.139072,10.611804,11.830568,172.87136,8.231904,0.110144,65.775464,0.3953,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.531,3511.082 -2294,1.190008,0,251.98977,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082676,0.037,0.833984,82.142376,10.612232,11.831044,172.87831,8.232232,0.110152,65.778112,0.3953,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.539,3511.082 -2295,1.18644,0,252.00846,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08268,0.037,0.83402,82.14568,10.61266,11.83152,172.88526,8.23256,0.11016,65.78076,0.3953,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.547,3511.082 -2296,1.182872,0,252.02715,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082684,0.037,0.834056,82.148984,10.613088,11.831996,172.89221,8.232888,0.110168,65.783408,0.3953,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.555,3511.082 -2297,1.179304,0,252.04584,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082688,0.037,0.834092,82.152288,10.613516,11.832472,172.89916,8.233216,0.110176,65.786056,0.3953,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.564,3511.082 -2298,1.175736,0,252.06452,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082692,0.037,0.834128,82.155592,10.613944,11.832948,172.9061,8.233544,0.110184,65.788704,0.3953,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.572,3511.082 -2299,1.172168,0,252.08321,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082696,0.037,0.834164,82.158896,10.614372,11.833424,172.91305,8.233872,0.110192,65.791352,0.3953,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.579,3511.082 -2300,1.1686,0,252.1019,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0827,0.037,0.8342,82.1622,10.6148,11.8339,172.92,8.2342,0.1102,65.794,0.3953,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.587,3511.082 -2301,1.165964,0,252.1187,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082704,0.037,0.834228,82.165164,10.615184,11.834324,172.92624,8.2345,0.110204,65.796372,0.3953,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.595,3511.082 -2302,1.163328,0,252.1355,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082708,0.037,0.834256,82.168128,10.615568,11.834748,172.93248,8.2348,0.110208,65.798744,0.3953,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.603,3511.082 -2303,1.160692,0,252.1523,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082712,0.037,0.834284,82.171092,10.615952,11.835172,172.93872,8.2351,0.110212,65.801116,0.3953,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.611,3511.082 -2304,1.158056,0,252.1691,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082716,0.037,0.834312,82.174056,10.616336,11.835596,172.94496,8.2354,0.110216,65.803488,0.3953,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.619,3511.082 -2305,1.15542,0,252.1859,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08272,0.037,0.83434,82.17702,10.61672,11.83602,172.9512,8.2357,0.11022,65.80586,0.3953,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.627,3511.082 -2306,1.152784,0,252.2027,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082724,0.037,0.834368,82.179984,10.617104,11.836444,172.95744,8.236,0.110224,65.808232,0.3953,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.634,3511.082 -2307,1.150148,0,252.2195,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082728,0.037,0.834396,82.182948,10.617488,11.836868,172.96368,8.2363,0.110228,65.810604,0.3953,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.642,3511.082 -2308,1.147512,0,252.2363,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082732,0.037,0.834424,82.185912,10.617872,11.837292,172.96992,8.2366,0.110232,65.812976,0.3953,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.65,3511.082 -2309,1.144876,0,252.2531,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082736,0.037,0.834452,82.188876,10.618256,11.837716,172.97616,8.2369,0.110236,65.815348,0.3953,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0.178,0,157.658,3511.082 -2310,1.14224,0,252.2699,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08274,0.037,0.83448,82.19184,10.61864,11.83814,172.9824,8.2372,0.11024,65.81772,0.3953,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.665,3511.082 -2311,1.139604,0,252.2867,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082744,0.037,0.834508,82.194804,10.619024,11.838564,172.98864,8.2375,0.110244,65.820092,0.3953,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.673,3511.082 -2312,1.136968,0,252.3035,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082748,0.037,0.834536,82.197768,10.619408,11.838988,172.99488,8.2378,0.110248,65.822464,0.3953,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.68,3511.082 -2313,1.134332,0,252.3203,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082752,0.037,0.834564,82.200732,10.619792,11.839412,173.00112,8.2381,0.110252,65.824836,0.3953,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.688,3511.082 -2314,1.131696,0,252.3371,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082756,0.037,0.834592,82.203696,10.620176,11.839836,173.00736,8.2384,0.110256,65.827208,0.3953,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.178,0,157.696,3511.082 -2315,1.12906,0,252.3539,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08276,0.037,0.83462,82.20666,10.62056,11.84026,173.0136,8.2387,0.11026,65.82958,0.3953,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.703,3511.082 -2316,1.126424,0,252.3707,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082764,0.037,0.834648,82.209624,10.620944,11.840684,173.01984,8.239,0.110264,65.831952,0.3953,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.711,3511.082 -2317,1.123788,0,252.3875,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082768,0.037,0.834676,82.212588,10.621328,11.841108,173.02608,8.2393,0.110268,65.834324,0.3953,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.718,3511.082 -2318,1.121152,0,252.4043,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082772,0.037,0.834704,82.215552,10.621712,11.841532,173.03232,8.2396,0.110272,65.836696,0.3953,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.725,3511.082 -2319,1.118516,0,252.4211,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082776,0.037,0.834732,82.218516,10.622096,11.841956,173.03856,8.2399,0.110276,65.839068,0.3953,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.733,3511.082 -2320,1.11588,0,252.4379,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08278,0.037,0.83476,82.22148,10.62248,11.84238,173.0448,8.2402,0.11028,65.84144,0.3953,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.74,3511.082 -2321,1.113244,0,252.4547,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082784,0.037,0.834788,82.224444,10.622864,11.842804,173.05104,8.2405,0.110284,65.843812,0.3953,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.748,3511.082 -2322,1.110608,0,252.4715,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082788,0.037,0.834816,82.227408,10.623248,11.843228,173.05728,8.2408,0.110288,65.846184,0.3953,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.755,3511.082 -2323,1.107972,0,252.4883,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082792,0.037,0.834844,82.230372,10.623632,11.843652,173.06352,8.2411,0.110292,65.848556,0.3953,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.762,3511.082 -2324,1.105336,0,252.5051,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082796,0.037,0.834872,82.233336,10.624016,11.844076,173.06976,8.2414,0.110296,65.850928,0.3953,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.77,3511.082 -2325,1.1027,0,252.5219,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.8349,82.2363,10.6244,11.8445,173.076,8.2417,0.1103,65.8533,0.3953,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.777,3511.082 -2326,1.100632,0,252.53715,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.834924,82.238992,10.624748,11.844888,173.08167,8.241968,0.110304,65.85546,0.3953,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.784,3511.082 -2327,1.098564,0,252.5524,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.834948,82.241684,10.625096,11.845276,173.08734,8.242236,0.110308,65.85762,0.3953,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.791,3511.082 -2328,1.096496,0,252.56766,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.834972,82.244376,10.625444,11.845664,173.093,8.242504,0.110312,65.85978,0.3953,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.798,3511.082 -2329,1.094428,0,252.58291,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.834996,82.247068,10.625792,11.846052,173.09867,8.242772,0.110316,65.86194,0.3953,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.806,3511.082 -2330,1.09236,0,252.59816,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.83502,82.24976,10.62614,11.84644,173.10434,8.24304,0.11032,65.8641,0.3953,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.813,3511.082 -2331,1.090292,0,252.61341,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835044,82.252452,10.626488,11.846828,173.11001,8.243308,0.110324,65.86626,0.3953,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.82,3511.082 -2332,1.088224,0,252.62866,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835068,82.255144,10.626836,11.847216,173.11568,8.243576,0.110328,65.86842,0.3953,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.827,3511.082 -2333,1.086156,0,252.64392,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835092,82.257836,10.627184,11.847604,173.12134,8.243844,0.110332,65.87058,0.3953,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.834,3511.082 -2334,1.084088,0,252.65917,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835116,82.260528,10.627532,11.847992,173.12701,8.244112,0.110336,65.87274,0.3953,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.841,3511.082 -2335,1.08202,0,252.67442,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.83514,82.26322,10.62788,11.84838,173.13268,8.24438,0.11034,65.8749,0.3953,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.848,3511.082 -2336,1.079952,0,252.68967,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835164,82.265912,10.628228,11.848768,173.13835,8.244648,0.110344,65.87706,0.3953,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.855,3511.082 -2337,1.077884,0,252.70492,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835188,82.268604,10.628576,11.849156,173.14402,8.244916,0.110348,65.87922,0.3953,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.862,3511.082 -2338,1.075816,0,252.72018,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835212,82.271296,10.628924,11.849544,173.14968,8.245184,0.110352,65.88138,0.3953,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.869,3511.082 -2339,1.073748,0,252.73543,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835236,82.273988,10.629272,11.849932,173.15535,8.245452,0.110356,65.88354,0.3953,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.876,3511.082 -2340,1.07168,0,252.75068,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.83526,82.27668,10.62962,11.85032,173.16102,8.24572,0.11036,65.8857,0.3953,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.883,3511.082 -2341,1.069612,0,252.76593,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835284,82.279372,10.629968,11.850708,173.16669,8.245988,0.110364,65.88786,0.3953,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.89,3511.082 -2342,1.067544,0,252.78118,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835308,82.282064,10.630316,11.851096,173.17236,8.246256,0.110368,65.89002,0.3953,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.896,3511.082 -2343,1.065476,0,252.79644,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835332,82.284756,10.630664,11.851484,173.17802,8.246524,0.110372,65.89218,0.3953,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.903,3511.082 -2344,1.063408,0,252.81169,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835356,82.287448,10.631012,11.851872,173.18369,8.246792,0.110376,65.89434,0.3953,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.91,3511.082 -2345,1.06134,0,252.82694,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.83538,82.29014,10.63136,11.85226,173.18936,8.24706,0.11038,65.8965,0.3953,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.917,3511.082 -2346,1.059272,0,252.84219,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835404,82.292832,10.631708,11.852648,173.19503,8.247328,0.110384,65.89866,0.3953,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.924,3511.082 -2347,1.057204,0,252.85744,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835428,82.295524,10.632056,11.853036,173.2007,8.247596,0.110388,65.90082,0.3953,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.93,3511.082 -2348,1.055136,0,252.8727,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835452,82.298216,10.632404,11.853424,173.20636,8.247864,0.110392,65.90298,0.3953,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.937,3511.082 -2349,1.053068,0,252.88795,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.835476,82.300908,10.632752,11.853812,173.21203,8.248132,0.110396,65.90514,0.3953,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.944,3511.082 -2350,1.051,0,252.9032,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0828,0.037,0.8355,82.3036,10.6331,11.8542,173.2177,8.2484,0.1104,65.9073,0.3953,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.951,3511.082 -2351,1.049292,0,252.91716,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082804,0.037,0.835528,82.306068,10.633424,11.85456,173.22289,8.248644,0.110408,65.909276,0.3953,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.957,3511.082 -2352,1.047584,0,252.93113,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082808,0.037,0.835556,82.308536,10.633748,11.85492,173.22808,8.248888,0.110416,65.911252,0.3953,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.964,3511.082 -2353,1.045876,0,252.94509,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082812,0.037,0.835584,82.311004,10.634072,11.85528,173.23328,8.249132,0.110424,65.913228,0.3953,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.97,3511.082 -2354,1.044168,0,252.95906,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082816,0.037,0.835612,82.313472,10.634396,11.85564,173.23847,8.249376,0.110432,65.915204,0.3953,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.977,3511.082 -2355,1.04246,0,252.97302,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08282,0.037,0.83564,82.31594,10.63472,11.856,173.24366,8.24962,0.11044,65.91718,0.3953,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.984,3511.082 -2356,1.040752,0,252.98698,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082824,0.037,0.835668,82.318408,10.635044,11.85636,173.24885,8.249864,0.110448,65.919156,0.3953,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.99,3511.082 -2357,1.039044,0,253.00095,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082828,0.037,0.835696,82.320876,10.635368,11.85672,173.25404,8.250108,0.110456,65.921132,0.3953,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,157.997,3511.082 -2358,1.037336,0,253.01491,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082832,0.037,0.835724,82.323344,10.635692,11.85708,173.25924,8.250352,0.110464,65.923108,0.3953,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.003,3511.082 -2359,1.035628,0,253.02888,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082836,0.037,0.835752,82.325812,10.636016,11.85744,173.26443,8.250596,0.110472,65.925084,0.3953,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.01,3511.082 -2360,1.03392,0,253.04284,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08284,0.037,0.83578,82.32828,10.63634,11.8578,173.26962,8.25084,0.11048,65.92706,0.3953,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.016,3511.082 -2361,1.032212,0,253.0568,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082844,0.037,0.835808,82.330748,10.636664,11.85816,173.27481,8.251084,0.110488,65.929036,0.3953,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.023,3511.082 -2362,1.030504,0,253.07077,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082848,0.037,0.835836,82.333216,10.636988,11.85852,173.28,8.251328,0.110496,65.931012,0.3953,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.029,3511.082 -2363,1.028796,0,253.08473,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082852,0.037,0.835864,82.335684,10.637312,11.85888,173.2852,8.251572,0.110504,65.932988,0.3953,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.035,3511.082 -2364,1.027088,0,253.0987,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082856,0.037,0.835892,82.338152,10.637636,11.85924,173.29039,8.251816,0.110512,65.934964,0.3953,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.042,3511.082 -2365,1.02538,0,253.11266,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08286,0.037,0.83592,82.34062,10.63796,11.8596,173.29558,8.25206,0.11052,65.93694,0.3953,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0.179,0,158.048,3511.082 -2366,1.023672,0,253.12662,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082864,0.037,0.835948,82.343088,10.638284,11.85996,173.30077,8.252304,0.110528,65.938916,0.3953,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.055,3511.082 -2367,1.021964,0,253.14059,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082868,0.037,0.835976,82.345556,10.638608,11.86032,173.30596,8.252548,0.110536,65.940892,0.3953,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.061,3511.082 -2368,1.020256,0,253.15455,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082872,0.037,0.836004,82.348024,10.638932,11.86068,173.31116,8.252792,0.110544,65.942868,0.3953,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.067,3511.082 -2369,1.018548,0,253.16852,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082876,0.037,0.836032,82.350492,10.639256,11.86104,173.31635,8.253036,0.110552,65.944844,0.3953,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.073,3511.082 -2370,1.01684,0,253.18248,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08288,0.037,0.83606,82.35296,10.63958,11.8614,173.32154,8.25328,0.11056,65.94682,0.3953,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.08,3511.082 -2371,1.015132,0,253.19644,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082884,0.037,0.836088,82.355428,10.639904,11.86176,173.32673,8.253524,0.110568,65.948796,0.3953,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.086,3511.082 -2372,1.013424,0,253.21041,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082888,0.037,0.836116,82.357896,10.640228,11.86212,173.33192,8.253768,0.110576,65.950772,0.3953,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.092,3511.082 -2373,1.011716,0,253.22437,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082892,0.037,0.836144,82.360364,10.640552,11.86248,173.33712,8.254012,0.110584,65.952748,0.3953,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.098,3511.082 -2374,1.010008,0,253.23834,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082896,0.037,0.836172,82.362832,10.640876,11.86284,173.34231,8.254256,0.110592,65.954724,0.3953,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.105,3511.082 -2375,1.0083,0,253.2523,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0829,0.037,0.8362,82.3653,10.6412,11.8632,173.3475,8.2545,0.1106,65.9567,0.3953,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.111,3511.082 -2376,1.006816,0,253.26518,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082904,0.037,0.836224,82.36758,10.641492,11.863528,173.35229,8.254732,0.1106,65.95852,0.3953,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.117,3511.082 -2377,1.005332,0,253.27805,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082908,0.037,0.836248,82.36986,10.641784,11.863856,173.35708,8.254964,0.1106,65.96034,0.3953,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.123,3511.082 -2378,1.003848,0,253.29093,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082912,0.037,0.836272,82.37214,10.642076,11.864184,173.36186,8.255196,0.1106,65.96216,0.3953,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.129,3511.082 -2379,1.002364,0,253.3038,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082916,0.037,0.836296,82.37442,10.642368,11.864512,173.36665,8.255428,0.1106,65.96398,0.3953,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.135,3511.082 -2380,1.00088,0,253.31668,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08292,0.037,0.83632,82.3767,10.64266,11.86484,173.37144,8.25566,0.1106,65.9658,0.3953,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.141,3511.082 -2381,0.999396,0,253.32956,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082924,0.037,0.836344,82.37898,10.642952,11.865168,173.37623,8.255892,0.1106,65.96762,0.3953,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.148,3511.082 -2382,0.997912,0,253.34243,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082928,0.037,0.836368,82.38126,10.643244,11.865496,173.38102,8.256124,0.1106,65.96944,0.3953,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.154,3511.082 -2383,0.996428,0,253.35531,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082932,0.037,0.836392,82.38354,10.643536,11.865824,173.3858,8.256356,0.1106,65.97126,0.3953,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.16,3511.082 -2384,0.994944,0,253.36818,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082936,0.037,0.836416,82.38582,10.643828,11.866152,173.39059,8.256588,0.1106,65.97308,0.3953,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.166,3511.082 -2385,0.99346,0,253.38106,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08294,0.037,0.83644,82.3881,10.64412,11.86648,173.39538,8.25682,0.1106,65.9749,0.3953,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.179,0,158.172,3511.082 -2386,0.991976,0,253.39394,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082944,0.037,0.836464,82.39038,10.644412,11.866808,173.40017,8.257052,0.1106,65.97672,0.3953,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.178,3511.082 -2387,0.990492,0,253.40681,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082948,0.037,0.836488,82.39266,10.644704,11.867136,173.40496,8.257284,0.1106,65.97854,0.3953,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.184,3511.082 -2388,0.989008,0,253.41969,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082952,0.037,0.836512,82.39494,10.644996,11.867464,173.40974,8.257516,0.1106,65.98036,0.3953,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.19,3511.082 -2389,0.987524,0,253.43256,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082956,0.037,0.836536,82.39722,10.645288,11.867792,173.41453,8.257748,0.1106,65.98218,0.3953,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.195,3511.082 -2390,0.98604,0,253.44544,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08296,0.037,0.83656,82.3995,10.64558,11.86812,173.41932,8.25798,0.1106,65.984,0.3953,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.201,3511.082 -2391,0.984556,0,253.45832,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082964,0.037,0.836584,82.40178,10.645872,11.868448,173.42411,8.258212,0.1106,65.98582,0.3953,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.207,3511.082 -2392,0.983072,0,253.47119,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082968,0.037,0.836608,82.40406,10.646164,11.868776,173.4289,8.258444,0.1106,65.98764,0.3953,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.213,3511.082 -2393,0.981588,0,253.48407,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082972,0.037,0.836632,82.40634,10.646456,11.869104,173.43368,8.258676,0.1106,65.98946,0.3953,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.219,3511.082 -2394,0.980104,0,253.49694,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082976,0.037,0.836656,82.40862,10.646748,11.869432,173.43847,8.258908,0.1106,65.99128,0.3953,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.225,3511.082 -2395,0.97862,0,253.50982,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08298,0.037,0.83668,82.4109,10.64704,11.86976,173.44326,8.25914,0.1106,65.9931,0.3953,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.231,3511.082 -2396,0.977136,0,253.5227,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082984,0.037,0.836704,82.41318,10.647332,11.870088,173.44805,8.259372,0.1106,65.99492,0.3953,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.237,3511.082 -2397,0.975652,0,253.53557,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082988,0.037,0.836728,82.41546,10.647624,11.870416,173.45284,8.259604,0.1106,65.99674,0.3953,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.242,3511.082 -2398,0.974168,0,253.54845,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082992,0.037,0.836752,82.41774,10.647916,11.870744,173.45762,8.259836,0.1106,65.99856,0.3953,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.248,3511.082 -2399,0.972684,0,253.56132,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.082996,0.037,0.836776,82.42002,10.648208,11.871072,173.46241,8.260068,0.1106,66.00038,0.3953,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.254,3511.082 -2400,0.9712,0,253.5742,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.8368,82.4223,10.6485,11.8714,173.4672,8.2603,0.1106,66.0022,0.3953,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.26,3511.082 -2401,0.969888,0,253.58614,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836828,82.4244,10.648772,11.871708,173.47163,8.260512,0.1106,66.003884,0.3953,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.265,3511.082 -2402,0.968576,0,253.59809,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836856,82.4265,10.649044,11.872016,173.47606,8.260724,0.1106,66.005568,0.3953,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.271,3511.082 -2403,0.967264,0,253.61003,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836884,82.4286,10.649316,11.872324,173.4805,8.260936,0.1106,66.007252,0.3953,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.277,3511.082 -2404,0.965952,0,253.62198,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836912,82.4307,10.649588,11.872632,173.48493,8.261148,0.1106,66.008936,0.3953,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.282,3511.082 -2405,0.96464,0,253.63392,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.83694,82.4328,10.64986,11.87294,173.48936,8.26136,0.1106,66.01062,0.3953,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.288,3511.082 -2406,0.963328,0,253.64586,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836968,82.4349,10.650132,11.873248,173.49379,8.261572,0.1106,66.012304,0.3953,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.294,3511.082 -2407,0.962016,0,253.65781,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.836996,82.437,10.650404,11.873556,173.49822,8.261784,0.1106,66.013988,0.3953,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.299,3511.082 -2408,0.960704,0,253.66975,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837024,82.4391,10.650676,11.873864,173.50266,8.261996,0.1106,66.015672,0.3953,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.305,3511.082 -2409,0.959392,0,253.6817,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837052,82.4412,10.650948,11.874172,173.50709,8.262208,0.1106,66.017356,0.3953,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.311,3511.082 -2410,0.95808,0,253.69364,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.83708,82.4433,10.65122,11.87448,173.51152,8.26242,0.1106,66.01904,0.3953,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.316,3511.082 -2411,0.956768,0,253.70558,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837108,82.4454,10.651492,11.874788,173.51595,8.262632,0.1106,66.020724,0.3953,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.322,3511.082 -2412,0.955456,0,253.71753,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837136,82.4475,10.651764,11.875096,173.52038,8.262844,0.1106,66.022408,0.3953,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.327,3511.082 -2413,0.954144,0,253.72947,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837164,82.4496,10.652036,11.875404,173.52482,8.263056,0.1106,66.024092,0.3953,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.333,3511.082 -2414,0.952832,0,253.74142,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837192,82.4517,10.652308,11.875712,173.52925,8.263268,0.1106,66.025776,0.3953,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.338,3511.082 -2415,0.95152,0,253.75336,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.83722,82.4538,10.65258,11.87602,173.53368,8.26348,0.1106,66.02746,0.3953,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.344,3511.082 -2416,0.950208,0,253.7653,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837248,82.4559,10.652852,11.876328,173.53811,8.263692,0.1106,66.029144,0.3953,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.349,3511.082 -2417,0.948896,0,253.77725,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837276,82.458,10.653124,11.876636,173.54254,8.263904,0.1106,66.030828,0.3953,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.355,3511.082 -2418,0.947584,0,253.78919,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837304,82.4601,10.653396,11.876944,173.54698,8.264116,0.1106,66.032512,0.3953,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.36,3511.082 -2419,0.946272,0,253.80114,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837332,82.4622,10.653668,11.877252,173.55141,8.264328,0.1106,66.034196,0.3953,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.366,3511.082 -2420,0.94496,0,253.81308,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.83736,82.4643,10.65394,11.87756,173.55584,8.26454,0.1106,66.03588,0.3953,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.371,3511.082 -2421,0.943648,0,253.82502,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837388,82.4664,10.654212,11.877868,173.56027,8.264752,0.1106,66.037564,0.3953,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.377,3511.082 -2422,0.942336,0,253.83697,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837416,82.4685,10.654484,11.878176,173.5647,8.264964,0.1106,66.039248,0.3953,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.382,3511.082 -2423,0.941024,0,253.84891,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837444,82.4706,10.654756,11.878484,173.56914,8.265176,0.1106,66.040932,0.3953,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.388,3511.082 -2424,0.939712,0,253.86086,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.837472,82.4727,10.655028,11.878792,173.57357,8.265388,0.1106,66.042616,0.3953,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.393,3511.082 -2425,0.9384,0,253.8728,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083,0.037,0.8375,82.4748,10.6553,11.8791,173.578,8.2656,0.1106,66.0443,0.3953,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.398,3511.082 -2426,0.937196,0,253.88393,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083004,0.037,0.83752,82.476768,10.655556,11.879376,173.58214,8.265796,0.110608,66.045876,0.3953,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.404,3511.082 -2427,0.935992,0,253.89506,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083008,0.037,0.83754,82.478736,10.655812,11.879652,173.58627,8.265992,0.110616,66.047452,0.3953,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.409,3511.082 -2428,0.934788,0,253.90618,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083012,0.037,0.83756,82.480704,10.656068,11.879928,173.59041,8.266188,0.110624,66.049028,0.3953,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.414,3511.082 -2429,0.933584,0,253.91731,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083016,0.037,0.83758,82.482672,10.656324,11.880204,173.59454,8.266384,0.110632,66.050604,0.3953,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.42,3511.082 -2430,0.93238,0,253.92844,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08302,0.037,0.8376,82.48464,10.65658,11.88048,173.59868,8.26658,0.11064,66.05218,0.3953,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.425,3511.082 -2431,0.931176,0,253.93957,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083024,0.037,0.83762,82.486608,10.656836,11.880756,173.60282,8.266776,0.110648,66.053756,0.3953,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.43,3511.082 -2432,0.929972,0,253.9507,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083028,0.037,0.83764,82.488576,10.657092,11.881032,173.60695,8.266972,0.110656,66.055332,0.3953,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.436,3511.082 -2433,0.928768,0,253.96182,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083032,0.037,0.83766,82.490544,10.657348,11.881308,173.61109,8.267168,0.110664,66.056908,0.3953,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.441,3511.082 -2434,0.927564,0,253.97295,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083036,0.037,0.83768,82.492512,10.657604,11.881584,173.61522,8.267364,0.110672,66.058484,0.3953,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.446,3511.082 -2435,0.92636,0,253.98408,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08304,0.037,0.8377,82.49448,10.65786,11.88186,173.61936,8.26756,0.11068,66.06006,0.3953,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.451,3511.082 -2436,0.925156,0,253.99521,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083044,0.037,0.83772,82.496448,10.658116,11.882136,173.6235,8.267756,0.110688,66.061636,0.3953,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.457,3511.082 -2437,0.923952,0,254.00634,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083048,0.037,0.83774,82.498416,10.658372,11.882412,173.62763,8.267952,0.110696,66.063212,0.3953,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.462,3511.082 -2438,0.922748,0,254.01746,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083052,0.037,0.83776,82.500384,10.658628,11.882688,173.63177,8.268148,0.110704,66.064788,0.3953,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.467,3511.082 -2439,0.921544,0,254.02859,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083056,0.037,0.83778,82.502352,10.658884,11.882964,173.6359,8.268344,0.110712,66.066364,0.3953,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.472,3511.082 -2440,0.92034,0,254.03972,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08306,0.037,0.8378,82.50432,10.65914,11.88324,173.64004,8.26854,0.11072,66.06794,0.3953,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.477,3511.082 -2441,0.919136,0,254.05085,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083064,0.037,0.83782,82.506288,10.659396,11.883516,173.64418,8.268736,0.110728,66.069516,0.3953,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.482,3511.082 -2442,0.917932,0,254.06198,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083068,0.037,0.83784,82.508256,10.659652,11.883792,173.64831,8.268932,0.110736,66.071092,0.3953,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.488,3511.082 -2443,0.916728,0,254.0731,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083072,0.037,0.83786,82.510224,10.659908,11.884068,173.65245,8.269128,0.110744,66.072668,0.3953,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.493,3511.082 -2444,0.915524,0,254.08423,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083076,0.037,0.83788,82.512192,10.660164,11.884344,173.65658,8.269324,0.110752,66.074244,0.3953,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.498,3511.082 -2445,0.91432,0,254.09536,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.08308,0.037,0.8379,82.51416,10.66042,11.88462,173.66072,8.26952,0.11076,66.07582,0.3953,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.503,3511.082 -2446,0.913116,0,254.10649,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083084,0.037,0.83792,82.516128,10.660676,11.884896,173.66486,8.269716,0.110768,66.077396,0.3953,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.508,3511.082 -2447,0.911912,0,254.11762,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083088,0.037,0.83794,82.518096,10.660932,11.885172,173.66899,8.269912,0.110776,66.078972,0.3953,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.513,3511.082 -2448,0.910708,0,254.12874,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083092,0.037,0.83796,82.520064,10.661188,11.885448,173.67313,8.270108,0.110784,66.080548,0.3953,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.518,3511.082 -2449,0.909504,0,254.13987,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.083096,0.037,0.83798,82.522032,10.661444,11.885724,173.67726,8.270304,0.110792,66.082124,0.3953,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.523,3511.082 -2450,0.9083,0,254.151,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838,82.524,10.6617,11.886,173.6814,8.2705,0.1108,66.0837,0.3953,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.528,3511.082 -2451,0.907176,0,254.16141,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838016,82.525844,10.66194,11.886264,173.68527,8.270684,0.1108,66.085172,0.3953,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.533,3511.082 -2452,0.906052,0,254.17182,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838032,82.527688,10.66218,11.886528,173.68914,8.270868,0.1108,66.086644,0.3953,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.538,3511.082 -2453,0.904928,0,254.18224,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838048,82.529532,10.66242,11.886792,173.69302,8.271052,0.1108,66.088116,0.3953,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.543,3511.082 -2454,0.903804,0,254.19265,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838064,82.531376,10.66266,11.887056,173.69689,8.271236,0.1108,66.089588,0.3953,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.548,3511.082 -2455,0.90268,0,254.20306,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83808,82.53322,10.6629,11.88732,173.70076,8.27142,0.1108,66.09106,0.3953,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.553,3511.082 -2456,0.901556,0,254.21347,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838096,82.535064,10.66314,11.887584,173.70463,8.271604,0.1108,66.092532,0.3953,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.558,3511.082 -2457,0.900432,0,254.22388,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838112,82.536908,10.66338,11.887848,173.7085,8.271788,0.1108,66.094004,0.3953,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.563,3511.082 -2458,0.899308,0,254.2343,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838128,82.538752,10.66362,11.888112,173.71238,8.271972,0.1108,66.095476,0.3953,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.568,3511.082 -2459,0.898184,0,254.24471,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838144,82.540596,10.66386,11.888376,173.71625,8.272156,0.1108,66.096948,0.3953,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.573,3511.082 -2460,0.89706,0,254.25512,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83816,82.54244,10.6641,11.88864,173.72012,8.27234,0.1108,66.09842,0.3953,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.578,3511.082 -2461,0.895936,0,254.26553,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838176,82.544284,10.66434,11.888904,173.72399,8.272524,0.1108,66.099892,0.3953,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.583,3511.082 -2462,0.894812,0,254.27594,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838192,82.546128,10.66458,11.889168,173.72786,8.272708,0.1108,66.101364,0.3953,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.588,3511.082 -2463,0.893688,0,254.28636,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838208,82.547972,10.66482,11.889432,173.73174,8.272892,0.1108,66.102836,0.3953,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0.18,0,158.593,3511.082 -2464,0.892564,0,254.29677,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838224,82.549816,10.66506,11.889696,173.73561,8.273076,0.1108,66.104308,0.3953,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.597,3511.082 -2465,0.89144,0,254.30718,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83824,82.55166,10.6653,11.88996,173.73948,8.27326,0.1108,66.10578,0.3953,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.602,3511.082 -2466,0.890316,0,254.31759,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838256,82.553504,10.66554,11.890224,173.74335,8.273444,0.1108,66.107252,0.3953,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.607,3511.082 -2467,0.889192,0,254.328,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838272,82.555348,10.66578,11.890488,173.74722,8.273628,0.1108,66.108724,0.3953,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.612,3511.082 -2468,0.888068,0,254.33842,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838288,82.557192,10.66602,11.890752,173.7511,8.273812,0.1108,66.110196,0.3953,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.617,3511.082 -2469,0.886944,0,254.34883,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838304,82.559036,10.66626,11.891016,173.75497,8.273996,0.1108,66.111668,0.3953,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.622,3511.082 -2470,0.88582,0,254.35924,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83832,82.56088,10.6665,11.89128,173.75884,8.27418,0.1108,66.11314,0.3953,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.626,3511.082 -2471,0.884696,0,254.36965,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838336,82.562724,10.66674,11.891544,173.76271,8.274364,0.1108,66.114612,0.3953,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.631,3511.082 -2472,0.883572,0,254.38006,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838352,82.564568,10.66698,11.891808,173.76658,8.274548,0.1108,66.116084,0.3953,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.636,3511.082 -2473,0.882448,0,254.39048,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838368,82.566412,10.66722,11.892072,173.77046,8.274732,0.1108,66.117556,0.3953,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.641,3511.082 -2474,0.881324,0,254.40089,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838384,82.568256,10.66746,11.892336,173.77433,8.274916,0.1108,66.119028,0.3953,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.645,3511.082 -2475,0.8802,0,254.4113,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.8384,82.5701,10.6677,11.8926,173.7782,8.2751,0.1108,66.1205,0.3953,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.18,0,158.65,3511.082 -2476,0.879152,0,254.42108,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838416,82.57182,10.667916,11.892848,173.78183,8.275276,0.1108,66.121884,0.3953,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.655,3511.082 -2477,0.878104,0,254.43087,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838432,82.57354,10.668132,11.893096,173.78546,8.275452,0.1108,66.123268,0.3953,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.66,3511.082 -2478,0.877056,0,254.44065,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838448,82.57526,10.668348,11.893344,173.7891,8.275628,0.1108,66.124652,0.3953,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.664,3511.082 -2479,0.876008,0,254.45044,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838464,82.57698,10.668564,11.893592,173.79273,8.275804,0.1108,66.126036,0.3953,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.669,3511.082 -2480,0.87496,0,254.46022,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83848,82.5787,10.66878,11.89384,173.79636,8.27598,0.1108,66.12742,0.3953,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.674,3511.082 -2481,0.873912,0,254.47,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838496,82.58042,10.668996,11.894088,173.79999,8.276156,0.1108,66.128804,0.3953,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.678,3511.082 -2482,0.872864,0,254.47979,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838512,82.58214,10.669212,11.894336,173.80362,8.276332,0.1108,66.130188,0.3953,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.683,3511.082 -2483,0.871816,0,254.48957,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838528,82.58386,10.669428,11.894584,173.80726,8.276508,0.1108,66.131572,0.3953,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.688,3511.082 -2484,0.870768,0,254.49936,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838544,82.58558,10.669644,11.894832,173.81089,8.276684,0.1108,66.132956,0.3953,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.692,3511.082 -2485,0.86972,0,254.50914,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83856,82.5873,10.66986,11.89508,173.81452,8.27686,0.1108,66.13434,0.3953,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.697,3511.082 -2486,0.868672,0,254.51892,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838576,82.58902,10.670076,11.895328,173.81815,8.277036,0.1108,66.135724,0.3953,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.702,3511.082 -2487,0.867624,0,254.52871,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838592,82.59074,10.670292,11.895576,173.82178,8.277212,0.1108,66.137108,0.3953,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.706,3511.082 -2488,0.866576,0,254.53849,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838608,82.59246,10.670508,11.895824,173.82542,8.277388,0.1108,66.138492,0.3953,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.711,3511.082 -2489,0.865528,0,254.54828,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838624,82.59418,10.670724,11.896072,173.82905,8.277564,0.1108,66.139876,0.3953,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.715,3511.082 -2490,0.86448,0,254.55806,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83864,82.5959,10.67094,11.89632,173.83268,8.27774,0.1108,66.14126,0.3953,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.72,3511.082 -2491,0.863432,0,254.56784,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838656,82.59762,10.671156,11.896568,173.83631,8.277916,0.1108,66.142644,0.3953,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.725,3511.082 -2492,0.862384,0,254.57763,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838672,82.59934,10.671372,11.896816,173.83994,8.278092,0.1108,66.144028,0.3953,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.729,3511.082 -2493,0.861336,0,254.58741,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838688,82.60106,10.671588,11.897064,173.84358,8.278268,0.1108,66.145412,0.3953,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0.181,0,158.734,3511.082 -2494,0.860288,0,254.5972,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838704,82.60278,10.671804,11.897312,173.84721,8.278444,0.1108,66.146796,0.3953,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0.181,0,158.738,3511.082 -2495,0.85924,0,254.60698,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.83872,82.6045,10.67202,11.89756,173.85084,8.27862,0.1108,66.14818,0.3953,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.743,3511.082 -2496,0.858192,0,254.61676,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838736,82.60622,10.672236,11.897808,173.85447,8.278796,0.1108,66.149564,0.3953,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.747,3511.082 -2497,0.857144,0,254.62655,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838752,82.60794,10.672452,11.898056,173.8581,8.278972,0.1108,66.150948,0.3953,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.752,3511.082 -2498,0.856096,0,254.63633,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838768,82.60966,10.672668,11.898304,173.86174,8.279148,0.1108,66.152332,0.3953,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.756,3511.082 -2499,0.855048,0,254.64612,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.838784,82.61138,10.672884,11.898552,173.86537,8.279324,0.1108,66.153716,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.761,3511.082 -2500,0.854,0,254.6559,9.0414,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,0.0831,0.037,0.8388,82.6131,10.6731,11.8988,173.869,8.2795,0.1108,66.1551,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0.181,0,158.761,3511.082 diff --git a/inst/shinyApp/www/input/emissions/RCP6_emissions.csv b/inst/shinyApp/www/input/emissions/RCP6_emissions.csv deleted file mode 100644 index d201d79..0000000 --- a/inst/shinyApp/www/input/emissions/RCP6_emissions.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP 6 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.081,1.1319,317.6624,7.7838,56.6405,56640.5,1057.4015,215.3798,38.6291,8.228,36.3475,42.2514,13.735,2.6399,0.4426,10.5529,12.3831,3.8802,12.649,121.0746,10.9216,5.6761,34.1569,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.1899,1.0683,319.4203,7.8838,56.5578,56557.8,1053.2589,215.2944,38.4618,8.2049,36.3034,42.6192,15.8599,2.6308,0.4491,10.2946,13.773,4.5245,11.5302,129.6223,9.3647,6.4623,41.4253,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.2971667,1.0046667,321.17513,7.9843333,56.4678,56467.8,1049.0791,215.20513,38.292033,8.1816667,36.259433,42.9869,17.976533,2.6214333,0.45493333,10.037133,15.1627,5.1676,10.393733,135.18193,7.7477,7.2483,48.693733,6.9909667,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.4044333,0.94103333,322.92997,8.0848667,56.3778,56377.8,1044.8993,215.11587,38.122267,8.1584333,36.215467,43.3546,20.093167,2.6120667,0.46076667,9.7796667,16.5524,5.8107,9.2572667,140.74157,6.1307,8.0343,55.962167,7.3806333,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.5117,0.8774,324.6848,8.1854,56.2878,56287.8,1040.7195,215.0266,37.9525,8.1352,36.1715,43.7223,22.2098,2.6027,0.4666,9.5222,17.9421,6.4538,8.1208,146.3012,4.5137,8.8203,63.2306,7.7703,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082 -2011,8.55557,0.83029,323.38128,8.15982,55.63774,55637.74,1039.1875,214.89234,37.71422,8.09546,36.16182,43.63166,22.27617,2.60843,0.43839,8.68522,22.21208,6.53096,8.19765,147.06015,4.61769,8.08983,63.4781,7.93581,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,0,1.445,0.156,167.857,3511.082 -2012,8.59944,0.78318,322.07776,8.13424,54.98768,54987.68,1037.6555,214.75808,37.47594,8.05572,36.15214,43.54102,22.34254,2.61416,0.41018,7.84824,26.48206,6.60812,8.2745,147.8191,4.72168,7.35936,63.7256,8.10132,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,0,1.373,0.139,167.857,3511.082 -2013,8.64331,0.73607,320.77424,8.10866,54.33762,54337.62,1036.1234,214.62382,37.23766,8.01598,36.14246,43.45038,22.40891,2.61989,0.38197,7.01126,30.75204,6.68528,8.35135,148.57805,4.82567,6.62889,63.9731,8.26683,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,0,1.304,0.124,167.857,3511.082 -2014,8.68718,0.68896,319.47072,8.08308,53.68756,53687.56,1034.5914,214.48956,36.99938,7.97624,36.13278,43.35974,22.47528,2.62562,0.35376,6.17428,35.02202,6.76244,8.4282,149.337,4.92966,5.89842,64.2206,8.43234,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,0,1.239,0.11,167.857,3511.082 -2015,8.73105,0.64185,318.1672,8.0575,53.0375,53037.5,1033.0594,214.3553,36.7611,7.9365,36.1231,43.2691,22.54165,2.63135,0.32555,5.3373,39.292,6.8396,8.50505,150.09595,5.03365,5.16795,64.4681,8.59785,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,0,1.177,0.098,155.925,3511.082 -2016,8.77492,0.59474,316.86368,8.03192,52.38744,52387.44,1031.5274,214.22104,36.52282,7.89676,36.11342,43.17846,22.60802,2.63708,0.29734,4.50032,43.56198,6.91676,8.5819,150.8549,5.13764,4.43748,64.7156,8.76336,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,0,1.118,0.087,155.925,3511.082 -2017,8.81879,0.54763,315.56016,8.00634,51.73738,51737.38,1029.9954,214.08678,36.28454,7.85702,36.10374,43.08782,22.67439,2.64281,0.26913,3.66334,47.83196,6.99392,8.65875,151.61385,5.24163,3.70701,64.9631,8.92887,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,0,1.062,0.078,155.925,3511.082 -2018,8.86266,0.50052,314.25664,7.98076,51.08732,51087.32,1028.4633,213.95252,36.04626,7.81728,36.09406,42.99718,22.74076,2.64854,0.24092,2.82636,52.10194,7.07108,8.7356,152.3728,5.34562,2.97654,65.2106,9.09438,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,0,1.009,0.069,155.925,3511.082 -2019,8.90653,0.45341,312.95312,7.95518,50.43726,50437.26,1026.9313,213.81826,35.80798,7.77754,36.08438,42.90654,22.80713,2.65427,0.21271,1.98938,56.37192,7.14824,8.81245,153.13175,5.44961,2.24607,65.4581,9.25989,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0,0.959,0.061,155.925,3511.082 -2020,8.9504,0.4063,311.6496,7.9296,49.7872,49787.2,1025.3993,213.684,35.5697,7.7378,36.0747,42.8159,22.8735,2.66,0.1845,1.1524,60.6419,7.2254,8.8893,153.8907,5.5536,1.5156,65.7056,9.4254,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0,0.911,0.055,155.925,3511.082 -2021,9.05487,0.30994,313.11564,8.01843,48.94131,48941.31,1025.732,213.95296,35.35512,7.71469,36.05673,43.17282,22.9386,2.66493,0.17723,1.1063,61.78125,7.31538,8.94218,154.41356,5.60414,1.43416,65.86791,9.44312,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0,0.865,0.049,155.925,3511.082 -2022,9.15934,0.21358,314.58168,8.10726,48.09542,48095.42,1026.0648,214.22192,35.14054,7.69158,36.03876,43.52974,23.0037,2.66986,0.16996,1.0602,62.9206,7.40536,8.99506,154.93642,5.65468,1.35272,66.03022,9.46084,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0,0.822,0.043,155.925,3511.082 -2023,9.26381,0.11722,316.04772,8.19609,47.24953,47249.53,1026.3975,214.49088,34.92596,7.66847,36.02079,43.88666,23.0688,2.67479,0.16269,1.0141,64.05995,7.49534,9.04794,155.45928,5.70522,1.27128,66.19253,9.47856,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0,0.781,0.039,155.925,3511.082 -2024,9.36828,0.02086,317.51376,8.28492,46.40364,46403.64,1026.7303,214.75984,34.71138,7.64536,36.00282,44.24358,23.1339,2.67972,0.15542,0.968,65.1993,7.58532,9.10082,155.98214,5.75576,1.18984,66.35484,9.49628,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0,0.742,0.034,155.925,3511.082 -2025,9.47275,-0.0755,318.9798,8.37375,45.55775,45557.75,1027.063,215.0288,34.4968,7.62225,35.98485,44.6005,23.199,2.68465,0.14815,0.9219,66.33865,7.6753,9.1537,156.505,5.8063,1.1084,66.51715,9.514,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0,0.705,0.031,155.925,3511.082 -2026,9.57722,-0.17186,320.44584,8.46258,44.71186,44711.86,1027.3957,215.29776,34.28222,7.59914,35.96688,44.95742,23.2641,2.68958,0.14088,0.8758,67.478,7.76528,9.20658,157.02786,5.85684,1.02696,66.67946,9.53172,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0,0.669,0.027,155.925,3511.082 -2027,9.68169,-0.26822,321.91188,8.55141,43.86597,43865.97,1027.7285,215.56672,34.06764,7.57603,35.94891,45.31434,23.3292,2.69451,0.13361,0.8297,68.61735,7.85526,9.25946,157.55072,5.90738,0.94552,66.84177,9.54944,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0,0.636,0.024,155.925,3511.082 -2028,9.78616,-0.36458,323.37792,8.64024,43.02008,43020.08,1028.0612,215.83568,33.85306,7.55292,35.93094,45.67126,23.3943,2.69944,0.12634,0.7836,69.7567,7.94524,9.31234,158.07358,5.95792,0.86408,67.00408,9.56716,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0,0.604,0.022,155.925,3511.082 -2029,9.89063,-0.46094,324.84396,8.72907,42.17419,42174.19,1028.394,216.10464,33.63848,7.52981,35.91297,46.02818,23.4594,2.70437,0.11907,0.7375,70.89605,8.03522,9.36522,158.59644,6.00846,0.78264,67.16639,9.58488,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0,0.574,0.019,155.925,3511.082 -2030,9.9951,-0.5573,326.31,8.8179,41.3283,41328.3,1028.7267,216.3736,33.4239,7.5067,35.895,46.3851,23.5245,2.7093,0.1118,0.6914,72.0354,8.1252,9.4181,159.1193,6.059,0.7012,67.3287,9.6026,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0,0.545,0.017,155.925,3511.082 -2031,10.15102,-0.57298,328.09167,8.90894,41.45623,41456.23,1030.971,217.00384,33.37117,7.4966,35.9507,46.75006,23.55538,2.70139,0.1119,0.66359,72.90303,8.24913,9.47689,159.57023,6.11699,0.70177,67.44688,9.61107,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0,0.518,0.015,155.925,3511.082 -2032,10.30694,-0.58866,329.87334,8.99998,41.58416,41584.16,1033.2153,217.63408,33.31844,7.4865,36.0064,47.11502,23.58626,2.69348,0.112,0.63578,73.77066,8.37306,9.53568,160.02116,6.17498,0.70234,67.56506,9.61954,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0,0.492,0.013,155.925,3511.082 -2033,10.46286,-0.60434,331.65501,9.09102,41.71209,41712.09,1035.4597,218.26432,33.26571,7.4764,36.0621,47.47998,23.61714,2.68557,0.1121,0.60797,74.63829,8.49699,9.59447,160.47209,6.23297,0.70291,67.68324,9.62801,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0,0.467,0.012,155.925,3511.082 -2034,10.61878,-0.62002,333.43668,9.18206,41.84002,41840.02,1037.704,218.89456,33.21298,7.4663,36.1178,47.84494,23.64802,2.67766,0.1122,0.58016,75.50592,8.62092,9.65326,160.92302,6.29096,0.70348,67.80142,9.63648,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0,0.444,0.011,155.925,3511.082 -2035,10.7747,-0.6357,335.21835,9.2731,41.96795,41967.95,1039.9483,219.5248,33.16025,7.4562,36.1735,48.2099,23.6789,2.66975,0.1123,0.55235,76.37355,8.74485,9.71205,161.37395,6.34895,0.70405,67.9196,9.64495,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0,0.422,0.01,155.925,3511.082 -2036,10.93062,-0.65138,337.00002,9.36414,42.09588,42095.88,1042.1926,220.15504,33.10752,7.4461,36.2292,48.57486,23.70978,2.66184,0.1124,0.52454,77.24118,8.86878,9.77084,161.82488,6.40694,0.70462,68.03778,9.65342,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0,0.401,0.008,155.925,3511.082 -2037,11.08654,-0.66706,338.78169,9.45518,42.22381,42223.81,1044.4369,220.78528,33.05479,7.436,36.2849,48.93982,23.74066,2.65393,0.1125,0.49673,78.10881,8.99271,9.82963,162.27581,6.46493,0.70519,68.15596,9.66189,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0,0.381,0.008,155.925,3511.082 -2038,11.24246,-0.68274,340.56336,9.54622,42.35174,42351.74,1046.6813,221.41552,33.00206,7.4259,36.3406,49.30478,23.77154,2.64602,0.1126,0.46892,78.97644,9.11664,9.88842,162.72674,6.52292,0.70576,68.27414,9.67036,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0,0.362,0.007,155.925,3511.082 -2039,11.39838,-0.69842,342.34503,9.63726,42.47967,42479.67,1048.9256,222.04576,32.94933,7.4158,36.3963,49.66974,23.80242,2.63811,0.1127,0.44111,79.84407,9.24057,9.94721,163.17767,6.58091,0.70633,68.39232,9.67883,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0,0.344,0.006,155.925,3511.082 -2040,11.5543,-0.7141,344.1267,9.7283,42.6076,42607.6,1051.1699,222.676,32.8966,7.4057,36.452,50.0347,23.8333,2.6302,0.1128,0.4133,80.7117,9.3645,10.006,163.6286,6.6389,0.7069,68.5105,9.6873,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0,0.326,0.005,155.925,3511.082 -2041,11.70325,-0.68907,345.22016,9.80918,42.0652,42065.2,1049.4931,222.44617,32.65711,7.37374,36.47072,50.3455,23.82125,2.6223,0.11238,0.3966,80.10127,9.53752,10.04389,163.97624,6.68694,0.65691,68.554,9.69652,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0,0.31,0.005,155.925,3511.082 -2042,11.8522,-0.66404,346.31362,9.89006,41.5228,41522.8,1047.8163,222.21634,32.41762,7.34178,36.48944,50.6563,23.8092,2.6144,0.11196,0.3799,79.49084,9.71054,10.08178,164.32388,6.73498,0.60692,68.5975,9.70574,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0,0.295,0.004,155.925,3511.082 -2043,12.00115,-0.63901,347.40708,9.97094,40.9804,40980.4,1046.1395,221.98651,32.17813,7.30982,36.50816,50.9671,23.79715,2.6065,0.11154,0.3632,78.88041,9.88356,10.11967,164.67152,6.78302,0.55693,68.641,9.71496,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0,0.28,0.004,155.925,3511.082 -2044,12.1501,-0.61398,348.50054,10.05182,40.438,40438,1044.4627,221.75668,31.93864,7.27786,36.52688,51.2779,23.7851,2.5986,0.11112,0.3465,78.26998,10.05658,10.15756,165.01916,6.83106,0.50694,68.6845,9.72418,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0,0.266,0.003,155.925,3511.082 -2045,12.29905,-0.58895,349.594,10.1327,39.8956,39895.6,1042.7859,221.52685,31.69915,7.2459,36.5456,51.5887,23.77305,2.5907,0.1107,0.3298,77.65955,10.2296,10.19545,165.3668,6.8791,0.45695,68.728,9.7334,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0,0.253,0.003,155.925,3511.082 -2046,12.448,-0.56392,350.68746,10.21358,39.3532,39353.2,1041.1092,221.29702,31.45966,7.21394,36.56432,51.8995,23.761,2.5828,0.11028,0.3131,77.04912,10.40262,10.23334,165.71444,6.92714,0.40696,68.7715,9.74262,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0,0.24,0.003,155.925,3511.082 -2047,12.59695,-0.53889,351.78092,10.29446,38.8108,38810.8,1039.4324,221.06719,31.22017,7.18198,36.58304,52.2103,23.74895,2.5749,0.10986,0.2964,76.43869,10.57564,10.27123,166.06208,6.97518,0.35697,68.815,9.75184,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0,0.228,0.002,155.925,3511.082 -2048,12.7459,-0.51386,352.87438,10.37534,38.2684,38268.4,1037.7556,220.83736,30.98068,7.15002,36.60176,52.5211,23.7369,2.567,0.10944,0.2797,75.82826,10.74866,10.30912,166.40972,7.02322,0.30698,68.8585,9.76106,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0,0.217,0.002,155.925,3511.082 -2049,12.89485,-0.48883,353.96784,10.45622,37.726,37726,1036.0788,220.60753,30.74119,7.11806,36.62048,52.8319,23.72485,2.5591,0.10902,0.263,75.21783,10.92168,10.34701,166.75736,7.07126,0.25699,68.902,9.77028,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0,0.206,0.002,155.925,3511.082 -2050,13.0438,-0.4638,355.0613,10.5371,37.1836,37183.6,1034.402,220.3777,30.5017,7.0861,36.6392,53.1427,23.7128,2.5512,0.1086,0.2463,74.6074,11.0947,10.3849,167.105,7.1193,0.207,68.9455,9.7795,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0,0.195,0.002,155.925,3511.082 -2051,13.22186,-0.44326,355.94998,10.6195,36.95717,36957.17,1030.5732,219.75002,30.28262,7.02414,36.54813,53.50663,23.71405,2.54411,0.10848,0.23543,75.55522,11.0965,10.44021,167.59135,7.18313,0.1948,69.0534,9.79437,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0,0.186,0.001,155.925,3511.082 -2052,13.39992,-0.42272,356.83866,10.7019,36.73074,36730.74,1026.7444,219.12234,30.06354,6.96218,36.45706,53.87056,23.7153,2.53702,0.10836,0.22456,76.50304,11.0983,10.49552,168.0777,7.24696,0.1826,69.1613,9.80924,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0,0.176,0.001,155.925,3511.082 -2053,13.57798,-0.40218,357.72734,10.7843,36.50431,36504.31,1022.9156,218.49466,29.84446,6.90022,36.36599,54.23449,23.71655,2.52993,0.10824,0.21369,77.45086,11.1001,10.55083,168.56405,7.31079,0.1704,69.2692,9.82411,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0,0.168,0.001,155.925,3511.082 -2054,13.75604,-0.38164,358.61602,10.8667,36.27788,36277.88,1019.0868,217.86698,29.62538,6.83826,36.27492,54.59842,23.7178,2.52284,0.10812,0.20282,78.39868,11.1019,10.60614,169.0504,7.37462,0.1582,69.3771,9.83898,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0,0.159,0.001,155.925,3511.082 -2055,13.9341,-0.3611,359.5047,10.9491,36.05145,36051.45,1015.258,217.2393,29.4063,6.7763,36.18385,54.96235,23.71905,2.51575,0.108,0.19195,79.3465,11.1037,10.66145,169.53675,7.43845,0.146,69.485,9.85385,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0,0.151,0.001,155.925,3511.082 -2056,14.11216,-0.34056,360.39338,11.0315,35.82502,35825.02,1011.4293,216.61162,29.18722,6.71434,36.09278,55.32628,23.7203,2.50866,0.10788,0.18108,80.29432,11.1055,10.71676,170.0231,7.50228,0.1338,69.5929,9.86872,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0,0.144,0.001,155.925,3511.082 -2057,14.29022,-0.32002,361.28206,11.1139,35.59859,35598.59,1007.6005,215.98394,28.96814,6.65238,36.00171,55.69021,23.72155,2.50157,0.10776,0.17021,81.24214,11.1073,10.77207,170.50945,7.56611,0.1216,69.7008,9.88359,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0,0.136,0.001,155.925,3511.082 -2058,14.46828,-0.29948,362.17074,11.1963,35.37216,35372.16,1003.7717,215.35626,28.74906,6.59042,35.91064,56.05414,23.7228,2.49448,0.10764,0.15934,82.18996,11.1091,10.82738,170.9958,7.62994,0.1094,69.8087,9.89846,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0,0.13,0.001,155.925,3511.082 -2059,14.64634,-0.27894,363.05942,11.2787,35.14573,35145.73,999.94289,214.72858,28.52998,6.52846,35.81957,56.41807,23.72405,2.48739,0.10752,0.14847,83.13778,11.1109,10.88269,171.48215,7.69377,0.0972,69.9166,9.91333,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0,0.123,0.001,155.925,3511.082 -2060,14.8244,-0.2584,363.9481,11.3611,34.9193,34919.3,996.1141,214.1009,28.3109,6.4665,35.7285,56.782,23.7253,2.4803,0.1074,0.1376,84.0856,11.1127,10.938,171.9685,7.7576,0.085,70.0245,9.9282,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0,0.117,0.001,155.925,3511.082 -2061,14.99256,-0.23549,363.5485,11.42811,33.65747,33657.47,990.16887,213.11653,27.85015,6.38933,35.58927,57.09359,23.69872,2.48426,0.10732,0.13115,85.06506,11.10611,10.98618,172.36387,7.81599,0.08313,70.08915,9.94365,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0,0.111,0,155.925,3511.082 -2062,15.16072,-0.21258,363.1489,11.49512,32.39564,32395.64,984.22364,212.13216,27.3894,6.31216,35.45004,57.40518,23.67214,2.48822,0.10724,0.1247,86.04452,11.09952,11.03436,172.75924,7.87438,0.08126,70.1538,9.9591,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0,0.106,0,155.925,3511.082 -2063,15.32888,-0.18967,362.7493,11.56213,31.13381,31133.81,978.27841,211.14779,26.92865,6.23499,35.31081,57.71677,23.64556,2.49218,0.10716,0.11825,87.02398,11.09293,11.08254,173.15461,7.93277,0.07939,70.21845,9.97455,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0,0.1,0,155.925,3511.082 -2064,15.49704,-0.16676,362.3497,11.62914,29.87198,29871.98,972.33318,210.16342,26.4679,6.15782,35.17158,58.02836,23.61898,2.49614,0.10708,0.1118,88.00344,11.08634,11.13072,173.54998,7.99116,0.07752,70.2831,9.99,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0,0.095,0,155.925,3511.082 -2065,15.6652,-0.14385,361.9501,11.69615,28.61015,28610.15,966.38795,209.17905,26.00715,6.08065,35.03235,58.33995,23.5924,2.5001,0.107,0.10535,88.9829,11.07975,11.1789,173.94535,8.04955,0.07565,70.34775,10.00545,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0,0.091,0,155.925,3511.082 -2066,15.83336,-0.12094,361.5505,11.76316,27.34832,27348.32,960.44272,208.19468,25.5464,6.00348,34.89312,58.65154,23.56582,2.50406,0.10692,0.0989,89.96236,11.07316,11.22708,174.34072,8.10794,0.07378,70.4124,10.0209,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0,0.086,0,155.925,3511.082 -2067,16.00152,-0.09803,361.1509,11.83017,26.08649,26086.49,954.49749,207.21031,25.08565,5.92631,34.75389,58.96313,23.53924,2.50802,0.10684,0.09245,90.94182,11.06657,11.27526,174.73609,8.16633,0.07191,70.47705,10.03635,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0,0.082,0,155.925,3511.082 -2068,16.16968,-0.07512,360.7513,11.89718,24.82466,24824.66,948.55226,206.22594,24.6249,5.84914,34.61466,59.27472,23.51266,2.51198,0.10676,0.086,91.92128,11.05998,11.32344,175.13146,8.22472,0.07004,70.5417,10.0518,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0,0.078,0,155.925,3511.082 -2069,16.33784,-0.05221,360.3517,11.96419,23.56283,23562.83,942.60703,205.24157,24.16415,5.77197,34.47543,59.58631,23.48608,2.51594,0.10668,0.07955,92.90074,11.05339,11.37162,175.52683,8.28311,0.06817,70.60635,10.06725,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0,0.074,0,155.925,3511.082 -2070,16.506,-0.0293,359.9521,12.0312,22.301,22301,936.6618,204.2572,23.7034,5.6948,34.3362,59.8979,23.4595,2.5199,0.1066,0.0731,93.8802,11.0468,11.4198,175.9222,8.3415,0.0663,70.671,10.0827,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0,0.07,0,155.925,3511.082 -2071,16.58346,-0.00196,357.94994,12.06433,21.57132,21571.32,930.29864,203.01075,23.32501,5.63556,34.23657,59.99146,23.40702,2.5018,0.10626,0.06951,94.1193,11.03777,11.45168,176.03719,8.38413,0.06477,70.60634,10.07405,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0,0.067,0,155.925,3511.082 -2072,16.66092,0.02538,355.94778,12.09746,20.84164,20841.64,923.93548,201.7643,22.94662,5.57632,34.13694,60.08502,23.35454,2.4837,0.10592,0.06592,94.3584,11.02874,11.48356,176.15218,8.42676,0.06324,70.54168,10.0654,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0,0.063,0,155.925,3511.082 -2073,16.73838,0.05272,353.94562,12.13059,20.11196,20111.96,917.57232,200.51785,22.56823,5.51708,34.03731,60.17858,23.30206,2.4656,0.10558,0.06233,94.5975,11.01971,11.51544,176.26717,8.46939,0.06171,70.47702,10.05675,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0,0.06,0,155.925,3511.082 -2074,16.81584,0.08006,351.94346,12.16372,19.38228,19382.28,911.20916,199.2714,22.18984,5.45784,33.93768,60.27214,23.24958,2.4475,0.10524,0.05874,94.8366,11.01068,11.54732,176.38216,8.51202,0.06018,70.41236,10.0481,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0,0.057,0,155.925,3511.082 -2075,16.8933,0.1074,349.9413,12.19685,18.6526,18652.6,904.846,198.02495,21.81145,5.3986,33.83805,60.3657,23.1971,2.4294,0.1049,0.05515,95.0757,11.00165,11.5792,176.49715,8.55465,0.05865,70.3477,10.03945,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0,0.054,0,155.925,3511.082 -2076,16.97076,0.13474,347.93914,12.22998,17.92292,17922.92,898.48284,196.7785,21.43306,5.33936,33.73842,60.45926,23.14462,2.4113,0.10456,0.05156,95.3148,10.99262,11.61108,176.61214,8.59728,0.05712,70.28304,10.0308,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0,0.052,0,155.925,3511.082 -2077,17.04822,0.16208,345.93698,12.26311,17.19324,17193.24,892.11968,195.53205,21.05467,5.28012,33.63879,60.55282,23.09214,2.3932,0.10422,0.04797,95.5539,10.98359,11.64296,176.72713,8.63991,0.05559,70.21838,10.02215,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0,0.049,0,155.925,3511.082 -2078,17.12568,0.18942,343.93482,12.29624,16.46356,16463.56,885.75652,194.2856,20.67628,5.22088,33.53916,60.64638,23.03966,2.3751,0.10388,0.04438,95.793,10.97456,11.67484,176.84212,8.68254,0.05406,70.15372,10.0135,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0,0.046,0,155.925,3511.082 -2079,17.20314,0.21676,341.93266,12.32937,15.73388,15733.88,879.39336,193.03915,20.29789,5.16164,33.43953,60.73994,22.98718,2.357,0.10354,0.04079,96.0321,10.96553,11.70672,176.95711,8.72517,0.05253,70.08906,10.00485,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0,0.044,0,155.925,3511.082 -2080,17.2806,0.2441,339.9305,12.3625,15.0042,15004.2,873.0302,191.7927,19.9195,5.1024,33.3399,60.8335,22.9347,2.3389,0.1032,0.0372,96.2712,10.9565,11.7386,177.0721,8.7678,0.051,70.0244,9.9962,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0,0.042,0,155.925,3511.082 -2081,16.98385,0.24394,332.93877,12.36222,14.76252,14762.52,869.00559,190.80261,19.72493,5.0587,33.27324,60.99709,22.83527,2.33197,0.1026,0.03348,95.76444,10.9361,11.74268,176.82146,8.79093,0.04968,69.79775,9.98408,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0,0.04,0,155.925,3511.082 -2082,16.6871,0.24378,325.94704,12.36194,14.52084,14520.84,864.98098,189.81252,19.53036,5.015,33.20658,61.16068,22.73584,2.32504,0.102,0.02976,95.25768,10.9157,11.74676,176.57082,8.81406,0.04836,69.5711,9.97196,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0,0.038,0,155.925,3511.082 -2083,16.39035,0.24362,318.95531,12.36166,14.27916,14279.16,860.95637,188.82243,19.33579,4.9713,33.13992,61.32427,22.63641,2.31811,0.1014,0.02604,94.75092,10.8953,11.75084,176.32018,8.83719,0.04704,69.34445,9.95984,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0,0.036,0,155.925,3511.082 -2084,16.0936,0.24346,311.96358,12.36138,14.03748,14037.48,856.93176,187.83234,19.14122,4.9276,33.07326,61.48786,22.53698,2.31118,0.1008,0.02232,94.24416,10.8749,11.75492,176.06954,8.86032,0.04572,69.1178,9.94772,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0,0.034,0,155.925,3511.082 -2085,15.79685,0.2433,304.97185,12.3611,13.7958,13795.8,852.90715,186.84225,18.94665,4.8839,33.0066,61.65145,22.43755,2.30425,0.1002,0.0186,93.7374,10.8545,11.759,175.8189,8.88345,0.0444,68.89115,9.9356,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0,0.032,0,155.925,3511.082 -2086,15.5001,0.24314,297.98012,12.36082,13.55412,13554.12,848.88254,185.85216,18.75208,4.8402,32.93994,61.81504,22.33812,2.29732,0.0996,0.01488,93.23064,10.8341,11.76308,175.56826,8.90658,0.04308,68.6645,9.92348,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0,0.031,0,155.925,3511.082 -2087,15.20335,0.24298,290.98839,12.36054,13.31244,13312.44,844.85793,184.86207,18.55751,4.7965,32.87328,61.97863,22.23869,2.29039,0.099,0.01116,92.72388,10.8137,11.76716,175.31762,8.92971,0.04176,68.43785,9.91136,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0,0.029,0,155.925,3511.082 -2088,14.9066,0.24282,283.99666,12.36026,13.07076,13070.76,840.83332,183.87198,18.36294,4.7528,32.80662,62.14222,22.13926,2.28346,0.0984,0.00744,92.21712,10.7933,11.77124,175.06698,8.95284,0.04044,68.2112,9.89924,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0,0.028,0,155.925,3511.082 -2089,14.60985,0.24266,277.00493,12.35998,12.82908,12829.08,836.80871,182.88189,18.16837,4.7091,32.73996,62.30581,22.03983,2.27653,0.0978,0.00372,91.71036,10.7729,11.77532,174.81634,8.97597,0.03912,67.98455,9.88712,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0,0.026,0,155.925,3511.082 -2090,14.3131,0.2425,270.0132,12.3597,12.5874,12587.4,832.7841,181.8918,17.9738,4.6654,32.6733,62.4694,21.9404,2.2696,0.0972,0,91.2036,10.7525,11.7794,174.5657,8.9991,0.0378,67.7579,9.875,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0,0.025,0,155.925,3511.082 -2091,14.25712,0.23639,267.60942,12.35073,12.37253,12372.53,828.72826,180.91739,17.78501,4.63501,32.62249,62.38664,21.82626,2.25281,0.09635,0,90.20593,10.7178,11.77139,174.15911,9.00912,0.03676,67.48827,9.83722,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0,0.024,0,155.925,3511.082 -2092,14.20114,0.23028,265.20564,12.34176,12.15766,12157.66,824.67242,179.94298,17.59622,4.60462,32.57168,62.30388,21.71212,2.23602,0.0955,0,89.20826,10.6831,11.76338,173.75252,9.01914,0.03572,67.21864,9.79944,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0,0.023,0,155.925,3511.082 -2093,14.14516,0.22417,262.80186,12.33279,11.94279,11942.79,820.61658,178.96857,17.40743,4.57423,32.52087,62.22112,21.59798,2.21923,0.09465,0,88.21059,10.6484,11.75537,173.34593,9.02916,0.03468,66.94901,9.76166,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0,0.022,0,155.925,3511.082 -2094,14.08918,0.21806,260.39808,12.32382,11.72792,11727.92,816.56074,177.99416,17.21864,4.54384,32.47006,62.13836,21.48384,2.20244,0.0938,0,87.21292,10.6137,11.74736,172.93934,9.03918,0.03364,66.67938,9.72388,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0,0.02,0,155.925,3511.082 -2095,14.0332,0.21195,257.9943,12.31485,11.51305,11513.05,812.5049,177.01975,17.02985,4.51345,32.41925,62.0556,21.3697,2.18565,0.09295,0,86.21525,10.579,11.73935,172.53275,9.0492,0.0326,66.40975,9.6861,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0,0.019,0,155.925,3511.082 -2096,13.97722,0.20584,255.59052,12.30588,11.29818,11298.18,808.44906,176.04534,16.84106,4.48306,32.36844,61.97284,21.25556,2.16886,0.0921,0,85.21758,10.5443,11.73134,172.12616,9.05922,0.03156,66.14012,9.64832,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0,0.018,0,155.925,3511.082 -2097,13.92124,0.19973,253.18674,12.29691,11.08331,11083.31,804.39322,175.07093,16.65227,4.45267,32.31763,61.89008,21.14142,2.15207,0.09125,0,84.21991,10.5096,11.72333,171.71957,9.06924,0.03052,65.87049,9.61054,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0,0.018,0,155.925,3511.082 -2098,13.86526,0.19362,250.78296,12.28794,10.86844,10868.44,800.33738,174.09652,16.46348,4.42228,32.26682,61.80732,21.02728,2.13528,0.0904,0,83.22224,10.4749,11.71532,171.31298,9.07926,0.02948,65.60086,9.57276,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0,0.017,0,155.925,3511.082 -2099,13.80928,0.18751,248.37918,12.27897,10.65357,10653.57,796.28154,173.12211,16.27469,4.39189,32.21601,61.72456,20.91314,2.11849,0.08955,0,82.22457,10.4402,11.70731,170.90639,9.08928,0.02844,65.33123,9.53498,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0,0.016,0,155.925,3511.082 -2100,13.7533,0.1814,245.9754,12.27,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,20.799,2.1017,0.0887,0,81.2269,10.4055,11.6993,170.4998,9.0993,0.0274,65.0616,9.4972,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0,0.015,0,155.925,3511.082 -2101,13.548236,0.174144,245.99464,12.203604,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,20.384732,2.06044,0.087056,0,81.228628,10.406792,11.6993,170.4998,9.081312,0.0274,65.0616,9.315568,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0,0.014,0,155.925,3511.082 -2102,13.343172,0.166888,246.01389,12.137208,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,19.970464,2.01918,0.085412,0,81.230356,10.408084,11.6993,170.4998,9.063324,0.0274,65.0616,9.133936,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0,0.014,0,155.925,3511.082 -2103,13.138108,0.159632,246.03313,12.070812,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,19.556196,1.97792,0.083768,0,81.232084,10.409376,11.6993,170.4998,9.045336,0.0274,65.0616,8.952304,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0,0.013,0,155.925,3511.082 -2104,12.933044,0.152376,246.05238,12.004416,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,19.141928,1.93666,0.082124,0,81.233812,10.410668,11.6993,170.4998,9.027348,0.0274,65.0616,8.770672,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0,0.012,0,155.925,3511.082 -2105,12.72798,0.14512,246.07162,11.93802,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,18.72766,1.8954,0.08048,0,81.23554,10.41196,11.6993,170.4998,9.00936,0.0274,65.0616,8.58904,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0,0.012,0,155.925,3511.082 -2106,12.522916,0.137864,246.09086,11.871624,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,18.313392,1.85414,0.078836,0,81.237268,10.413252,11.6993,170.4998,8.991372,0.0274,65.0616,8.407408,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0,0.011,0,155.925,3511.082 -2107,12.317852,0.130608,246.11011,11.805228,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,17.899124,1.81288,0.077192,0,81.238996,10.414544,11.6993,170.4998,8.973384,0.0274,65.0616,8.225776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0,0.011,0,155.925,3511.082 -2108,12.112788,0.123352,246.12935,11.738832,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,17.484856,1.77162,0.075548,0,81.240724,10.415836,11.6993,170.4998,8.955396,0.0274,65.0616,8.044144,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0,0.01,0,155.925,3511.082 -2109,11.907724,0.116096,246.1486,11.672436,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,17.070588,1.73036,0.073904,0,81.242452,10.417128,11.6993,170.4998,8.937408,0.0274,65.0616,7.862512,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0,0.009,0,155.925,3511.082 -2110,11.70266,0.10884,246.16784,11.60604,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,16.65632,1.6891,0.07226,0,81.24418,10.41842,11.6993,170.4998,8.91942,0.0274,65.0616,7.68088,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0,0.009,0,155.925,3511.082 -2111,11.497596,0.101584,246.18708,11.539644,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,16.242052,1.64784,0.070616,0,81.245908,10.419712,11.6993,170.4998,8.901432,0.0274,65.0616,7.499248,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0,0.009,0,155.925,3511.082 -2112,11.292532,0.094328,246.20633,11.473248,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,15.827784,1.60658,0.068972,0,81.247636,10.421004,11.6993,170.4998,8.883444,0.0274,65.0616,7.317616,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0,0.008,0,155.925,3511.082 -2113,11.087468,0.087072,246.22557,11.406852,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,15.413516,1.56532,0.067328,0,81.249364,10.422296,11.6993,170.4998,8.865456,0.0274,65.0616,7.135984,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0,0.008,0,155.925,3511.082 -2114,10.882404,0.079816,246.24482,11.340456,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,14.999248,1.52406,0.065684,0,81.251092,10.423588,11.6993,170.4998,8.847468,0.0274,65.0616,6.954352,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0,0.007,0,155.925,3511.082 -2115,10.67734,0.07256,246.26406,11.27406,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,14.58498,1.4828,0.06404,0,81.25282,10.42488,11.6993,170.4998,8.82948,0.0274,65.0616,6.77272,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0,0.007,0,155.925,3511.082 -2116,10.472276,0.065304,246.2833,11.207664,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,14.170712,1.44154,0.062396,0,81.254548,10.426172,11.6993,170.4998,8.811492,0.0274,65.0616,6.591088,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0,0.007,0,155.925,3511.082 -2117,10.267212,0.058048,246.30255,11.141268,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,13.756444,1.40028,0.060752,0,81.256276,10.427464,11.6993,170.4998,8.793504,0.0274,65.0616,6.409456,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0,0.006,0,155.925,3511.082 -2118,10.062148,0.050792,246.32179,11.074872,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,13.342176,1.35902,0.059108,0,81.258004,10.428756,11.6993,170.4998,8.775516,0.0274,65.0616,6.227824,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0,0.006,0,155.925,3511.082 -2119,9.857084,0.043536,246.34104,11.008476,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,12.927908,1.31776,0.057464,0,81.259732,10.430048,11.6993,170.4998,8.757528,0.0274,65.0616,6.046192,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0,0.006,0,155.925,3511.082 -2120,9.65202,0.03628,246.36028,10.94208,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,12.51364,1.2765,0.05582,0,81.26146,10.43134,11.6993,170.4998,8.73954,0.0274,65.0616,5.86456,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0,0.005,0,155.925,3511.082 -2121,9.446956,0.029024,246.37952,10.875684,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,12.099372,1.23524,0.054176,0,81.263188,10.432632,11.6993,170.4998,8.721552,0.0274,65.0616,5.682928,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0,0.005,0,155.925,3511.082 -2122,9.241892,0.021768,246.39877,10.809288,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,11.685104,1.19398,0.052532,0,81.264916,10.433924,11.6993,170.4998,8.703564,0.0274,65.0616,5.501296,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0,0.005,0,155.925,3511.082 -2123,9.036828,0.014512,246.41801,10.742892,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,11.270836,1.15272,0.050888,0,81.266644,10.435216,11.6993,170.4998,8.685576,0.0274,65.0616,5.319664,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0,0.005,0,155.925,3511.082 -2124,8.831764,0.007256,246.43726,10.676496,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,10.856568,1.11146,0.049244,0,81.268372,10.436508,11.6993,170.4998,8.667588,0.0274,65.0616,5.138032,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0,0.004,0,155.925,3511.082 -2125,8.6267,0,246.4565,10.6101,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,10.4423,1.0702,0.0476,0,81.2701,10.4378,11.6993,170.4998,8.6496,0.0274,65.0616,4.9564,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0,0.004,0,155.925,3511.082 -2126,8.4216348,0,246.47573,10.543696,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,10.02803,1.0289391,0.045952174,0,81.271826,10.4391,11.6993,170.4998,8.6316174,0.0274,65.0616,4.7747739,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0,0.004,0,155.925,3511.082 -2127,8.2165696,0,246.49496,10.477291,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,9.6137609,0.98767826,0.044304348,0,81.273552,10.4404,11.6993,170.4998,8.6136348,0.0274,65.0616,4.5931478,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0,0.004,0,155.925,3511.082 -2128,8.0115043,0,246.51419,10.410887,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,9.1994913,0.94641739,0.042656522,0,81.275278,10.4417,11.6993,170.4998,8.5956522,0.0274,65.0616,4.4115217,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0,0.004,0,155.925,3511.082 -2129,7.8064391,0,246.53342,10.344483,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,8.7852217,0.90515652,0.041008696,0,81.277004,10.443,11.6993,170.4998,8.5776696,0.0274,65.0616,4.2298957,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0,0.003,0,155.925,3511.082 -2130,7.6013739,0,246.55265,10.278078,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,8.3709522,0.86389565,0.03936087,0,81.27873,10.4443,11.6993,170.4998,8.559687,0.0274,65.0616,4.0482696,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0,0.003,0,155.925,3511.082 -2131,7.3963087,0,246.57188,10.211674,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,7.9566826,0.82263478,0.037713043,0,81.280457,10.4456,11.6993,170.4998,8.5417043,0.0274,65.0616,3.8666435,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0,0.003,0,155.925,3511.082 -2132,7.1912435,0,246.59111,10.14527,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,7.542413,0.78137391,0.036065217,0,81.282183,10.4469,11.6993,170.4998,8.5237217,0.0274,65.0616,3.6850174,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0,0.003,0,155.925,3511.082 -2133,6.9861783,0,246.61034,10.078865,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,7.1281435,0.74011304,0.034417391,0,81.283909,10.4482,11.6993,170.4998,8.5057391,0.0274,65.0616,3.5033913,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0,0.003,0,155.925,3511.082 -2134,6.781113,0,246.62957,10.012461,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,6.7138739,0.69885217,0.032769565,0,81.285635,10.4495,11.6993,170.4998,8.4877565,0.0274,65.0616,3.3217652,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0,0.003,0,155.925,3511.082 -2135,6.5760478,0,246.6488,9.9460565,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,6.2996043,0.6575913,0.031121739,0,81.287361,10.4508,11.6993,170.4998,8.4697739,0.0274,65.0616,3.1401391,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0,0.002,0,155.925,3511.082 -2136,6.3709826,0,246.66803,9.8796522,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,5.8853348,0.61633043,0.029473913,0,81.289087,10.4521,11.6993,170.4998,8.4517913,0.0274,65.0616,2.958513,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0,0.002,0,155.925,3511.082 -2137,6.1659174,0,246.68727,9.8132478,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,5.4710652,0.57506957,0.027826087,0,81.290813,10.4534,11.6993,170.4998,8.4338087,0.0274,65.0616,2.776887,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0,0.002,0,155.925,3511.082 -2138,5.9608522,0,246.7065,9.7468435,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,5.0567957,0.5338087,0.026178261,0,81.292539,10.4547,11.6993,170.4998,8.4158261,0.0274,65.0616,2.5952609,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0,0.002,0,155.925,3511.082 -2139,5.755787,0,246.72573,9.6804391,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,4.6425261,0.49254783,0.024530435,0,81.294265,10.456,11.6993,170.4998,8.3978435,0.0274,65.0616,2.4136348,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0,0.002,0,155.925,3511.082 -2140,5.5507217,0,246.74496,9.6140348,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,4.2282565,0.45128696,0.022882609,0,81.295991,10.4573,11.6993,170.4998,8.3798609,0.0274,65.0616,2.2320087,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0,0.002,0,155.925,3511.082 -2141,5.3456565,0,246.76419,9.5476304,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,3.813987,0.41002609,0.021234783,0,81.297717,10.4586,11.6993,170.4998,8.3618783,0.0274,65.0616,2.0503826,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0,0.002,0,155.925,3511.082 -2142,5.1405913,0,246.78342,9.4812261,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,3.3997174,0.36876522,0.019586957,0,81.299443,10.4599,11.6993,170.4998,8.3438957,0.0274,65.0616,1.8687565,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0,0.002,0,155.925,3511.082 -2143,4.9355261,0,246.80265,9.4148217,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,2.9854478,0.32750435,0.01793913,0,81.30117,10.4612,11.6993,170.4998,8.325913,0.0274,65.0616,1.6871304,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0,0.002,0,155.925,3511.082 -2144,4.7304609,0,246.82188,9.3484174,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,2.5711783,0.28624348,0.016291304,0,81.302896,10.4625,11.6993,170.4998,8.3079304,0.0274,65.0616,1.5055043,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0,0.002,0,155.925,3511.082 -2145,4.5253957,0,246.84111,9.282013,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,2.1569087,0.24498261,0.014643478,0,81.304622,10.4638,11.6993,170.4998,8.2899478,0.0274,65.0616,1.3238783,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0,0.001,0,155.925,3511.082 -2146,4.3203304,0,246.86034,9.2156087,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,1.7426391,0.20372174,0.012995652,0,81.306348,10.4651,11.6993,170.4998,8.2719652,0.0274,65.0616,1.1422522,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0,0.001,0,155.925,3511.082 -2147,4.1152652,0,246.87957,9.1492043,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,1.3283696,0.16246087,0.011347826,0,81.308074,10.4664,11.6993,170.4998,8.2539826,0.0274,65.0616,0.96062609,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0,0.001,0,155.925,3511.082 -2148,3.9102,0,246.8988,9.0828,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.9141,0.1212,0.0097,0,81.3098,10.4677,11.6993,170.4998,8.236,0.0274,65.0616,0.779,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0,0.001,0,155.925,3511.082 -2149,3.5678,0,247.6444,9.0373,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0819,0.037,0.0058,0.8262,81.3751,10.5132,11.7206,171.2635,8.1553,0.1092,65.1637,0.3953,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0,0.175,0,155.922,3511.082 -2150,3.5062,0,247.7303,9.0391,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0819,0.037,0.0058,0.8264,81.3904,10.5152,11.7228,171.2955,8.157,0.1092,65.176,0.3953,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.949,3511.082 -2151,3.4375,0,247.7774,9.0405,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8264,81.3986,10.5162,11.7239,171.3129,8.1577,0.1092,65.1826,0.3953,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.957,3511.082 -2152,3.3717,0,247.8331,9.0411,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8265,81.4085,10.5175,11.7253,171.3336,8.1585,0.1092,65.1904,0.3953,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.964,3511.082 -2153,3.3114,0,247.8896,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8267,81.4185,10.5187,11.7267,171.3547,8.1597,0.1092,65.1983,0.3953,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.973,3511.082 -2154,3.2545,0,247.9452,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8268,81.4283,10.52,11.7282,171.3754,8.1606,0.1092,65.2063,0.3953,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.983,3511.082 -2155,3.2005,0,247.9997,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8268,81.4378,10.5215,11.7296,171.3954,8.1617,0.1092,65.2139,0.3953,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.994,3511.082 -2156,3.15264,0,248.05092,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8269,81.44686,10.52262,11.7309,171.41446,8.16262,0.10922,65.22116,0.3953,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.005,3511.082 -2157,3.10478,0,248.10214,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.827,81.45592,10.52374,11.7322,171.43352,8.16354,0.10924,65.22842,0.3953,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.018,3511.082 -2158,3.05692,0,248.15336,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8271,81.46498,10.52486,11.7335,171.45258,8.16446,0.10926,65.23568,0.3953,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.03,3511.082 -2159,3.00906,0,248.20458,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8272,81.47404,10.52598,11.7348,171.47164,8.16538,0.10928,65.24294,0.3953,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.044,3511.082 -2160,2.9612,0,248.2558,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8273,81.4831,10.5271,11.7361,171.4907,8.1663,0.1093,65.2502,0.3953,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.057,3511.082 -2161,2.92104,0,248.30274,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82738,81.49138,10.5282,11.7373,171.50814,8.16712,0.10932,65.25682,0.3953,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.071,3511.082 -2162,2.88088,0,248.34968,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82746,81.49966,10.5293,11.7385,171.52558,8.16794,0.10934,65.26344,0.3953,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.084,3511.082 -2163,2.84072,0,248.39662,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82754,81.50794,10.5304,11.7397,171.54302,8.16876,0.10936,65.27006,0.3953,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.098,3511.082 -2164,2.80056,0,248.44356,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82762,81.51622,10.5315,11.7409,171.56046,8.16958,0.10938,65.27668,0.3953,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.112,3511.082 -2165,2.7604,0,248.4905,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8277,81.5245,10.5326,11.7421,171.5779,8.1704,0.1094,65.2833,0.3953,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.127,3511.082 -2166,2.7258,0,248.53416,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82776,81.53222,10.53358,11.74322,171.59414,8.17116,0.10942,65.28948,0.3953,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.141,3511.082 -2167,2.6912,0,248.57782,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82782,81.53994,10.53456,11.74434,171.61038,8.17192,0.10944,65.29566,0.3953,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.155,3511.082 -2168,2.6566,0,248.62148,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82788,81.54766,10.53554,11.74546,171.62662,8.17268,0.10946,65.30184,0.3953,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.169,3511.082 -2169,2.622,0,248.66514,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82794,81.55538,10.53652,11.74658,171.64286,8.17344,0.10948,65.30802,0.3953,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.183,3511.082 -2170,2.5874,0,248.7088,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.828,81.5631,10.5375,11.7477,171.6591,8.1742,0.1095,65.3142,0.3953,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.198,3511.082 -2171,2.55704,0,248.74978,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08202,0.037,0.0058,0.8281,81.57034,10.53844,11.74872,171.67432,8.1749,0.1095,65.32,0.3953,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.212,3511.082 -2172,2.52668,0,248.79076,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08204,0.037,0.0058,0.8282,81.57758,10.53938,11.74974,171.68954,8.1756,0.1095,65.3258,0.3953,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.226,3511.082 -2173,2.49632,0,248.83174,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08206,0.037,0.0058,0.8283,81.58482,10.54032,11.75076,171.70476,8.1763,0.1095,65.3316,0.3953,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.24,3511.082 -2174,2.46596,0,248.87272,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08208,0.037,0.0058,0.8284,81.59206,10.54126,11.75178,171.71998,8.177,0.1095,65.3374,0.3953,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.254,3511.082 -2175,2.4356,0,248.9137,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.8285,81.5993,10.5422,11.7528,171.7352,8.1777,0.1095,65.3432,0.3953,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.268,3511.082 -2176,2.40884,0,248.95232,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82858,81.6061,10.54306,11.75378,171.74956,8.17838,0.10952,65.34866,0.3953,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.282,3511.082 -2177,2.38208,0,248.99094,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82866,81.6129,10.54392,11.75476,171.76392,8.17906,0.10954,65.35412,0.3953,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.296,3511.082 -2178,2.35532,0,249.02956,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82874,81.6197,10.54478,11.75574,171.77828,8.17974,0.10956,65.35958,0.3953,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.31,3511.082 -2179,2.32856,0,249.06818,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82882,81.6265,10.54564,11.75672,171.79264,8.18042,0.10958,65.36504,0.3953,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.324,3511.082 -2180,2.3018,0,249.1068,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.8289,81.6333,10.5465,11.7577,171.807,8.1811,0.1096,65.3705,0.3953,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.338,3511.082 -2181,2.27802,0,249.14344,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82894,81.63978,10.54736,11.75862,171.82058,8.18178,0.1096,65.37568,0.3953,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.351,3511.082 -2182,2.25424,0,249.18008,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82898,81.64626,10.54822,11.75954,171.83416,8.18246,0.1096,65.38086,0.3953,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.365,3511.082 -2183,2.23046,0,249.21672,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82902,81.65274,10.54908,11.76046,171.84774,8.18314,0.1096,65.38604,0.3953,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.379,3511.082 -2184,2.20668,0,249.25336,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82906,81.65922,10.54994,11.76138,171.86132,8.18382,0.1096,65.39122,0.3953,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.392,3511.082 -2185,2.1829,0,249.29,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.8291,81.6657,10.5508,11.7623,171.8749,8.1845,0.1096,65.3964,0.3953,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.406,3511.082 -2186,2.1617,0,249.32488,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08212,0.037,0.0058,0.82918,81.67186,10.55156,11.7632,171.88788,8.18512,0.1096,65.40132,0.3953,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.419,3511.082 -2187,2.1405,0,249.35976,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08214,0.037,0.0058,0.82926,81.67802,10.55232,11.7641,171.90086,8.18574,0.1096,65.40624,0.3953,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.432,3511.082 -2188,2.1193,0,249.39464,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08216,0.037,0.0058,0.82934,81.68418,10.55308,11.765,171.91384,8.18636,0.1096,65.41116,0.3953,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.446,3511.082 -2189,2.0981,0,249.42952,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08218,0.037,0.0058,0.82942,81.69034,10.55384,11.7659,171.92682,8.18698,0.1096,65.41608,0.3953,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.459,3511.082 -2190,2.0769,0,249.4644,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8295,81.6965,10.5546,11.7668,171.9398,8.1876,0.1096,65.421,0.3953,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.472,3511.082 -2191,2.05792,0,249.49772,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82954,81.7024,10.55538,11.76764,171.9522,8.18818,0.1096,65.42574,0.3953,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.485,3511.082 -2192,2.03894,0,249.53104,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82958,81.7083,10.55616,11.76848,171.9646,8.18876,0.1096,65.43048,0.3953,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.498,3511.082 -2193,2.01996,0,249.56436,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82962,81.7142,10.55694,11.76932,171.977,8.18934,0.1096,65.43522,0.3953,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.511,3511.082 -2194,2.00098,0,249.59768,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82966,81.7201,10.55772,11.77016,171.9894,8.18992,0.1096,65.43996,0.3953,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.524,3511.082 -2195,1.982,0,249.631,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8297,81.726,10.5585,11.771,172.0018,8.1905,0.1096,65.4447,0.3953,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.537,3511.082 -2196,1.96498,0,249.66292,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82976,81.7316,10.55924,11.77184,172.01368,8.19108,0.1096,65.44922,0.3953,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.549,3511.082 -2197,1.94796,0,249.69484,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82982,81.7372,10.55998,11.77268,172.02556,8.19166,0.1096,65.45374,0.3953,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.562,3511.082 -2198,1.93094,0,249.72676,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82988,81.7428,10.56072,11.77352,172.03744,8.19224,0.1096,65.45826,0.3953,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.575,3511.082 -2199,1.91392,0,249.75868,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82994,81.7484,10.56146,11.77436,172.04932,8.19282,0.1096,65.46278,0.3953,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.587,3511.082 -2200,1.8969,0,249.7906,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83,81.754,10.5622,11.7752,172.0612,8.1934,0.1096,65.4673,0.3953,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.6,3511.082 -2201,1.88235,0,249.82068,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83005,81.75932,10.56289,11.77597,172.07236,8.19394,0.10961,65.47155,0.3953,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.612,3511.082 -2202,1.8678,0,249.85076,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8301,81.76464,10.56358,11.77674,172.08352,8.19448,0.10962,65.4758,0.3953,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.624,3511.082 -2203,1.85325,0,249.88084,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83015,81.76996,10.56427,11.77751,172.09468,8.19502,0.10963,65.48005,0.3953,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.637,3511.082 -2204,1.8387,0,249.91092,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8302,81.77528,10.56496,11.77828,172.10584,8.19556,0.10964,65.4843,0.3953,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.649,3511.082 -2205,1.82415,0,249.941,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83025,81.7806,10.56565,11.77905,172.117,8.1961,0.10965,65.48855,0.3953,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.661,3511.082 -2206,1.8096,0,249.97108,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8303,81.78592,10.56634,11.77982,172.12816,8.19664,0.10966,65.4928,0.3953,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.673,3511.082 -2207,1.79505,0,250.00116,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83035,81.79124,10.56703,11.78059,172.13932,8.19718,0.10967,65.49705,0.3953,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.685,3511.082 -2208,1.7805,0,250.03124,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8304,81.79656,10.56772,11.78136,172.15048,8.19772,0.10968,65.5013,0.3953,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.697,3511.082 -2209,1.76595,0,250.06132,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83045,81.80188,10.56841,11.78213,172.16164,8.19826,0.10969,65.50555,0.3953,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.709,3511.082 -2210,1.7514,0,250.0914,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8305,81.8072,10.5691,11.7829,172.1728,8.1988,0.1097,65.5098,0.3953,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.721,3511.082 -2211,1.73953,0,250.11931,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08222,0.037,0.0058,0.83055,81.81212,10.56974,11.7836,172.18317,8.19928,0.1097,65.51374,0.3953,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.733,3511.082 -2212,1.72766,0,250.14722,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08224,0.037,0.0058,0.8306,81.81704,10.57038,11.7843,172.19354,8.19976,0.1097,65.51768,0.3953,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.744,3511.082 -2213,1.71579,0,250.17513,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08226,0.037,0.0058,0.83065,81.82196,10.57102,11.785,172.20391,8.20024,0.1097,65.52162,0.3953,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.756,3511.082 -2214,1.70392,0,250.20304,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08228,0.037,0.0058,0.8307,81.82688,10.57166,11.7857,172.21428,8.20072,0.1097,65.52556,0.3953,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.768,3511.082 -2215,1.69205,0,250.23095,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0823,0.037,0.0058,0.83075,81.8318,10.5723,11.7864,172.22465,8.2012,0.1097,65.5295,0.3953,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.779,3511.082 -2216,1.68018,0,250.25886,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08232,0.037,0.0058,0.8308,81.83672,10.57294,11.7871,172.23502,8.20168,0.1097,65.53344,0.3953,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.791,3511.082 -2217,1.66831,0,250.28677,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08234,0.037,0.0058,0.83085,81.84164,10.57358,11.7878,172.24539,8.20216,0.1097,65.53738,0.3953,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.802,3511.082 -2218,1.65644,0,250.31468,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08236,0.037,0.0058,0.8309,81.84656,10.57422,11.7885,172.25576,8.20264,0.1097,65.54132,0.3953,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.813,3511.082 -2219,1.64457,0,250.34259,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08238,0.037,0.0058,0.83095,81.85148,10.57486,11.7892,172.26613,8.20312,0.1097,65.54526,0.3953,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.825,3511.082 -2220,1.6327,0,250.3705,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.831,81.8564,10.5755,11.7899,172.2765,8.2036,0.1097,65.5492,0.3953,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.836,3511.082 -2221,1.62294,0,250.3966,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83106,81.86101,10.57608,11.79056,172.2862,8.20406,0.10971,65.55289,0.3953,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.847,3511.082 -2222,1.61318,0,250.4227,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83112,81.86562,10.57666,11.79122,172.2959,8.20452,0.10972,65.55658,0.3953,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.858,3511.082 -2223,1.60342,0,250.4488,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83118,81.87023,10.57724,11.79188,172.3056,8.20498,0.10973,65.56027,0.3953,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.869,3511.082 -2224,1.59366,0,250.4749,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83124,81.87484,10.57782,11.79254,172.3153,8.20544,0.10974,65.56396,0.3953,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.88,3511.082 -2225,1.5839,0,250.501,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.8313,81.87945,10.5784,11.7932,172.325,8.2059,0.10975,65.56765,0.3953,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.891,3511.082 -2226,1.57414,0,250.5271,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83136,81.88406,10.57898,11.79386,172.3347,8.20636,0.10976,65.57134,0.3953,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.902,3511.082 -2227,1.56438,0,250.5532,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83142,81.88867,10.57956,11.79452,172.3444,8.20682,0.10977,65.57503,0.3953,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.913,3511.082 -2228,1.55462,0,250.5793,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83148,81.89328,10.58014,11.79518,172.3541,8.20728,0.10978,65.57872,0.3953,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.924,3511.082 -2229,1.54486,0,250.6054,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83154,81.89789,10.58072,11.79584,172.3638,8.20774,0.10979,65.58241,0.3953,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.935,3511.082 -2230,1.5351,0,250.6315,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.8316,81.9025,10.5813,11.7965,172.3735,8.2082,0.1098,65.5861,0.3953,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.945,3511.082 -2231,1.52697,0,250.65601,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83164,81.90685,10.58188,11.79712,172.38261,8.20864,0.10981,65.58957,0.3953,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.956,3511.082 -2232,1.51884,0,250.68052,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83168,81.9112,10.58246,11.79774,172.39172,8.20908,0.10982,65.59304,0.3953,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.967,3511.082 -2233,1.51071,0,250.70503,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83172,81.91555,10.58304,11.79836,172.40083,8.20952,0.10983,65.59651,0.3953,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.977,3511.082 -2234,1.50258,0,250.72954,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83176,81.9199,10.58362,11.79898,172.40994,8.20996,0.10984,65.59998,0.3953,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.988,3511.082 -2235,1.49445,0,250.75405,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.8318,81.92425,10.5842,11.7996,172.41905,8.2104,0.10985,65.60345,0.3953,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.998,3511.082 -2236,1.48632,0,250.77856,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83184,81.9286,10.58478,11.80022,172.42816,8.21084,0.10986,65.60692,0.3953,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.008,3511.082 -2237,1.47819,0,250.80307,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83188,81.93295,10.58536,11.80084,172.43727,8.21128,0.10987,65.61039,0.3953,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.019,3511.082 -2238,1.47006,0,250.82758,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83192,81.9373,10.58594,11.80146,172.44638,8.21172,0.10988,65.61386,0.3953,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.029,3511.082 -2239,1.46193,0,250.85209,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83196,81.94165,10.58652,11.80208,172.45549,8.21216,0.10989,65.61733,0.3953,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.039,3511.082 -2240,1.4538,0,250.8766,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.832,81.946,10.5871,11.8027,172.4646,8.2126,0.1099,65.6208,0.3953,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.05,3511.082 -2241,1.44702,0,250.89972,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08242,0.037,0.0058,0.83203,81.95006,10.58761,11.80329,172.4732,8.21301,0.10991,65.62406,0.3953,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.06,3511.082 -2242,1.44024,0,250.92284,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08244,0.037,0.0058,0.83206,81.95412,10.58812,11.80388,172.4818,8.21342,0.10992,65.62732,0.3953,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.07,3511.082 -2243,1.43346,0,250.94596,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08246,0.037,0.0058,0.83209,81.95818,10.58863,11.80447,172.4904,8.21383,0.10993,65.63058,0.3953,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.08,3511.082 -2244,1.42668,0,250.96908,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08248,0.037,0.0058,0.83212,81.96224,10.58914,11.80506,172.499,8.21424,0.10994,65.63384,0.3953,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.09,3511.082 -2245,1.4199,0,250.9922,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0825,0.037,0.0058,0.83215,81.9663,10.58965,11.80565,172.5076,8.21465,0.10995,65.6371,0.3953,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.1,3511.082 -2246,1.41312,0,251.01532,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08252,0.037,0.0058,0.83218,81.97036,10.59016,11.80624,172.5162,8.21506,0.10996,65.64036,0.3953,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.11,3511.082 -2247,1.40634,0,251.03844,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08254,0.037,0.0058,0.83221,81.97442,10.59067,11.80683,172.5248,8.21547,0.10997,65.64362,0.3953,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.12,3511.082 -2248,1.39956,0,251.06156,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08256,0.037,0.0058,0.83224,81.97848,10.59118,11.80742,172.5334,8.21588,0.10998,65.64688,0.3953,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.13,3511.082 -2249,1.39278,0,251.08468,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08258,0.037,0.0058,0.83227,81.98254,10.59169,11.80801,172.542,8.21629,0.10999,65.65014,0.3953,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.139,3511.082 -2250,1.386,0,251.1078,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8323,81.9866,10.5922,11.8086,172.5506,8.2167,0.11,65.6534,0.3953,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.149,3511.082 -2251,1.380872,0,251.12888,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83234,81.99032,10.592676,11.809136,172.55843,8.217072,0.11,65.656376,0.3953,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.159,3511.082 -2252,1.375744,0,251.14995,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83238,81.99404,10.593152,11.809672,172.56626,8.217444,0.11,65.659352,0.3953,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.168,3511.082 -2253,1.370616,0,251.17103,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83242,81.99776,10.593628,11.810208,172.57408,8.217816,0.11,65.662328,0.3953,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.178,3511.082 -2254,1.365488,0,251.1921,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83246,82.00148,10.594104,11.810744,172.58191,8.218188,0.11,65.665304,0.3953,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.188,3511.082 -2255,1.36036,0,251.21318,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8325,82.0052,10.59458,11.81128,172.58974,8.21856,0.11,65.66828,0.3953,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.197,3511.082 -2256,1.355232,0,251.23426,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83254,82.00892,10.595056,11.811816,172.59757,8.218932,0.11,65.671256,0.3953,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.207,3511.082 -2257,1.350104,0,251.25533,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83258,82.01264,10.595532,11.812352,172.6054,8.219304,0.11,65.674232,0.3953,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.216,3511.082 -2258,1.344976,0,251.27641,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83262,82.01636,10.596008,11.812888,172.61322,8.219676,0.11,65.677208,0.3953,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.226,3511.082 -2259,1.339848,0,251.29748,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83266,82.02008,10.596484,11.813424,172.62105,8.220048,0.11,65.680184,0.3953,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.235,3511.082 -2260,1.33472,0,251.31856,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8327,82.0238,10.59696,11.81396,172.62888,8.22042,0.11,65.68316,0.3953,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.244,3511.082 -2261,1.329592,0,251.33964,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83274,82.02752,10.597436,11.814496,172.63671,8.220792,0.11,65.686136,0.3953,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.253,3511.082 -2262,1.324464,0,251.36071,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83278,82.03124,10.597912,11.815032,172.64454,8.221164,0.11,65.689112,0.3953,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.263,3511.082 -2263,1.319336,0,251.38179,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83282,82.03496,10.598388,11.815568,172.65236,8.221536,0.11,65.692088,0.3953,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.272,3511.082 -2264,1.314208,0,251.40286,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83286,82.03868,10.598864,11.816104,172.66019,8.221908,0.11,65.695064,0.3953,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.281,3511.082 -2265,1.30908,0,251.42394,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8329,82.0424,10.59934,11.81664,172.66802,8.22228,0.11,65.69804,0.3953,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.29,3511.082 -2266,1.303952,0,251.44502,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83294,82.04612,10.599816,11.817176,172.67585,8.222652,0.11,65.701016,0.3953,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.299,3511.082 -2267,1.298824,0,251.46609,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83298,82.04984,10.600292,11.817712,172.68368,8.223024,0.11,65.703992,0.3953,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.308,3511.082 -2268,1.293696,0,251.48717,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83302,82.05356,10.600768,11.818248,172.6915,8.223396,0.11,65.706968,0.3953,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.317,3511.082 -2269,1.288568,0,251.50824,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83306,82.05728,10.601244,11.818784,172.69933,8.223768,0.11,65.709944,0.3953,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.326,3511.082 -2270,1.28344,0,251.52932,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8331,82.061,10.60172,11.81932,172.70716,8.22414,0.11,65.71292,0.3953,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.335,3511.082 -2271,1.278312,0,251.5504,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83314,82.06472,10.602196,11.819856,172.71499,8.224512,0.11,65.715896,0.3953,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.344,3511.082 -2272,1.273184,0,251.57147,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83318,82.06844,10.602672,11.820392,172.72282,8.224884,0.11,65.718872,0.3953,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.353,3511.082 -2273,1.268056,0,251.59255,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83322,82.07216,10.603148,11.820928,172.73064,8.225256,0.11,65.721848,0.3953,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.362,3511.082 -2274,1.262928,0,251.61362,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83326,82.07588,10.603624,11.821464,172.73847,8.225628,0.11,65.724824,0.3953,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.371,3511.082 -2275,1.2578,0,251.6347,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8333,82.0796,10.6041,11.822,172.7463,8.226,0.11,65.7278,0.3953,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.379,3511.082 -2276,1.254232,0,251.65339,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082604,0.037,0.0058,0.833336,82.082904,10.604528,11.822476,172.75325,8.226328,0.110008,65.730448,0.3953,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.388,3511.082 -2277,1.250664,0,251.67208,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082608,0.037,0.0058,0.833372,82.086208,10.604956,11.822952,172.7602,8.226656,0.110016,65.733096,0.3953,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.397,3511.082 -2278,1.247096,0,251.69076,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082612,0.037,0.0058,0.833408,82.089512,10.605384,11.823428,172.76714,8.226984,0.110024,65.735744,0.3953,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.406,3511.082 -2279,1.243528,0,251.70945,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082616,0.037,0.0058,0.833444,82.092816,10.605812,11.823904,172.77409,8.227312,0.110032,65.738392,0.3953,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.414,3511.082 -2280,1.23996,0,251.72814,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08262,0.037,0.0058,0.83348,82.09612,10.60624,11.82438,172.78104,8.22764,0.11004,65.74104,0.3953,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.423,3511.082 -2281,1.236392,0,251.74683,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082624,0.037,0.0058,0.833516,82.099424,10.606668,11.824856,172.78799,8.227968,0.110048,65.743688,0.3953,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.431,3511.082 -2282,1.232824,0,251.76552,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082628,0.037,0.0058,0.833552,82.102728,10.607096,11.825332,172.79494,8.228296,0.110056,65.746336,0.3953,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.44,3511.082 -2283,1.229256,0,251.7842,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082632,0.037,0.0058,0.833588,82.106032,10.607524,11.825808,172.80188,8.228624,0.110064,65.748984,0.3953,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.448,3511.082 -2284,1.225688,0,251.80289,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082636,0.037,0.0058,0.833624,82.109336,10.607952,11.826284,172.80883,8.228952,0.110072,65.751632,0.3953,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.457,3511.082 -2285,1.22212,0,251.82158,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08264,0.037,0.0058,0.83366,82.11264,10.60838,11.82676,172.81578,8.22928,0.11008,65.75428,0.3953,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.465,3511.082 -2286,1.218552,0,251.84027,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082644,0.037,0.0058,0.833696,82.115944,10.608808,11.827236,172.82273,8.229608,0.110088,65.756928,0.3953,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.473,3511.082 -2287,1.214984,0,251.85896,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082648,0.037,0.0058,0.833732,82.119248,10.609236,11.827712,172.82968,8.229936,0.110096,65.759576,0.3953,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.482,3511.082 -2288,1.211416,0,251.87764,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082652,0.037,0.0058,0.833768,82.122552,10.609664,11.828188,172.83662,8.230264,0.110104,65.762224,0.3953,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.49,3511.082 -2289,1.207848,0,251.89633,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082656,0.037,0.0058,0.833804,82.125856,10.610092,11.828664,172.84357,8.230592,0.110112,65.764872,0.3953,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.498,3511.082 -2290,1.20428,0,251.91502,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08266,0.037,0.0058,0.83384,82.12916,10.61052,11.82914,172.85052,8.23092,0.11012,65.76752,0.3953,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.507,3511.082 -2291,1.200712,0,251.93371,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082664,0.037,0.0058,0.833876,82.132464,10.610948,11.829616,172.85747,8.231248,0.110128,65.770168,0.3953,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.515,3511.082 -2292,1.197144,0,251.9524,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082668,0.037,0.0058,0.833912,82.135768,10.611376,11.830092,172.86442,8.231576,0.110136,65.772816,0.3953,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.523,3511.082 -2293,1.193576,0,251.97108,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082672,0.037,0.0058,0.833948,82.139072,10.611804,11.830568,172.87136,8.231904,0.110144,65.775464,0.3953,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.531,3511.082 -2294,1.190008,0,251.98977,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082676,0.037,0.0058,0.833984,82.142376,10.612232,11.831044,172.87831,8.232232,0.110152,65.778112,0.3953,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.539,3511.082 -2295,1.18644,0,252.00846,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08268,0.037,0.0058,0.83402,82.14568,10.61266,11.83152,172.88526,8.23256,0.11016,65.78076,0.3953,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.547,3511.082 -2296,1.182872,0,252.02715,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082684,0.037,0.0058,0.834056,82.148984,10.613088,11.831996,172.89221,8.232888,0.110168,65.783408,0.3953,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.555,3511.082 -2297,1.179304,0,252.04584,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082688,0.037,0.0058,0.834092,82.152288,10.613516,11.832472,172.89916,8.233216,0.110176,65.786056,0.3953,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.564,3511.082 -2298,1.175736,0,252.06452,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082692,0.037,0.0058,0.834128,82.155592,10.613944,11.832948,172.9061,8.233544,0.110184,65.788704,0.3953,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.572,3511.082 -2299,1.172168,0,252.08321,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082696,0.037,0.0058,0.834164,82.158896,10.614372,11.833424,172.91305,8.233872,0.110192,65.791352,0.3953,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.579,3511.082 -2300,1.1686,0,252.1019,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0827,0.037,0.0058,0.8342,82.1622,10.6148,11.8339,172.92,8.2342,0.1102,65.794,0.3953,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.587,3511.082 -2301,1.165964,0,252.1187,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082704,0.037,0.0058,0.834228,82.165164,10.615184,11.834324,172.92624,8.2345,0.110204,65.796372,0.3953,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.595,3511.082 -2302,1.163328,0,252.1355,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082708,0.037,0.0058,0.834256,82.168128,10.615568,11.834748,172.93248,8.2348,0.110208,65.798744,0.3953,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.603,3511.082 -2303,1.160692,0,252.1523,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082712,0.037,0.0058,0.834284,82.171092,10.615952,11.835172,172.93872,8.2351,0.110212,65.801116,0.3953,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.611,3511.082 -2304,1.158056,0,252.1691,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082716,0.037,0.0058,0.834312,82.174056,10.616336,11.835596,172.94496,8.2354,0.110216,65.803488,0.3953,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.619,3511.082 -2305,1.15542,0,252.1859,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08272,0.037,0.0058,0.83434,82.17702,10.61672,11.83602,172.9512,8.2357,0.11022,65.80586,0.3953,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.627,3511.082 -2306,1.152784,0,252.2027,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082724,0.037,0.0058,0.834368,82.179984,10.617104,11.836444,172.95744,8.236,0.110224,65.808232,0.3953,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.634,3511.082 -2307,1.150148,0,252.2195,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082728,0.037,0.0058,0.834396,82.182948,10.617488,11.836868,172.96368,8.2363,0.110228,65.810604,0.3953,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.642,3511.082 -2308,1.147512,0,252.2363,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082732,0.037,0.0058,0.834424,82.185912,10.617872,11.837292,172.96992,8.2366,0.110232,65.812976,0.3953,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.65,3511.082 -2309,1.144876,0,252.2531,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082736,0.037,0.0058,0.834452,82.188876,10.618256,11.837716,172.97616,8.2369,0.110236,65.815348,0.3953,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.658,3511.082 -2310,1.14224,0,252.2699,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08274,0.037,0.0058,0.83448,82.19184,10.61864,11.83814,172.9824,8.2372,0.11024,65.81772,0.3953,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.665,3511.082 -2311,1.139604,0,252.2867,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082744,0.037,0.0058,0.834508,82.194804,10.619024,11.838564,172.98864,8.2375,0.110244,65.820092,0.3953,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.673,3511.082 -2312,1.136968,0,252.3035,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082748,0.037,0.0058,0.834536,82.197768,10.619408,11.838988,172.99488,8.2378,0.110248,65.822464,0.3953,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.68,3511.082 -2313,1.134332,0,252.3203,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082752,0.037,0.0058,0.834564,82.200732,10.619792,11.839412,173.00112,8.2381,0.110252,65.824836,0.3953,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.688,3511.082 -2314,1.131696,0,252.3371,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082756,0.037,0.0058,0.834592,82.203696,10.620176,11.839836,173.00736,8.2384,0.110256,65.827208,0.3953,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.696,3511.082 -2315,1.12906,0,252.3539,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08276,0.037,0.0058,0.83462,82.20666,10.62056,11.84026,173.0136,8.2387,0.11026,65.82958,0.3953,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.703,3511.082 -2316,1.126424,0,252.3707,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082764,0.037,0.0058,0.834648,82.209624,10.620944,11.840684,173.01984,8.239,0.110264,65.831952,0.3953,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.711,3511.082 -2317,1.123788,0,252.3875,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082768,0.037,0.0058,0.834676,82.212588,10.621328,11.841108,173.02608,8.2393,0.110268,65.834324,0.3953,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.718,3511.082 -2318,1.121152,0,252.4043,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082772,0.037,0.0058,0.834704,82.215552,10.621712,11.841532,173.03232,8.2396,0.110272,65.836696,0.3953,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.725,3511.082 -2319,1.118516,0,252.4211,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082776,0.037,0.0058,0.834732,82.218516,10.622096,11.841956,173.03856,8.2399,0.110276,65.839068,0.3953,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.733,3511.082 -2320,1.11588,0,252.4379,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08278,0.037,0.0058,0.83476,82.22148,10.62248,11.84238,173.0448,8.2402,0.11028,65.84144,0.3953,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.74,3511.082 -2321,1.113244,0,252.4547,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082784,0.037,0.0058,0.834788,82.224444,10.622864,11.842804,173.05104,8.2405,0.110284,65.843812,0.3953,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.748,3511.082 -2322,1.110608,0,252.4715,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082788,0.037,0.0058,0.834816,82.227408,10.623248,11.843228,173.05728,8.2408,0.110288,65.846184,0.3953,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.755,3511.082 -2323,1.107972,0,252.4883,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082792,0.037,0.0058,0.834844,82.230372,10.623632,11.843652,173.06352,8.2411,0.110292,65.848556,0.3953,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.762,3511.082 -2324,1.105336,0,252.5051,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082796,0.037,0.0058,0.834872,82.233336,10.624016,11.844076,173.06976,8.2414,0.110296,65.850928,0.3953,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.77,3511.082 -2325,1.1027,0,252.5219,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.8349,82.2363,10.6244,11.8445,173.076,8.2417,0.1103,65.8533,0.3953,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.777,3511.082 -2326,1.100632,0,252.53715,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834924,82.238992,10.624748,11.844888,173.08167,8.241968,0.110304,65.85546,0.3953,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.784,3511.082 -2327,1.098564,0,252.5524,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834948,82.241684,10.625096,11.845276,173.08734,8.242236,0.110308,65.85762,0.3953,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.791,3511.082 -2328,1.096496,0,252.56766,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834972,82.244376,10.625444,11.845664,173.093,8.242504,0.110312,65.85978,0.3953,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.798,3511.082 -2329,1.094428,0,252.58291,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834996,82.247068,10.625792,11.846052,173.09867,8.242772,0.110316,65.86194,0.3953,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.806,3511.082 -2330,1.09236,0,252.59816,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83502,82.24976,10.62614,11.84644,173.10434,8.24304,0.11032,65.8641,0.3953,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.813,3511.082 -2331,1.090292,0,252.61341,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835044,82.252452,10.626488,11.846828,173.11001,8.243308,0.110324,65.86626,0.3953,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.82,3511.082 -2332,1.088224,0,252.62866,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835068,82.255144,10.626836,11.847216,173.11568,8.243576,0.110328,65.86842,0.3953,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.827,3511.082 -2333,1.086156,0,252.64392,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835092,82.257836,10.627184,11.847604,173.12134,8.243844,0.110332,65.87058,0.3953,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.834,3511.082 -2334,1.084088,0,252.65917,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835116,82.260528,10.627532,11.847992,173.12701,8.244112,0.110336,65.87274,0.3953,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.841,3511.082 -2335,1.08202,0,252.67442,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83514,82.26322,10.62788,11.84838,173.13268,8.24438,0.11034,65.8749,0.3953,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.848,3511.082 -2336,1.079952,0,252.68967,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835164,82.265912,10.628228,11.848768,173.13835,8.244648,0.110344,65.87706,0.3953,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.855,3511.082 -2337,1.077884,0,252.70492,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835188,82.268604,10.628576,11.849156,173.14402,8.244916,0.110348,65.87922,0.3953,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.862,3511.082 -2338,1.075816,0,252.72018,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835212,82.271296,10.628924,11.849544,173.14968,8.245184,0.110352,65.88138,0.3953,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.869,3511.082 -2339,1.073748,0,252.73543,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835236,82.273988,10.629272,11.849932,173.15535,8.245452,0.110356,65.88354,0.3953,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.876,3511.082 -2340,1.07168,0,252.75068,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83526,82.27668,10.62962,11.85032,173.16102,8.24572,0.11036,65.8857,0.3953,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.883,3511.082 -2341,1.069612,0,252.76593,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835284,82.279372,10.629968,11.850708,173.16669,8.245988,0.110364,65.88786,0.3953,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.89,3511.082 -2342,1.067544,0,252.78118,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835308,82.282064,10.630316,11.851096,173.17236,8.246256,0.110368,65.89002,0.3953,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.896,3511.082 -2343,1.065476,0,252.79644,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835332,82.284756,10.630664,11.851484,173.17802,8.246524,0.110372,65.89218,0.3953,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.903,3511.082 -2344,1.063408,0,252.81169,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835356,82.287448,10.631012,11.851872,173.18369,8.246792,0.110376,65.89434,0.3953,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.91,3511.082 -2345,1.06134,0,252.82694,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83538,82.29014,10.63136,11.85226,173.18936,8.24706,0.11038,65.8965,0.3953,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.917,3511.082 -2346,1.059272,0,252.84219,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835404,82.292832,10.631708,11.852648,173.19503,8.247328,0.110384,65.89866,0.3953,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.924,3511.082 -2347,1.057204,0,252.85744,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835428,82.295524,10.632056,11.853036,173.2007,8.247596,0.110388,65.90082,0.3953,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.93,3511.082 -2348,1.055136,0,252.8727,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835452,82.298216,10.632404,11.853424,173.20636,8.247864,0.110392,65.90298,0.3953,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.937,3511.082 -2349,1.053068,0,252.88795,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835476,82.300908,10.632752,11.853812,173.21203,8.248132,0.110396,65.90514,0.3953,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.944,3511.082 -2350,1.051,0,252.9032,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.8355,82.3036,10.6331,11.8542,173.2177,8.2484,0.1104,65.9073,0.3953,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.951,3511.082 -2351,1.049292,0,252.91716,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082804,0.037,0.0058,0.835528,82.306068,10.633424,11.85456,173.22289,8.248644,0.110408,65.909276,0.3953,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.957,3511.082 -2352,1.047584,0,252.93113,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082808,0.037,0.0058,0.835556,82.308536,10.633748,11.85492,173.22808,8.248888,0.110416,65.911252,0.3953,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.964,3511.082 -2353,1.045876,0,252.94509,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082812,0.037,0.0058,0.835584,82.311004,10.634072,11.85528,173.23328,8.249132,0.110424,65.913228,0.3953,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.97,3511.082 -2354,1.044168,0,252.95906,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082816,0.037,0.0058,0.835612,82.313472,10.634396,11.85564,173.23847,8.249376,0.110432,65.915204,0.3953,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.977,3511.082 -2355,1.04246,0,252.97302,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08282,0.037,0.0058,0.83564,82.31594,10.63472,11.856,173.24366,8.24962,0.11044,65.91718,0.3953,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.984,3511.082 -2356,1.040752,0,252.98698,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082824,0.037,0.0058,0.835668,82.318408,10.635044,11.85636,173.24885,8.249864,0.110448,65.919156,0.3953,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.99,3511.082 -2357,1.039044,0,253.00095,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082828,0.037,0.0058,0.835696,82.320876,10.635368,11.85672,173.25404,8.250108,0.110456,65.921132,0.3953,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.997,3511.082 -2358,1.037336,0,253.01491,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082832,0.037,0.0058,0.835724,82.323344,10.635692,11.85708,173.25924,8.250352,0.110464,65.923108,0.3953,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.003,3511.082 -2359,1.035628,0,253.02888,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082836,0.037,0.0058,0.835752,82.325812,10.636016,11.85744,173.26443,8.250596,0.110472,65.925084,0.3953,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.01,3511.082 -2360,1.03392,0,253.04284,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08284,0.037,0.0058,0.83578,82.32828,10.63634,11.8578,173.26962,8.25084,0.11048,65.92706,0.3953,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.016,3511.082 -2361,1.032212,0,253.0568,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082844,0.037,0.0058,0.835808,82.330748,10.636664,11.85816,173.27481,8.251084,0.110488,65.929036,0.3953,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.023,3511.082 -2362,1.030504,0,253.07077,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082848,0.037,0.0058,0.835836,82.333216,10.636988,11.85852,173.28,8.251328,0.110496,65.931012,0.3953,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.029,3511.082 -2363,1.028796,0,253.08473,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082852,0.037,0.0058,0.835864,82.335684,10.637312,11.85888,173.2852,8.251572,0.110504,65.932988,0.3953,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.035,3511.082 -2364,1.027088,0,253.0987,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082856,0.037,0.0058,0.835892,82.338152,10.637636,11.85924,173.29039,8.251816,0.110512,65.934964,0.3953,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.042,3511.082 -2365,1.02538,0,253.11266,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08286,0.037,0.0058,0.83592,82.34062,10.63796,11.8596,173.29558,8.25206,0.11052,65.93694,0.3953,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.048,3511.082 -2366,1.023672,0,253.12662,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082864,0.037,0.0058,0.835948,82.343088,10.638284,11.85996,173.30077,8.252304,0.110528,65.938916,0.3953,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.055,3511.082 -2367,1.021964,0,253.14059,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082868,0.037,0.0058,0.835976,82.345556,10.638608,11.86032,173.30596,8.252548,0.110536,65.940892,0.3953,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.061,3511.082 -2368,1.020256,0,253.15455,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082872,0.037,0.0058,0.836004,82.348024,10.638932,11.86068,173.31116,8.252792,0.110544,65.942868,0.3953,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.067,3511.082 -2369,1.018548,0,253.16852,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082876,0.037,0.0058,0.836032,82.350492,10.639256,11.86104,173.31635,8.253036,0.110552,65.944844,0.3953,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.073,3511.082 -2370,1.01684,0,253.18248,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08288,0.037,0.0058,0.83606,82.35296,10.63958,11.8614,173.32154,8.25328,0.11056,65.94682,0.3953,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.08,3511.082 -2371,1.015132,0,253.19644,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082884,0.037,0.0058,0.836088,82.355428,10.639904,11.86176,173.32673,8.253524,0.110568,65.948796,0.3953,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.086,3511.082 -2372,1.013424,0,253.21041,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082888,0.037,0.0058,0.836116,82.357896,10.640228,11.86212,173.33192,8.253768,0.110576,65.950772,0.3953,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.092,3511.082 -2373,1.011716,0,253.22437,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082892,0.037,0.0058,0.836144,82.360364,10.640552,11.86248,173.33712,8.254012,0.110584,65.952748,0.3953,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.098,3511.082 -2374,1.010008,0,253.23834,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082896,0.037,0.0058,0.836172,82.362832,10.640876,11.86284,173.34231,8.254256,0.110592,65.954724,0.3953,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.105,3511.082 -2375,1.0083,0,253.2523,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0829,0.037,0.0058,0.8362,82.3653,10.6412,11.8632,173.3475,8.2545,0.1106,65.9567,0.3953,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.111,3511.082 -2376,1.006816,0,253.26518,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082904,0.037,0.0058,0.836224,82.36758,10.641492,11.863528,173.35229,8.254732,0.1106,65.95852,0.3953,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.117,3511.082 -2377,1.005332,0,253.27805,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082908,0.037,0.0058,0.836248,82.36986,10.641784,11.863856,173.35708,8.254964,0.1106,65.96034,0.3953,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.123,3511.082 -2378,1.003848,0,253.29093,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082912,0.037,0.0058,0.836272,82.37214,10.642076,11.864184,173.36186,8.255196,0.1106,65.96216,0.3953,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.129,3511.082 -2379,1.002364,0,253.3038,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082916,0.037,0.0058,0.836296,82.37442,10.642368,11.864512,173.36665,8.255428,0.1106,65.96398,0.3953,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.135,3511.082 -2380,1.00088,0,253.31668,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08292,0.037,0.0058,0.83632,82.3767,10.64266,11.86484,173.37144,8.25566,0.1106,65.9658,0.3953,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.141,3511.082 -2381,0.999396,0,253.32956,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082924,0.037,0.0058,0.836344,82.37898,10.642952,11.865168,173.37623,8.255892,0.1106,65.96762,0.3953,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.148,3511.082 -2382,0.997912,0,253.34243,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082928,0.037,0.0058,0.836368,82.38126,10.643244,11.865496,173.38102,8.256124,0.1106,65.96944,0.3953,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.154,3511.082 -2383,0.996428,0,253.35531,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082932,0.037,0.0058,0.836392,82.38354,10.643536,11.865824,173.3858,8.256356,0.1106,65.97126,0.3953,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.16,3511.082 -2384,0.994944,0,253.36818,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082936,0.037,0.0058,0.836416,82.38582,10.643828,11.866152,173.39059,8.256588,0.1106,65.97308,0.3953,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.166,3511.082 -2385,0.99346,0,253.38106,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08294,0.037,0.0058,0.83644,82.3881,10.64412,11.86648,173.39538,8.25682,0.1106,65.9749,0.3953,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.172,3511.082 -2386,0.991976,0,253.39394,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082944,0.037,0.0058,0.836464,82.39038,10.644412,11.866808,173.40017,8.257052,0.1106,65.97672,0.3953,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.178,3511.082 -2387,0.990492,0,253.40681,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082948,0.037,0.0058,0.836488,82.39266,10.644704,11.867136,173.40496,8.257284,0.1106,65.97854,0.3953,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.184,3511.082 -2388,0.989008,0,253.41969,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082952,0.037,0.0058,0.836512,82.39494,10.644996,11.867464,173.40974,8.257516,0.1106,65.98036,0.3953,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.19,3511.082 -2389,0.987524,0,253.43256,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082956,0.037,0.0058,0.836536,82.39722,10.645288,11.867792,173.41453,8.257748,0.1106,65.98218,0.3953,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.195,3511.082 -2390,0.98604,0,253.44544,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08296,0.037,0.0058,0.83656,82.3995,10.64558,11.86812,173.41932,8.25798,0.1106,65.984,0.3953,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.201,3511.082 -2391,0.984556,0,253.45832,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082964,0.037,0.0058,0.836584,82.40178,10.645872,11.868448,173.42411,8.258212,0.1106,65.98582,0.3953,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.207,3511.082 -2392,0.983072,0,253.47119,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082968,0.037,0.0058,0.836608,82.40406,10.646164,11.868776,173.4289,8.258444,0.1106,65.98764,0.3953,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.213,3511.082 -2393,0.981588,0,253.48407,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082972,0.037,0.0058,0.836632,82.40634,10.646456,11.869104,173.43368,8.258676,0.1106,65.98946,0.3953,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.219,3511.082 -2394,0.980104,0,253.49694,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082976,0.037,0.0058,0.836656,82.40862,10.646748,11.869432,173.43847,8.258908,0.1106,65.99128,0.3953,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.225,3511.082 -2395,0.97862,0,253.50982,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08298,0.037,0.0058,0.83668,82.4109,10.64704,11.86976,173.44326,8.25914,0.1106,65.9931,0.3953,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.231,3511.082 -2396,0.977136,0,253.5227,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082984,0.037,0.0058,0.836704,82.41318,10.647332,11.870088,173.44805,8.259372,0.1106,65.99492,0.3953,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.237,3511.082 -2397,0.975652,0,253.53557,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082988,0.037,0.0058,0.836728,82.41546,10.647624,11.870416,173.45284,8.259604,0.1106,65.99674,0.3953,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.242,3511.082 -2398,0.974168,0,253.54845,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082992,0.037,0.0058,0.836752,82.41774,10.647916,11.870744,173.45762,8.259836,0.1106,65.99856,0.3953,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.248,3511.082 -2399,0.972684,0,253.56132,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082996,0.037,0.0058,0.836776,82.42002,10.648208,11.871072,173.46241,8.260068,0.1106,66.00038,0.3953,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.254,3511.082 -2400,0.9712,0,253.5742,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.8368,82.4223,10.6485,11.8714,173.4672,8.2603,0.1106,66.0022,0.3953,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.26,3511.082 -2401,0.969888,0,253.58614,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836828,82.4244,10.648772,11.871708,173.47163,8.260512,0.1106,66.003884,0.3953,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.265,3511.082 -2402,0.968576,0,253.59809,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836856,82.4265,10.649044,11.872016,173.47606,8.260724,0.1106,66.005568,0.3953,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.271,3511.082 -2403,0.967264,0,253.61003,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836884,82.4286,10.649316,11.872324,173.4805,8.260936,0.1106,66.007252,0.3953,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.277,3511.082 -2404,0.965952,0,253.62198,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836912,82.4307,10.649588,11.872632,173.48493,8.261148,0.1106,66.008936,0.3953,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.282,3511.082 -2405,0.96464,0,253.63392,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83694,82.4328,10.64986,11.87294,173.48936,8.26136,0.1106,66.01062,0.3953,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.288,3511.082 -2406,0.963328,0,253.64586,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836968,82.4349,10.650132,11.873248,173.49379,8.261572,0.1106,66.012304,0.3953,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.294,3511.082 -2407,0.962016,0,253.65781,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836996,82.437,10.650404,11.873556,173.49822,8.261784,0.1106,66.013988,0.3953,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.299,3511.082 -2408,0.960704,0,253.66975,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837024,82.4391,10.650676,11.873864,173.50266,8.261996,0.1106,66.015672,0.3953,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.305,3511.082 -2409,0.959392,0,253.6817,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837052,82.4412,10.650948,11.874172,173.50709,8.262208,0.1106,66.017356,0.3953,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.311,3511.082 -2410,0.95808,0,253.69364,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83708,82.4433,10.65122,11.87448,173.51152,8.26242,0.1106,66.01904,0.3953,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.316,3511.082 -2411,0.956768,0,253.70558,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837108,82.4454,10.651492,11.874788,173.51595,8.262632,0.1106,66.020724,0.3953,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.322,3511.082 -2412,0.955456,0,253.71753,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837136,82.4475,10.651764,11.875096,173.52038,8.262844,0.1106,66.022408,0.3953,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.327,3511.082 -2413,0.954144,0,253.72947,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837164,82.4496,10.652036,11.875404,173.52482,8.263056,0.1106,66.024092,0.3953,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.333,3511.082 -2414,0.952832,0,253.74142,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837192,82.4517,10.652308,11.875712,173.52925,8.263268,0.1106,66.025776,0.3953,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.338,3511.082 -2415,0.95152,0,253.75336,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83722,82.4538,10.65258,11.87602,173.53368,8.26348,0.1106,66.02746,0.3953,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.344,3511.082 -2416,0.950208,0,253.7653,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837248,82.4559,10.652852,11.876328,173.53811,8.263692,0.1106,66.029144,0.3953,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.349,3511.082 -2417,0.948896,0,253.77725,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837276,82.458,10.653124,11.876636,173.54254,8.263904,0.1106,66.030828,0.3953,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.355,3511.082 -2418,0.947584,0,253.78919,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837304,82.4601,10.653396,11.876944,173.54698,8.264116,0.1106,66.032512,0.3953,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.36,3511.082 -2419,0.946272,0,253.80114,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837332,82.4622,10.653668,11.877252,173.55141,8.264328,0.1106,66.034196,0.3953,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.366,3511.082 -2420,0.94496,0,253.81308,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83736,82.4643,10.65394,11.87756,173.55584,8.26454,0.1106,66.03588,0.3953,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.371,3511.082 -2421,0.943648,0,253.82502,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837388,82.4664,10.654212,11.877868,173.56027,8.264752,0.1106,66.037564,0.3953,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.377,3511.082 -2422,0.942336,0,253.83697,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837416,82.4685,10.654484,11.878176,173.5647,8.264964,0.1106,66.039248,0.3953,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.382,3511.082 -2423,0.941024,0,253.84891,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837444,82.4706,10.654756,11.878484,173.56914,8.265176,0.1106,66.040932,0.3953,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.388,3511.082 -2424,0.939712,0,253.86086,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837472,82.4727,10.655028,11.878792,173.57357,8.265388,0.1106,66.042616,0.3953,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.393,3511.082 -2425,0.9384,0,253.8728,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.8375,82.4748,10.6553,11.8791,173.578,8.2656,0.1106,66.0443,0.3953,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.398,3511.082 -2426,0.937196,0,253.88393,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083004,0.037,0.0058,0.83752,82.476768,10.655556,11.879376,173.58214,8.265796,0.110608,66.045876,0.3953,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.404,3511.082 -2427,0.935992,0,253.89506,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083008,0.037,0.0058,0.83754,82.478736,10.655812,11.879652,173.58627,8.265992,0.110616,66.047452,0.3953,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.409,3511.082 -2428,0.934788,0,253.90618,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083012,0.037,0.0058,0.83756,82.480704,10.656068,11.879928,173.59041,8.266188,0.110624,66.049028,0.3953,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.414,3511.082 -2429,0.933584,0,253.91731,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083016,0.037,0.0058,0.83758,82.482672,10.656324,11.880204,173.59454,8.266384,0.110632,66.050604,0.3953,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.42,3511.082 -2430,0.93238,0,253.92844,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08302,0.037,0.0058,0.8376,82.48464,10.65658,11.88048,173.59868,8.26658,0.11064,66.05218,0.3953,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.425,3511.082 -2431,0.931176,0,253.93957,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083024,0.037,0.0058,0.83762,82.486608,10.656836,11.880756,173.60282,8.266776,0.110648,66.053756,0.3953,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.43,3511.082 -2432,0.929972,0,253.9507,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083028,0.037,0.0058,0.83764,82.488576,10.657092,11.881032,173.60695,8.266972,0.110656,66.055332,0.3953,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.436,3511.082 -2433,0.928768,0,253.96182,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083032,0.037,0.0058,0.83766,82.490544,10.657348,11.881308,173.61109,8.267168,0.110664,66.056908,0.3953,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.441,3511.082 -2434,0.927564,0,253.97295,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083036,0.037,0.0058,0.83768,82.492512,10.657604,11.881584,173.61522,8.267364,0.110672,66.058484,0.3953,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.446,3511.082 -2435,0.92636,0,253.98408,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08304,0.037,0.0058,0.8377,82.49448,10.65786,11.88186,173.61936,8.26756,0.11068,66.06006,0.3953,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.451,3511.082 -2436,0.925156,0,253.99521,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083044,0.037,0.0058,0.83772,82.496448,10.658116,11.882136,173.6235,8.267756,0.110688,66.061636,0.3953,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.457,3511.082 -2437,0.923952,0,254.00634,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083048,0.037,0.0058,0.83774,82.498416,10.658372,11.882412,173.62763,8.267952,0.110696,66.063212,0.3953,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.462,3511.082 -2438,0.922748,0,254.01746,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083052,0.037,0.0058,0.83776,82.500384,10.658628,11.882688,173.63177,8.268148,0.110704,66.064788,0.3953,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.467,3511.082 -2439,0.921544,0,254.02859,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083056,0.037,0.0058,0.83778,82.502352,10.658884,11.882964,173.6359,8.268344,0.110712,66.066364,0.3953,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.472,3511.082 -2440,0.92034,0,254.03972,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08306,0.037,0.0058,0.8378,82.50432,10.65914,11.88324,173.64004,8.26854,0.11072,66.06794,0.3953,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.477,3511.082 -2441,0.919136,0,254.05085,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083064,0.037,0.0058,0.83782,82.506288,10.659396,11.883516,173.64418,8.268736,0.110728,66.069516,0.3953,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.482,3511.082 -2442,0.917932,0,254.06198,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083068,0.037,0.0058,0.83784,82.508256,10.659652,11.883792,173.64831,8.268932,0.110736,66.071092,0.3953,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.488,3511.082 -2443,0.916728,0,254.0731,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083072,0.037,0.0058,0.83786,82.510224,10.659908,11.884068,173.65245,8.269128,0.110744,66.072668,0.3953,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.493,3511.082 -2444,0.915524,0,254.08423,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083076,0.037,0.0058,0.83788,82.512192,10.660164,11.884344,173.65658,8.269324,0.110752,66.074244,0.3953,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.498,3511.082 -2445,0.91432,0,254.09536,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08308,0.037,0.0058,0.8379,82.51416,10.66042,11.88462,173.66072,8.26952,0.11076,66.07582,0.3953,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.503,3511.082 -2446,0.913116,0,254.10649,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083084,0.037,0.0058,0.83792,82.516128,10.660676,11.884896,173.66486,8.269716,0.110768,66.077396,0.3953,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.508,3511.082 -2447,0.911912,0,254.11762,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083088,0.037,0.0058,0.83794,82.518096,10.660932,11.885172,173.66899,8.269912,0.110776,66.078972,0.3953,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.513,3511.082 -2448,0.910708,0,254.12874,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083092,0.037,0.0058,0.83796,82.520064,10.661188,11.885448,173.67313,8.270108,0.110784,66.080548,0.3953,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.518,3511.082 -2449,0.909504,0,254.13987,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083096,0.037,0.0058,0.83798,82.522032,10.661444,11.885724,173.67726,8.270304,0.110792,66.082124,0.3953,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.523,3511.082 -2450,0.9083,0,254.151,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838,82.524,10.6617,11.886,173.6814,8.2705,0.1108,66.0837,0.3953,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.528,3511.082 -2451,0.907176,0,254.16141,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838016,82.525844,10.66194,11.886264,173.68527,8.270684,0.1108,66.085172,0.3953,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.533,3511.082 -2452,0.906052,0,254.17182,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838032,82.527688,10.66218,11.886528,173.68914,8.270868,0.1108,66.086644,0.3953,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.538,3511.082 -2453,0.904928,0,254.18224,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838048,82.529532,10.66242,11.886792,173.69302,8.271052,0.1108,66.088116,0.3953,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.543,3511.082 -2454,0.903804,0,254.19265,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838064,82.531376,10.66266,11.887056,173.69689,8.271236,0.1108,66.089588,0.3953,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.548,3511.082 -2455,0.90268,0,254.20306,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83808,82.53322,10.6629,11.88732,173.70076,8.27142,0.1108,66.09106,0.3953,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.553,3511.082 -2456,0.901556,0,254.21347,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838096,82.535064,10.66314,11.887584,173.70463,8.271604,0.1108,66.092532,0.3953,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.558,3511.082 -2457,0.900432,0,254.22388,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838112,82.536908,10.66338,11.887848,173.7085,8.271788,0.1108,66.094004,0.3953,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.563,3511.082 -2458,0.899308,0,254.2343,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838128,82.538752,10.66362,11.888112,173.71238,8.271972,0.1108,66.095476,0.3953,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.568,3511.082 -2459,0.898184,0,254.24471,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838144,82.540596,10.66386,11.888376,173.71625,8.272156,0.1108,66.096948,0.3953,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.573,3511.082 -2460,0.89706,0,254.25512,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83816,82.54244,10.6641,11.88864,173.72012,8.27234,0.1108,66.09842,0.3953,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.578,3511.082 -2461,0.895936,0,254.26553,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838176,82.544284,10.66434,11.888904,173.72399,8.272524,0.1108,66.099892,0.3953,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.583,3511.082 -2462,0.894812,0,254.27594,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838192,82.546128,10.66458,11.889168,173.72786,8.272708,0.1108,66.101364,0.3953,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.588,3511.082 -2463,0.893688,0,254.28636,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838208,82.547972,10.66482,11.889432,173.73174,8.272892,0.1108,66.102836,0.3953,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.593,3511.082 -2464,0.892564,0,254.29677,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838224,82.549816,10.66506,11.889696,173.73561,8.273076,0.1108,66.104308,0.3953,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.597,3511.082 -2465,0.89144,0,254.30718,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83824,82.55166,10.6653,11.88996,173.73948,8.27326,0.1108,66.10578,0.3953,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.602,3511.082 -2466,0.890316,0,254.31759,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838256,82.553504,10.66554,11.890224,173.74335,8.273444,0.1108,66.107252,0.3953,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.607,3511.082 -2467,0.889192,0,254.328,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838272,82.555348,10.66578,11.890488,173.74722,8.273628,0.1108,66.108724,0.3953,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.612,3511.082 -2468,0.888068,0,254.33842,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838288,82.557192,10.66602,11.890752,173.7511,8.273812,0.1108,66.110196,0.3953,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.617,3511.082 -2469,0.886944,0,254.34883,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838304,82.559036,10.66626,11.891016,173.75497,8.273996,0.1108,66.111668,0.3953,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.622,3511.082 -2470,0.88582,0,254.35924,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83832,82.56088,10.6665,11.89128,173.75884,8.27418,0.1108,66.11314,0.3953,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.626,3511.082 -2471,0.884696,0,254.36965,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838336,82.562724,10.66674,11.891544,173.76271,8.274364,0.1108,66.114612,0.3953,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.631,3511.082 -2472,0.883572,0,254.38006,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838352,82.564568,10.66698,11.891808,173.76658,8.274548,0.1108,66.116084,0.3953,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.636,3511.082 -2473,0.882448,0,254.39048,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838368,82.566412,10.66722,11.892072,173.77046,8.274732,0.1108,66.117556,0.3953,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.641,3511.082 -2474,0.881324,0,254.40089,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838384,82.568256,10.66746,11.892336,173.77433,8.274916,0.1108,66.119028,0.3953,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.645,3511.082 -2475,0.8802,0,254.4113,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.8384,82.5701,10.6677,11.8926,173.7782,8.2751,0.1108,66.1205,0.3953,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.65,3511.082 -2476,0.879152,0,254.42108,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838416,82.57182,10.667916,11.892848,173.78183,8.275276,0.1108,66.121884,0.3953,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.655,3511.082 -2477,0.878104,0,254.43087,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838432,82.57354,10.668132,11.893096,173.78546,8.275452,0.1108,66.123268,0.3953,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.66,3511.082 -2478,0.877056,0,254.44065,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838448,82.57526,10.668348,11.893344,173.7891,8.275628,0.1108,66.124652,0.3953,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.664,3511.082 -2479,0.876008,0,254.45044,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838464,82.57698,10.668564,11.893592,173.79273,8.275804,0.1108,66.126036,0.3953,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.669,3511.082 -2480,0.87496,0,254.46022,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83848,82.5787,10.66878,11.89384,173.79636,8.27598,0.1108,66.12742,0.3953,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.674,3511.082 -2481,0.873912,0,254.47,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838496,82.58042,10.668996,11.894088,173.79999,8.276156,0.1108,66.128804,0.3953,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.678,3511.082 -2482,0.872864,0,254.47979,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838512,82.58214,10.669212,11.894336,173.80362,8.276332,0.1108,66.130188,0.3953,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.683,3511.082 -2483,0.871816,0,254.48957,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838528,82.58386,10.669428,11.894584,173.80726,8.276508,0.1108,66.131572,0.3953,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.688,3511.082 -2484,0.870768,0,254.49936,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838544,82.58558,10.669644,11.894832,173.81089,8.276684,0.1108,66.132956,0.3953,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.692,3511.082 -2485,0.86972,0,254.50914,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83856,82.5873,10.66986,11.89508,173.81452,8.27686,0.1108,66.13434,0.3953,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.697,3511.082 -2486,0.868672,0,254.51892,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838576,82.58902,10.670076,11.895328,173.81815,8.277036,0.1108,66.135724,0.3953,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.702,3511.082 -2487,0.867624,0,254.52871,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838592,82.59074,10.670292,11.895576,173.82178,8.277212,0.1108,66.137108,0.3953,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.706,3511.082 -2488,0.866576,0,254.53849,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838608,82.59246,10.670508,11.895824,173.82542,8.277388,0.1108,66.138492,0.3953,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.711,3511.082 -2489,0.865528,0,254.54828,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838624,82.59418,10.670724,11.896072,173.82905,8.277564,0.1108,66.139876,0.3953,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.715,3511.082 -2490,0.86448,0,254.55806,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83864,82.5959,10.67094,11.89632,173.83268,8.27774,0.1108,66.14126,0.3953,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.72,3511.082 -2491,0.863432,0,254.56784,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838656,82.59762,10.671156,11.896568,173.83631,8.277916,0.1108,66.142644,0.3953,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.725,3511.082 -2492,0.862384,0,254.57763,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838672,82.59934,10.671372,11.896816,173.83994,8.278092,0.1108,66.144028,0.3953,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.729,3511.082 -2493,0.861336,0,254.58741,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838688,82.60106,10.671588,11.897064,173.84358,8.278268,0.1108,66.145412,0.3953,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.734,3511.082 -2494,0.860288,0,254.5972,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838704,82.60278,10.671804,11.897312,173.84721,8.278444,0.1108,66.146796,0.3953,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0,0.181,0,158.738,3511.082 -2495,0.85924,0,254.60698,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83872,82.6045,10.67202,11.89756,173.85084,8.27862,0.1108,66.14818,0.3953,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.743,3511.082 -2496,0.858192,0,254.61676,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838736,82.60622,10.672236,11.897808,173.85447,8.278796,0.1108,66.149564,0.3953,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.747,3511.082 -2497,0.857144,0,254.62655,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838752,82.60794,10.672452,11.898056,173.8581,8.278972,0.1108,66.150948,0.3953,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.752,3511.082 -2498,0.856096,0,254.63633,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838768,82.60966,10.672668,11.898304,173.86174,8.279148,0.1108,66.152332,0.3953,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.756,3511.082 -2499,0.855048,0,254.64612,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838784,82.61138,10.672884,11.898552,173.86537,8.279324,0.1108,66.153716,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082 -2500,0.854,0,254.6559,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.8388,82.6131,10.6731,11.8988,173.869,8.2795,0.1108,66.1551,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082 diff --git a/inst/shinyApp/www/input/emissions/RCP85_custom_template.csv b/inst/shinyApp/www/input/emissions/RCP85_custom_template.csv deleted file mode 100644 index bb91045..0000000 --- a/inst/shinyApp/www/input/emissions/RCP85_custom_template.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP 8.5 emissions,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,CF4_emissions,C2F6_emissions,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,1.6637375,0.23563239,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,1.7507764,0.24803412,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,1.8423953,0.26108852,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,1.9388369,0.27483004,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,2.0403528,0.28929476,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,2.1472124,0.30452082,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,2.2596977,0.32054821,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,2.3781004,0.33741917,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,2.5027381,0.35517808,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,2.6339328,0.37387169,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,2.7720335,0.39354912,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,2.9174066,0.41426223,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,3.0704314,0.39468287,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,3.2315097,0.37832187,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,3.4010636,0.3640764,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,3.579544,0.35194679,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,3.7674167,0.34193311,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,3.9651774,0.33403572,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,4.1733472,0.32825472,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,4.3924702,0.32459037,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,4.62313,0.32304286,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,4.865916,0.32361242,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,5.121479,0.32629927,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,5.3904959,0.3311036,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,5.6736692,0.33802563,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,5.9717491,0.34706557,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,6.2855162,0.35822365,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,6.6157969,0.37150001,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,6.9634615,0.38689499,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,7.3294266,0.40440867,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,7.7146508,0.42404135,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,8.1201607,0.4457932,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,8.5470132,0.46966444,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,14.984956,0.49565531,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,13.488099,0.52376596,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,13.488369,0.55399667,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,13.488639,0.58634761,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,13.488909,0.62081899,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,13.48918,0.65741104,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,13.489449,0.69612398,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,11.992564,0.73695798,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,13.489967,0.7799133,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,13.490244,0.82499011,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,13.490523,0.87218868,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,11.993645,0.9215092,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,13.49105,0.97295172,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,13.491328,1.0265167,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,11.994452,1.0822044,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,13.491857,1.1400146,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,11.994981,1.1999481,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,13.492387,1.2620043,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,11.995499,1.3261846,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,13.492893,1.392488,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,11.996004,1.4609153,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,11.996242,1.5314669,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,11.99648,1.6041426,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,13.493874,1.678943,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,11.996986,1.7558675,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,11.997224,1.8349176,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,11.997462,1.9160924,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,11.997683,2.0735678,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,11.997905,2.3729101,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,11.998111,2.3731469,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,11.998354,2.3733837,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,11.998587,2.3736205,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,10.501674,2.3738573,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,11.999071,2.3740941,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,11.999322,2.3743309,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,11.999575,2.3745677,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,10.502692,2.3748045,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,150,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,12.0001,2.3749,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,11.925,2.4345,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,11.8481,2.4915,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,11.7693,2.5463,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,11.6885,2.599,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,11.6059,2.6494,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,1.92,0.314,168.841,3511.082 -2006,8.1615,1.165,322.1577,7.778,55414.3,1058.9366,215.6435,38.9081,8.2076,36.1912,11.4149,2.6001,10.5529,12.3831,3.8842,17.9373,121.0746,15.3186,6.2176,38.6318,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,1.834,0.279,167.857,3511.082 -2007,8.3523,1.1349,328.4342,7.8717,54111.7,1056.3789,215.8292,39.0226,8.1641,35.9908,11.2221,2.5502,10.2947,13.7731,4.5338,22.1104,129.6223,18.1628,7.5465,50.375,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,1.752,0.249,167.857,3511.082 -2008,8.5434,1.1045,334.75397,7.9653667,52814.733,1053.8833,216.0247,39.1394,8.1208667,35.7901,11.0262,2.4998333,10.037233,15.162767,5.1847667,26.273033,137.2526,20.954333,8.8781,62.118267,6.7489333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,1.675,0.221,167.857,3511.082 -2009,8.7345,1.0741,341.07373,8.0590333,51517.767,1051.3876,216.2202,39.2562,8.0776333,35.5894,10.8303,2.4494667,9.7797667,16.552433,5.8357333,30.435667,144.8829,23.745867,10.2097,73.861533,6.8965667,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,1.601,0.197,167.857,3511.082 -2010,8.9256,1.0437,347.3935,8.1527,50220.8,1048.892,216.4157,39.373,8.0344,35.3887,10.6344,2.3991,9.5223,17.9421,6.4867,34.5983,152.5132,26.5374,11.5413,85.6048,7.0442,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,1.521,0.175,167.857,3511.082 -2011,9.18679,1.02998,354.56076,8.29296,49968.5,1050.5457,217.31987,39.6333,7.99705,35.29844,10.74841,2.42213,8.68531,22.21208,6.56469,37.80811,163.76989,27.39032,10.50312,91.86659,7.1479,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,1.445,0.156,167.857,3511.082 -2012,9.44798,1.01626,361.72802,8.43322,49716.2,1052.1995,218.22404,39.8936,7.9597,35.20818,10.86242,2.44516,7.84832,26.48206,6.64268,41.01792,175.02658,28.24324,9.46494,98.12838,7.2516,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,1.373,0.139,167.857,3511.082 -2013,9.70917,1.00254,368.89528,8.57348,49463.9,1053.8532,219.12821,40.1539,7.92235,35.11792,10.97643,2.46819,7.01133,30.75204,6.72067,44.22773,186.28327,29.09616,8.42676,104.39017,7.3553,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,1.304,0.124,167.857,3511.082 -2014,9.97036,0.98882,376.06254,8.71374,49211.6,1055.507,220.03238,40.4142,7.885,35.02766,11.09044,2.49122,6.17434,35.02202,6.79866,47.43754,197.53996,29.94908,7.38858,110.65196,7.459,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,1.239,0.11,167.857,3511.082 -2015,10.23155,0.9751,383.2298,8.854,48959.3,1057.1607,220.93655,40.6745,7.84765,34.9374,11.20445,2.51425,5.33735,39.292,6.87665,50.64735,208.79665,30.802,6.3504,116.91375,7.5627,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,1.177,0.098,155.925,3511.082 -2016,10.49274,0.96138,390.39706,8.99426,48707,1058.8144,221.84072,40.9348,7.8103,34.84714,11.31846,2.53728,4.50036,43.56198,6.95464,53.85716,220.05334,31.65492,5.31222,123.17554,7.6664,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,1.118,0.087,155.925,3511.082 -2017,10.75393,0.94766,397.56432,9.13452,48454.7,1060.4682,222.74489,41.1951,7.77295,34.75688,11.43247,2.56031,3.66337,47.83196,7.03263,57.06697,231.31003,32.50784,4.27404,129.43733,7.7701,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,1.062,0.078,155.925,3511.082 -2018,11.01512,0.93394,404.73158,9.27478,48202.4,1062.1219,223.64906,41.4554,7.7356,34.66662,11.54648,2.58334,2.82638,52.10194,7.11062,60.27678,242.56672,33.36076,3.23586,135.69912,7.8738,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,1.009,0.069,155.925,3511.082 -2019,11.27631,0.92022,411.89884,9.41504,47950.1,1063.7757,224.55323,41.7157,7.69825,34.57636,11.66049,2.60637,1.98939,56.37192,7.18861,63.48659,253.82341,34.21368,2.19768,141.96091,7.9775,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0.959,0.061,155.925,3511.082 -2020,11.5375,0.9065,419.0661,9.5553,47697.8,1065.4294,225.4574,41.976,7.6609,34.4861,11.7745,2.6294,1.1524,60.6419,7.2666,66.6964,265.0801,35.0666,1.1595,148.2227,8.0812,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0.911,0.055,155.925,3511.082 -2021,11.76766,0.88735,425.58022,9.67767,47175.96,1060.7002,225.45703,41.9129,7.59914,34.34997,11.83853,2.64399,1.1063,61.78125,7.35248,67.92232,271.95969,35.3783,1.10411,152.77696,8.27191,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0.865,0.049,155.925,3511.082 -2022,11.99782,0.8682,432.09434,9.80004,46654.12,1055.971,225.45666,41.8498,7.53738,34.21384,11.90256,2.65858,1.0602,62.9206,7.43836,69.14824,278.83928,35.69,1.04872,157.33122,8.46262,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0.822,0.043,155.925,3511.082 -2023,12.22798,0.84905,438.60846,9.92241,46132.28,1051.2418,225.45629,41.7867,7.47562,34.07771,11.96659,2.67317,1.0141,64.05995,7.52424,70.37416,285.71887,36.0017,0.99333,161.88548,8.65333,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0.781,0.039,155.925,3511.082 -2024,12.45814,0.8299,445.12258,10.04478,45610.44,1046.5126,225.45592,41.7236,7.41386,33.94158,12.03062,2.68776,0.968,65.1993,7.61012,71.60008,292.59846,36.3134,0.93794,166.43974,8.84404,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0.742,0.034,155.925,3511.082 -2025,12.6883,0.81075,451.6367,10.16715,45088.6,1041.7833,225.45555,41.6605,7.3521,33.80545,12.09465,2.70235,0.9219,66.33865,7.696,72.826,299.47805,36.6251,0.88255,170.994,9.03475,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0.705,0.031,155.925,3511.082 -2026,12.91846,0.7916,458.15082,10.28952,44566.76,1037.0541,225.45518,41.5974,7.29034,33.66932,12.15868,2.71694,0.8758,67.478,7.78188,74.05192,306.35764,36.9368,0.82716,175.54826,9.22546,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0.669,0.027,155.925,3511.082 -2027,13.14862,0.77245,464.66494,10.41189,44044.92,1032.3249,225.45481,41.5343,7.22858,33.53319,12.22271,2.73153,0.8297,68.61735,7.86776,75.27784,313.23723,37.2485,0.77177,180.10252,9.41617,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0.636,0.024,155.925,3511.082 -2028,13.37878,0.7533,471.17906,10.53426,43523.08,1027.5957,225.45444,41.4712,7.16682,33.39706,12.28674,2.74612,0.7836,69.7567,7.95364,76.50376,320.11682,37.5602,0.71638,184.65678,9.60688,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0.604,0.022,155.925,3511.082 -2029,13.60894,0.73415,477.69318,10.65663,43001.24,1022.8665,225.45407,41.4081,7.10506,33.26093,12.35077,2.76071,0.7375,70.89605,8.03952,77.72968,326.99641,37.8719,0.66099,189.21104,9.79759,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0.574,0.019,155.925,3511.082 -2030,13.8391,0.715,484.2073,10.779,42479.4,1018.1373,225.4537,41.345,7.0433,33.1248,12.4148,2.7753,0.6914,72.0354,8.1254,78.9556,333.876,38.1836,0.6056,193.7653,9.9883,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0.545,0.017,155.925,3511.082 -2031,14.13385,0.708,493.52545,10.90391,41504.52,1011.8253,224.72621,40.90273,6.95231,32.96601,12.38727,2.77061,0.66362,72.90303,8.22403,81.08502,341.18468,38.94891,0.6214,192.50584,10.11551,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0.518,0.015,155.925,3511.082 -2032,14.4286,0.701,502.8436,11.02882,40529.64,1005.5133,223.99872,40.46046,6.86132,32.80722,12.35974,2.76592,0.63584,73.77066,8.32266,83.21444,348.49336,39.71422,0.6372,191.24638,10.24272,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0.492,0.013,155.925,3511.082 -2033,14.72335,0.694,512.16175,11.15373,39554.76,999.20136,223.27123,40.01819,6.77033,32.64843,12.33221,2.76123,0.60806,74.63829,8.42129,85.34386,355.80204,40.47953,0.653,189.98692,10.36993,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0.467,0.012,155.925,3511.082 -2034,15.0181,0.687,521.4799,11.27864,38579.88,992.88938,222.54374,39.57592,6.67934,32.48964,12.30468,2.75654,0.58028,75.50592,8.51992,87.47328,363.11072,41.24484,0.6688,188.72746,10.49714,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0.444,0.011,155.925,3511.082 -2035,15.31285,0.68,530.79805,11.40355,37605,986.5774,221.81625,39.13365,6.58835,32.33085,12.27715,2.75185,0.5525,76.37355,8.61855,89.6027,370.4194,42.01015,0.6846,187.468,10.62435,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0.422,0.01,155.925,3511.082 -2036,15.6076,0.673,540.1162,11.52846,36630.12,980.26542,221.08876,38.69138,6.49736,32.17206,12.24962,2.74716,0.52472,77.24118,8.71718,91.73212,377.72808,42.77546,0.7004,186.20854,10.75156,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0.401,0.008,155.925,3511.082 -2037,15.90235,0.666,549.43435,11.65337,35655.24,973.95344,220.36127,38.24911,6.40637,32.01327,12.22209,2.74247,0.49694,78.10881,8.81581,93.86154,385.03676,43.54077,0.7162,184.94908,10.87877,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0.381,0.008,155.925,3511.082 -2038,16.1971,0.659,558.7525,11.77828,34680.36,967.64146,219.63378,37.80684,6.31538,31.85448,12.19456,2.73778,0.46916,78.97644,8.91444,95.99096,392.34544,44.30608,0.732,183.68962,11.00598,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0.362,0.007,155.925,3511.082 -2039,16.49185,0.652,568.07065,11.90319,33705.48,961.32948,218.90629,37.36457,6.22439,31.69569,12.16703,2.73309,0.44138,79.84407,9.01307,98.12038,399.65412,45.07139,0.7478,182.43016,11.13319,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0.344,0.006,155.925,3511.082 -2040,16.7866,0.645,577.3888,12.0281,32730.6,955.0175,218.1788,36.9223,6.1334,31.5369,12.1395,2.7284,0.4136,80.7117,9.1117,100.2498,406.9628,45.8367,0.7636,181.1707,11.2604,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0.326,0.005,155.925,3511.082 -2041,17.1284,0.6381,587.33132,12.10488,32068.63,950.1349,217.20395,36.58085,6.08412,31.38737,12.17462,2.73746,0.39687,80.10127,9.23927,101.83831,412.75679,46.27373,0.71926,179.22469,11.3309,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0.31,0.005,155.925,3511.082 -2042,17.4702,0.6312,597.27384,12.18166,31406.66,945.2523,216.2291,36.2394,6.03484,31.23784,12.20974,2.74652,0.38014,79.49084,9.36684,103.42682,418.55078,46.71076,0.67492,177.27868,11.4014,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0.295,0.004,155.925,3511.082 -2043,17.812,0.6243,607.21636,12.25844,30744.69,940.3697,215.25425,35.89795,5.98556,31.08831,12.24486,2.75558,0.36341,78.88041,9.49441,105.01533,424.34477,47.14779,0.63058,175.33267,11.4719,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0.28,0.004,155.925,3511.082 -2044,18.1538,0.6174,617.15888,12.33522,30082.72,935.4871,214.2794,35.5565,5.93628,30.93878,12.27998,2.76464,0.34668,78.26998,9.62198,106.60384,430.13876,47.58482,0.58624,173.38666,11.5424,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0.266,0.003,155.925,3511.082 -2045,18.4956,0.6105,627.1014,12.412,29420.75,930.6045,213.30455,35.21505,5.887,30.78925,12.3151,2.7737,0.32995,77.65955,9.74955,108.19235,435.93275,48.02185,0.5419,171.44065,11.6129,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0.253,0.003,155.925,3511.082 -2046,18.8374,0.6036,637.04392,12.48878,28758.78,925.7219,212.3297,34.8736,5.83772,30.63972,12.35022,2.78276,0.31322,77.04912,9.87712,109.78086,441.72674,48.45888,0.49756,169.49464,11.6834,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0.24,0.003,155.925,3511.082 -2047,19.1792,0.5967,646.98644,12.56556,28096.81,920.8393,211.35485,34.53215,5.78844,30.49019,12.38534,2.79182,0.29649,76.43869,10.00469,111.36937,447.52073,48.89591,0.45322,167.54863,11.7539,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0.228,0.002,155.925,3511.082 -2048,19.521,0.5898,656.92896,12.64234,27434.84,915.9567,210.38,34.1907,5.73916,30.34066,12.42046,2.80088,0.27976,75.82826,10.13226,112.95788,453.31472,49.33294,0.40888,165.60262,11.8244,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0.217,0.002,155.925,3511.082 -2049,19.8628,0.5829,666.87148,12.71912,26772.87,911.0741,209.40515,33.84925,5.68988,30.19113,12.45558,2.80994,0.26303,75.21783,10.25983,114.54639,459.10871,49.76997,0.36454,163.65661,11.8949,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0.206,0.002,155.925,3511.082 -2050,20.2046,0.576,676.814,12.7959,26110.9,906.1915,208.4303,33.5078,5.6406,30.0416,12.4907,2.819,0.2463,74.6074,10.3874,116.1349,464.9027,50.207,0.3202,161.7106,11.9654,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0.195,0.002,155.925,3511.082 -2051,20.54375,0.5685,683.65001,12.85847,25770.37,899.68938,207.70767,33.32257,5.59518,29.87913,12.41897,2.80583,0.23542,75.55522,10.56431,117.32942,469.21826,50.42871,0.30297,160.45046,12.17483,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0.186,0.001,155.925,3511.082 -2052,20.8829,0.561,690.48602,12.92104,25429.84,893.18726,206.98504,33.13734,5.54976,29.71666,12.34724,2.79266,0.22454,76.50304,10.74122,118.52394,473.53382,50.65042,0.28574,159.19032,12.38426,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0.176,0.001,155.925,3511.082 -2053,21.22205,0.5535,697.32203,12.98361,25089.31,886.68514,206.26241,32.95211,5.50434,29.55419,12.27551,2.77949,0.21366,77.45086,10.91813,119.71846,477.84938,50.87213,0.26851,157.93018,12.59369,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0.168,0.001,155.925,3511.082 -2054,21.5612,0.546,704.15804,13.04618,24748.78,880.18302,205.53978,32.76688,5.45892,29.39172,12.20378,2.76632,0.20278,78.39868,11.09504,120.91298,482.16494,51.09384,0.25128,156.67004,12.80312,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0.159,0.001,155.925,3511.082 -2055,21.90035,0.5385,710.99405,13.10875,24408.25,873.6809,204.81715,32.58165,5.4135,29.22925,12.13205,2.75315,0.1919,79.3465,11.27195,122.1075,486.4805,51.31555,0.23405,155.4099,13.01255,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0.151,0.001,155.925,3511.082 -2056,22.2395,0.531,717.83006,13.17132,24067.72,867.17878,204.09452,32.39642,5.36808,29.06678,12.06032,2.73998,0.18102,80.29432,11.44886,123.30202,490.79606,51.53726,0.21682,154.14976,13.22198,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0.144,0.001,155.925,3511.082 -2057,22.57865,0.5235,724.66607,13.23389,23727.19,860.67666,203.37189,32.21119,5.32266,28.90431,11.98859,2.72681,0.17014,81.24214,11.62577,124.49654,495.11162,51.75897,0.19959,152.88962,13.43141,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0.136,0.001,155.925,3511.082 -2058,22.9178,0.516,731.50208,13.29646,23386.66,854.17454,202.64926,32.02596,5.27724,28.74184,11.91686,2.71364,0.15926,82.18996,11.80268,125.69106,499.42718,51.98068,0.18236,151.62948,13.64084,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0.13,0.001,155.925,3511.082 -2059,23.25695,0.5085,738.33809,13.35903,23046.13,847.67242,201.92663,31.84073,5.23182,28.57937,11.84513,2.70047,0.14838,83.13778,11.97959,126.88558,503.74274,52.20239,0.16513,150.36934,13.85027,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0.123,0.001,155.925,3511.082 -2060,23.5961,0.501,745.1741,13.4216,22705.6,841.1703,201.204,31.6555,5.1864,28.4169,11.7734,2.6873,0.1375,84.0856,12.1565,128.0801,508.0583,52.4241,0.1479,149.1092,14.0597,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0.117,0.001,155.925,3511.082 -2061,23.83271,0.4921,748.66794,13.47346,22441.48,836.60001,200.44051,31.50876,5.15328,28.30481,11.78015,2.69384,0.13105,85.06506,12.33644,129.34352,512.72379,52.64359,0.146,147.84735,14.00293,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0.111,0,155.925,3511.082 -2062,24.06932,0.4832,752.16178,13.52532,22177.36,832.02972,199.67702,31.36202,5.12016,28.19272,11.7869,2.70038,0.1246,86.04452,12.51638,130.60694,517.38928,52.86308,0.1441,146.5855,13.94616,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0.106,0,155.925,3511.082 -2063,24.30593,0.4743,755.65562,13.57718,21913.24,827.45943,198.91353,31.21528,5.08704,28.08063,11.79365,2.70692,0.11815,87.02398,12.69632,131.87036,522.05477,53.08257,0.1422,145.32365,13.88939,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0.1,0,155.925,3511.082 -2064,24.54254,0.4654,759.14946,13.62904,21649.12,822.88914,198.15004,31.06854,5.05392,27.96854,11.8004,2.71346,0.1117,88.00344,12.87626,133.13378,526.72026,53.30206,0.1403,144.0618,13.83262,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0.095,0,155.925,3511.082 -2065,24.77915,0.4565,762.6433,13.6809,21385,818.31885,197.38655,30.9218,5.0208,27.85645,11.80715,2.72,0.10525,88.9829,13.0562,134.3972,531.38575,53.52155,0.1384,142.79995,13.77585,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0.091,0,155.925,3511.082 -2066,25.01576,0.4476,766.13714,13.73276,21120.88,813.74856,196.62306,30.77506,4.98768,27.74436,11.8139,2.72654,0.0988,89.96236,13.23614,135.66062,536.05124,53.74104,0.1365,141.5381,13.71908,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0.086,0,155.925,3511.082 -2067,25.25237,0.4387,769.63098,13.78462,20856.76,809.17827,195.85957,30.62832,4.95456,27.63227,11.82065,2.73308,0.09235,90.94182,13.41608,136.92404,540.71673,53.96053,0.1346,140.27625,13.66231,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0.082,0,155.925,3511.082 -2068,25.48898,0.4298,773.12482,13.83648,20592.64,804.60798,195.09608,30.48158,4.92144,27.52018,11.8274,2.73962,0.0859,91.92128,13.59602,138.18746,545.38222,54.18002,0.1327,139.0144,13.60554,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0.078,0,155.925,3511.082 -2069,25.72559,0.4209,776.61866,13.88834,20328.52,800.03769,194.33259,30.33484,4.88832,27.40809,11.83415,2.74616,0.07945,92.90074,13.77596,139.45088,550.04771,54.39951,0.1308,137.75255,13.54877,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0.074,0,155.925,3511.082 -2070,25.9622,0.412,780.1125,13.9402,20064.4,795.4674,193.5691,30.1881,4.8552,27.296,11.8409,2.7527,0.073,93.8802,13.9559,140.7143,554.7132,54.619,0.1289,136.4907,13.492,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0.07,0,155.925,3511.082 -2071,26.10659,0.4017,784.24064,14.00204,19902.52,791.64666,193.07591,30.06564,4.83481,27.20364,11.8161,2.75174,0.06942,94.1193,14.18108,141.11548,559.74698,54.42783,0.12734,135.66527,13.63038,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0.067,0,155.925,3511.082 -2072,26.25098,0.3914,788.36878,14.06388,19740.64,787.82592,192.58272,29.94318,4.81442,27.11128,11.7913,2.75078,0.06584,94.3584,14.40626,141.51666,564.78076,54.23666,0.12578,134.83984,13.76876,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0.063,0,155.925,3511.082 -2073,26.39537,0.3811,792.49692,14.12572,19578.76,784.00518,192.08953,29.82072,4.79403,27.01892,11.7665,2.74982,0.06226,94.5975,14.63144,141.91784,569.81454,54.04549,0.12422,134.01441,13.90714,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0.06,0,155.925,3511.082 -2074,26.53976,0.3708,796.62506,14.18756,19416.88,780.18444,191.59634,29.69826,4.77364,26.92656,11.7417,2.74886,0.05868,94.8366,14.85662,142.31902,574.84832,53.85432,0.12266,133.18898,14.04552,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0.057,0,155.925,3511.082 -2075,26.68415,0.3605,800.7532,14.2494,19255,776.3637,191.10315,29.5758,4.75325,26.8342,11.7169,2.7479,0.0551,95.0757,15.0818,142.7202,579.8821,53.66315,0.1211,132.36355,14.1839,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0.054,0,155.925,3511.082 -2076,26.82854,0.3502,804.88134,14.31124,19093.12,772.54296,190.60996,29.45334,4.73286,26.74184,11.6921,2.74694,0.05152,95.3148,15.30698,143.12138,584.91588,53.47198,0.11954,131.53812,14.32228,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0.052,0,155.925,3511.082 -2077,26.97293,0.3399,809.00948,14.37308,18931.24,768.72222,190.11677,29.33088,4.71247,26.64948,11.6673,2.74598,0.04794,95.5539,15.53216,143.52256,589.94966,53.28081,0.11798,130.71269,14.46066,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0.049,0,155.925,3511.082 -2078,27.11732,0.3296,813.13762,14.43492,18769.36,764.90148,189.62358,29.20842,4.69208,26.55712,11.6425,2.74502,0.04436,95.793,15.75734,143.92374,594.98344,53.08964,0.11642,129.88726,14.59904,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0.046,0,155.925,3511.082 -2079,27.26171,0.3193,817.26576,14.49676,18607.48,761.08074,189.13039,29.08596,4.67169,26.46476,11.6177,2.74406,0.04078,96.0321,15.98252,144.32492,600.01722,52.89847,0.11486,129.06183,14.73742,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0.044,0,155.925,3511.082 -2080,27.4061,0.309,821.3939,14.5586,18445.6,757.26,188.6372,28.9635,4.6513,26.3724,11.5929,2.7431,0.0372,96.2712,16.2077,144.7261,605.051,52.7073,0.1133,128.2364,14.8758,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0.042,0,155.925,3511.082 -2081,27.49916,0.2975,826.32941,14.63201,18048.69,753.34328,187.89006,28.78615,4.62775,26.23123,11.54293,2.73607,0.03348,95.76444,16.48786,145.0082,609.85911,52.45431,0.11214,127.43725,14.99349,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0.04,0,155.925,3511.082 -2082,27.59222,0.286,831.26492,14.70542,17651.78,749.42656,187.14292,28.6088,4.6042,26.09006,11.49296,2.72904,0.02976,95.25768,16.76802,145.2903,614.66722,52.20132,0.11098,126.6381,15.11118,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0.038,0,155.925,3511.082 -2083,27.68528,0.2745,836.20043,14.77883,17254.87,745.50984,186.39578,28.43145,4.58065,25.94889,11.44299,2.72201,0.02604,94.75092,17.04818,145.5724,619.47533,51.94833,0.10982,125.83895,15.22887,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0.036,0,155.925,3511.082 -2084,27.77834,0.263,841.13594,14.85224,16857.96,741.59312,185.64864,28.2541,4.5571,25.80772,11.39302,2.71498,0.02232,94.24416,17.32834,145.8545,624.28344,51.69534,0.10866,125.0398,15.34656,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0.034,0,155.925,3511.082 -2085,27.8714,0.2515,846.07145,14.92565,16461.05,737.6764,184.9015,28.07675,4.53355,25.66655,11.34305,2.70795,0.0186,93.7374,17.6085,146.1366,629.09155,51.44235,0.1075,124.24065,15.46425,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0.032,0,155.925,3511.082 -2086,27.96446,0.24,851.00696,14.99906,16064.14,733.75968,184.15436,27.8994,4.51,25.52538,11.29308,2.70092,0.01488,93.23064,17.88866,146.4187,633.89966,51.18936,0.10634,123.4415,15.58194,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0.031,0,155.925,3511.082 -2087,28.05752,0.2285,855.94247,15.07247,15667.23,729.84296,183.40722,27.72205,4.48645,25.38421,11.24311,2.69389,0.01116,92.72388,18.16882,146.7008,638.70777,50.93637,0.10518,122.64235,15.69963,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0.029,0,155.925,3511.082 -2088,28.15058,0.217,860.87798,15.14588,15270.32,725.92624,182.66008,27.5447,4.4629,25.24304,11.19314,2.68686,0.00744,92.21712,18.44898,146.9829,643.51588,50.68338,0.10402,121.8432,15.81732,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0.028,0,155.925,3511.082 -2089,28.24364,0.2055,865.81349,15.21929,14873.41,722.00952,181.91294,27.36735,4.43935,25.10187,11.14317,2.67983,0.00372,91.71036,18.72914,147.265,648.32399,50.43039,0.10286,121.04405,15.93501,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0.026,0,155.925,3511.082 -2090,28.3367,0.194,870.749,15.2927,14476.5,718.0928,181.1658,27.19,4.4158,24.9607,11.0932,2.6728,0,91.2036,19.0093,147.5471,653.1321,50.1774,0.1017,120.2449,16.0527,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0.025,0,155.925,3511.082 -2091,28.37703,0.1823,872.43319,15.34099,14314.49,715.31184,180.67318,27.09516,4.39918,24.85535,11.06043,2.66808,0,90.20593,19.2916,147.62282,658.16476,49.84386,0.10064,121.40096,16.13966,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0.024,0,155.925,3511.082 -2092,28.41736,0.1706,874.11738,15.38928,14152.48,712.53088,180.18056,27.00032,4.38256,24.75,11.02766,2.66336,0,89.20826,19.5739,147.69854,663.19742,49.51032,0.09958,122.55702,16.22662,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0.023,0,155.925,3511.082 -2093,28.45769,0.1589,875.80157,15.43757,13990.47,709.74992,179.68794,26.90548,4.36594,24.64465,10.99489,2.65864,0,88.21059,19.8562,147.77426,668.23008,49.17678,0.09852,123.71308,16.31358,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0.022,0,155.925,3511.082 -2094,28.49802,0.1472,877.48576,15.48586,13828.46,706.96896,179.19532,26.81064,4.34932,24.5393,10.96212,2.65392,0,87.21292,20.1385,147.84998,673.26274,48.84324,0.09746,124.86914,16.40054,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0.02,0,155.925,3511.082 -2095,28.53835,0.1355,879.16995,15.53415,13666.45,704.188,178.7027,26.7158,4.3327,24.43395,10.92935,2.6492,0,86.21525,20.4208,147.9257,678.2954,48.5097,0.0964,126.0252,16.4875,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0.019,0,155.925,3511.082 -2096,28.57868,0.1238,880.85414,15.58244,13504.44,701.40704,178.21008,26.62096,4.31608,24.3286,10.89658,2.64448,0,85.21758,20.7031,148.00142,683.32806,48.17616,0.09534,127.18126,16.57446,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0.018,0,155.925,3511.082 -2097,28.61901,0.1121,882.53833,15.63073,13342.43,698.62608,177.71746,26.52612,4.29946,24.22325,10.86381,2.63976,0,84.21991,20.9854,148.07714,688.36072,47.84262,0.09428,128.33732,16.66142,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0.018,0,155.925,3511.082 -2098,28.65934,0.1004,884.22252,15.67902,13180.42,695.84512,177.22484,26.43128,4.28284,24.1179,10.83104,2.63504,0,83.22224,21.2677,148.15286,693.39338,47.50908,0.09322,129.49338,16.74838,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0.017,0,155.925,3511.082 -2099,28.69967,0.0887,885.90671,15.72731,13018.41,693.06416,176.73222,26.33644,4.26622,24.01255,10.79827,2.63032,0,82.22457,21.55,148.22858,698.42604,47.17554,0.09216,130.64944,16.83534,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0.016,0,155.925,3511.082 -2100,28.74,0.077,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0.015,0,155.925,3511.082 -2101,28.74,0.07392,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0.014,0,155.925,3511.082 -2102,28.74,0.07084,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0.014,0,155.925,3511.082 -2103,28.74,0.06776,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0.013,0,155.925,3511.082 -2104,28.74,0.06468,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0.012,0,155.925,3511.082 -2105,28.74,0.0616,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0.012,0,155.925,3511.082 -2106,28.74,0.05852,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0.011,0,155.925,3511.082 -2107,28.74,0.05544,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0.011,0,155.925,3511.082 -2108,28.74,0.05236,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0.01,0,155.925,3511.082 -2109,28.74,0.04928,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0.009,0,155.925,3511.082 -2110,28.74,0.0462,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0.009,0,155.925,3511.082 -2111,28.74,0.04312,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0.009,0,155.925,3511.082 -2112,28.74,0.04004,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0.008,0,155.925,3511.082 -2113,28.74,0.03696,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0.008,0,155.925,3511.082 -2114,28.74,0.03388,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0.007,0,155.925,3511.082 -2115,28.74,0.0308,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0.007,0,155.925,3511.082 -2116,28.74,0.02772,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0.007,0,155.925,3511.082 -2117,28.74,0.02464,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0.006,0,155.925,3511.082 -2118,28.74,0.02156,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0.006,0,155.925,3511.082 -2119,28.74,0.01848,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0.006,0,155.925,3511.082 -2120,28.74,0.0154,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0.005,0,155.925,3511.082 -2121,28.74,0.01232,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0.005,0,155.925,3511.082 -2122,28.74,0.00924,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0.005,0,155.925,3511.082 -2123,28.74,0.00616,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0.005,0,155.925,3511.082 -2124,28.74,0.00308,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0.004,0,155.925,3511.082 -2125,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0.004,0,155.925,3511.082 -2126,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0.004,0,155.925,3511.082 -2127,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0.004,0,155.925,3511.082 -2128,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0.004,0,155.925,3511.082 -2129,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0.003,0,155.925,3511.082 -2130,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0.003,0,155.925,3511.082 -2131,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0.003,0,155.925,3511.082 -2132,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0.003,0,155.925,3511.082 -2133,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0.003,0,155.925,3511.082 -2134,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0.003,0,155.925,3511.082 -2135,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0.002,0,155.925,3511.082 -2136,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0.002,0,155.925,3511.082 -2137,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0.002,0,155.925,3511.082 -2138,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0.002,0,155.925,3511.082 -2139,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0.002,0,155.925,3511.082 -2140,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0.002,0,155.925,3511.082 -2141,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0.002,0,155.925,3511.082 -2142,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0.002,0,155.925,3511.082 -2143,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0.002,0,155.925,3511.082 -2144,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0.002,0,155.925,3511.082 -2145,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0.001,0,155.925,3511.082 -2146,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0.001,0,155.925,3511.082 -2147,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0.001,0,155.925,3511.082 -2148,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0.001,0,155.925,3511.082 -2149,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.405,0,0,0,0,0,0,0,0.166,0.001,0,0.001,0,155.925,3511.082 -2150,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.392,0,0,0,0,0,0,0,0.157,0,0,0.001,0,155.925,3511.082 -2151,28.470205,0,887.7612,15.750727,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.656371,2.5994163,0.007146939,81.237246,21.837794,148.35837,703.62182,46.859673,0.091385714,131.82622,16.758923,0.379,0,0,0,0,0,0,0,0.15,0,0,0.001,0,155.925,3511.082 -2152,28.20041,0,887.93151,15.725853,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.547243,2.5732327,0.014293878,81.247592,21.843288,148.41245,703.78494,46.877347,0.091671429,131.84693,16.595547,0.366,0,0,0,0,0,0,0,0.142,0,0,0.001,0,155.925,3511.082 -2153,27.930615,0,888.10181,15.70098,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.438114,2.547049,0.021440816,81.257938,21.848782,148.46652,703.94806,46.89502,0.091957143,131.86765,16.43217,0.354,0,0,0,0,0,0,0,0.135,0,0,0.001,0,155.925,3511.082 -2154,27.66082,0,888.27211,15.676106,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.328986,2.5208653,0.028587755,81.268284,21.854276,148.5206,704.11118,46.912694,0.092242857,131.88837,16.268794,0.342,0,0,0,0,0,0,0,0.128,0,0,0.001,0,155.925,3511.082 -2155,27.391026,0,888.44242,15.651233,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.219857,2.4946816,0.035734694,81.27863,21.859769,148.57467,704.2743,46.930367,0.092528571,131.90908,16.105417,0.331,0,0,0,0,0,0,0,0.122,0,0,0.001,0,155.925,3511.082 -2156,27.121231,0,888.61272,15.626359,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.110729,2.468498,0.042881633,81.288976,21.865263,148.62875,704.43742,46.948041,0.092814286,131.9298,15.942041,0.32,0,0,0,0,0,0,0,0.116,0,0,0.001,0,155.925,3511.082 -2157,26.851436,0,888.78302,15.601486,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.0016,2.4423143,0.050028571,81.299321,21.870757,148.68282,704.60054,46.965714,0.0931,131.95051,15.778664,0.31,0,0,0,0,0,0,0,0.11,0,0,0.001,0,155.925,3511.082 -2158,26.581641,0,888.95332,15.576612,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.8924714,2.4161306,0.05717551,81.309667,21.876251,148.7369,704.76366,46.983388,0.093385714,131.97123,15.615288,0.299,0,0,0,0,0,0,0,0.104,0,0,0.001,0,155.925,3511.082 -2159,26.311846,0,889.12363,15.551739,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.7833429,2.3899469,0.064322449,81.320013,21.881745,148.79097,704.92678,47.001061,0.093671429,131.99195,15.451911,0.29,0,0,0,0,0,0,0,0.099,0,0,0.001,0,155.925,3511.082 -2160,26.042051,0,889.29393,15.526865,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.6742143,2.3637633,0.071469388,81.330359,21.887239,148.84504,705.0899,47.018735,0.093957143,132.01266,15.288535,0.28,0,0,0,0,0,0,0,0.094,0,0,0.001,0,155.925,3511.082 -2161,25.772256,0,889.46423,15.501992,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.5650857,2.3375796,0.078616327,81.340705,21.892733,148.89912,705.25302,47.036408,0.094242857,132.03338,15.125158,0.271,0,0,0,0,0,0,0,0.09,0,0,0.001,0,155.925,3511.082 -2162,25.502461,0,889.63454,15.477118,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.4559571,2.3113959,0.085763265,81.351051,21.898227,148.95319,705.41614,47.054082,0.094528571,132.0541,14.961782,0.262,0,0,0,0,0,0,0,0.085,0,0,0.001,0,155.925,3511.082 -2163,25.232666,0,889.80484,15.452245,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.3468286,2.2852122,0.092910204,81.361397,21.90372,149.00727,705.57927,47.071755,0.094814286,132.07481,14.798405,0.253,0,0,0,0,0,0,0,0.081,0,0,0.001,0,155.925,3511.082 -2164,24.962871,0,889.97514,15.427371,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.2377,2.2590286,0.10005714,81.371743,21.909214,149.06134,705.74239,47.089429,0.0951,132.09553,14.635029,0.245,0,0,0,0,0,0,0,0.077,0,0,0.001,0,155.925,3511.082 -2165,24.693077,0,890.14545,15.402498,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.1285714,2.2328449,0.10720408,81.382089,21.914708,149.11542,705.90551,47.107102,0.095385714,132.11624,14.471652,0.237,0,0,0,0,0,0,0,0.073,0,0,0.001,0,155.925,3511.082 -2166,24.423282,0,890.31575,15.377624,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.0194429,2.2066612,0.11435102,81.392435,21.920202,149.16949,706.06863,47.124776,0.095671429,132.13696,14.308276,0.229,0,0,0,0,0,0,0,0.069,0,0,0.001,0,155.925,3511.082 -2167,24.153487,0,890.48605,15.352751,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.9103143,2.1804776,0.12149796,81.402781,21.925696,149.22357,706.23175,47.142449,0.095957143,132.15768,14.144899,0.221,0,0,0,0,0,0,0,0.066,0,0,0,0,155.925,3511.082 -2168,23.883692,0,890.65636,15.327878,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.8011857,2.1542939,0.1286449,81.413127,21.93119,149.27764,706.39487,47.160122,0.096242857,132.17839,13.981522,0.214,0,0,0,0,0,0,0,0.063,0,0,0,0,155.925,3511.082 -2169,23.613897,0,890.82666,15.303004,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.6920571,2.1281102,0.13579184,81.423472,21.936684,149.33172,706.55799,47.177796,0.096528571,132.19911,13.818146,0.207,0,0,0,0,0,0,0,0.059,0,0,0,0,155.925,3511.082 -2170,23.344102,0,890.99696,15.278131,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.5829286,2.1019265,0.14293878,81.433818,21.942178,149.38579,706.72111,47.195469,0.096814286,132.21983,13.654769,0.2,0,0,0,0,0,0,0,0.056,0,0,0,0,155.925,3511.082 -2171,23.074307,0,891.16726,15.253257,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.4738,2.0757429,0.15008571,81.444164,21.947671,149.43986,706.88423,47.213143,0.0971,132.24054,13.491393,0.194,0,0,0,0,0,0,0,0.054,0,0,0,0,155.925,3511.082 -2172,22.804512,0,891.33757,15.228384,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.3646714,2.0495592,0.15723265,81.45451,21.953165,149.49394,707.04735,47.230816,0.097385714,132.26126,13.328016,0.187,0,0,0,0,0,0,0,0.051,0,0,0,0,155.925,3511.082 -2173,22.534717,0,891.50787,15.20351,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.2555429,2.0233755,0.16437959,81.464856,21.958659,149.54801,707.21047,47.24849,0.097671429,132.28198,13.16464,0.181,0,0,0,0,0,0,0,0.048,0,0,0,0,155.925,3511.082 -2174,22.264922,0,891.67817,15.178637,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.1464143,1.9971918,0.17152653,81.475202,21.964153,149.60209,707.37359,47.266163,0.097957143,132.30269,13.001263,0.175,0,0,0,0,0,0,0,0.046,0,0,0,0,155.925,3511.082 -2175,21.995128,0,891.84848,15.153763,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.0372857,1.9710082,0.17867347,81.485548,21.969647,149.65616,707.53671,47.283837,0.098242857,132.32341,12.837887,0.169,0,0,0,0,0,0,0,0.044,0,0,0,0,155.925,3511.082 -2176,21.725333,0,892.01878,15.12889,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.9281571,1.9448245,0.18582041,81.495894,21.975141,149.71024,707.69983,47.30151,0.098528571,132.34412,12.67451,0.164,0,0,0,0,0,0,0,0.042,0,0,0,0,155.925,3511.082 -2177,21.455538,0,892.18908,15.104016,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.8190286,1.9186408,0.19296735,81.50624,21.980635,149.76431,707.86295,47.319184,0.098814286,132.36484,12.511134,0.158,0,0,0,0,0,0,0,0.039,0,0,0,0,155.925,3511.082 -2178,21.185743,0,892.35939,15.079143,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.7099,1.8924571,0.20011429,81.516586,21.986129,149.81839,708.02607,47.336857,0.0991,132.38556,12.347757,0.153,0,0,0,0,0,0,0,0.037,0,0,0,0,155.925,3511.082 -2179,20.915948,0,892.52969,15.054269,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.6007714,1.8662735,0.20726122,81.526932,21.991622,149.87246,708.18919,47.354531,0.099385714,132.40627,12.184381,0.148,0,0,0,0,0,0,0,0.036,0,0,0,0,155.925,3511.082 -2180,20.646153,0,892.69999,15.029396,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.4916429,1.8400898,0.21440816,81.537278,21.997116,149.92653,708.35231,47.372204,0.099671429,132.42699,12.021004,0.143,0,0,0,0,0,0,0,0.034,0,0,0,0,155.925,3511.082 -2181,20.376358,0,892.87029,15.004522,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.3825143,1.8139061,0.2215551,81.547623,22.00261,149.98061,708.51543,47.389878,0.099957143,132.44771,11.857628,0.138,0,0,0,0,0,0,0,0.032,0,0,0,0,155.925,3511.082 -2182,20.106563,0,893.0406,14.979649,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.2733857,1.7877224,0.22870204,81.557969,22.008104,150.03468,708.67855,47.407551,0.10024286,132.46842,11.694251,0.134,0,0,0,0,0,0,0,0.031,0,0,0,0,155.925,3511.082 -2183,19.836768,0,893.2109,14.954776,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.1642571,1.7615388,0.23584898,81.568315,22.013598,150.08876,708.84167,47.425224,0.10052857,132.48914,11.530874,0.129,0,0,0,0,0,0,0,0.029,0,0,0,0,155.925,3511.082 -2184,19.566973,0,893.3812,14.929902,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.0551286,1.7353551,0.24299592,81.578661,22.019092,150.14283,709.00479,47.442898,0.10081429,132.50986,11.367498,0.125,0,0,0,0,0,0,0,0.028,0,0,0,0,155.925,3511.082 -2185,19.297179,0,893.55151,14.905029,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.946,1.7091714,0.25014286,81.589007,22.024586,150.19691,709.16791,47.460571,0.1011,132.53057,11.204121,0.121,0,0,0,0,0,0,0,0.026,0,0,0,0,155.925,3511.082 -2186,19.027384,0,893.72181,14.880155,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.8368714,1.6829878,0.2572898,81.599353,22.03008,150.25098,709.33103,47.478245,0.10138571,132.55129,11.040745,0.117,0,0,0,0,0,0,0,0.025,0,0,0,0,155.925,3511.082 -2187,18.757589,0,893.89211,14.855282,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.7277429,1.6568041,0.26443673,81.609699,22.035573,150.30506,709.49416,47.495918,0.10167143,132.572,10.877368,0.113,0,0,0,0,0,0,0,0.024,0,0,0,0,155.925,3511.082 -2188,18.487794,0,894.06242,14.830408,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.6186143,1.6306204,0.27158367,81.620045,22.041067,150.35913,709.65728,47.513592,0.10195714,132.59272,10.713992,0.109,0,0,0,0,0,0,0,0.022,0,0,0,0,155.925,3511.082 -2189,18.217999,0,894.23272,14.805535,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.5094857,1.6044367,0.27873061,81.630391,22.046561,150.41321,709.8204,47.531265,0.10224286,132.61344,10.550615,0.106,0,0,0,0,0,0,0,0.021,0,0,0,0,155.925,3511.082 -2190,17.948204,0,894.40302,14.780661,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.4003571,1.5782531,0.28587755,81.640737,22.052055,150.46728,709.98352,47.548939,0.10252857,132.63415,10.387239,0.102,0,0,0,0,0,0,0,0.02,0,0,0,0,155.925,3511.082 -2191,17.678409,0,894.57333,14.755788,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.2912286,1.5520694,0.29302449,81.651083,22.057549,150.52135,710.14664,47.566612,0.10281429,132.65487,10.223862,0.099,0,0,0,0,0,0,0,0.019,0,0,0,0,155.925,3511.082 -2192,17.408614,0,894.74363,14.730914,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.1821,1.5258857,0.30017143,81.661429,22.063043,150.57543,710.30976,47.584286,0.1031,132.67559,10.060486,0.096,0,0,0,0,0,0,0,0.018,0,0,0,0,155.925,3511.082 -2193,17.138819,0,894.91393,14.706041,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.0729714,1.499702,0.30731837,81.671774,22.068537,150.6295,710.47288,47.601959,0.10338571,132.6963,9.8971092,0.093,0,0,0,0,0,0,0,0.017,0,0,0,0,155.925,3511.082 -2194,16.869024,0,895.08423,14.681167,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.9638429,1.4735184,0.31446531,81.68212,22.074031,150.68358,710.636,47.619633,0.10367143,132.71702,9.7337327,0.089,0,0,0,0,0,0,0,0.016,0,0,0,0,155.925,3511.082 -2195,16.59923,0,895.25454,14.656294,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.8547143,1.4473347,0.32161224,81.692466,22.079524,150.73765,710.79912,47.637306,0.10395714,132.73773,9.5703561,0.087,0,0,0,0,0,0,0,0.016,0,0,0,0,155.925,3511.082 -2196,16.329435,0,895.42484,14.63142,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.7455857,1.421151,0.32875918,81.702812,22.085018,150.79173,710.96224,47.65498,0.10424286,132.75845,9.4069796,0.084,0,0,0,0,0,0,0,0.015,0,0,0,0,155.925,3511.082 -2197,16.05964,0,895.59514,14.606547,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.6364571,1.3949673,0.33590612,81.713158,22.090512,150.8458,711.12536,47.672653,0.10452857,132.77917,9.2436031,0.081,0,0,0,0,0,0,0,0.014,0,0,0,0,155.925,3511.082 -2198,15.789845,0,895.76545,14.581673,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.5273286,1.3687837,0.34305306,81.723504,22.096006,150.89988,711.28848,47.690327,0.10481429,132.79988,9.0802265,0.078,0,0,0,0,0,0,0,0.013,0,0,0,0,155.925,3511.082 -2199,15.52005,0,895.93575,14.5568,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.4182,1.3426,0.3502,81.73385,22.1015,150.95395,711.4516,47.708,0.1051,132.8206,8.91685,0.076,0,0,0,0,0,0,0,0.013,0,0,0,0,155.925,3511.082 -2200,15.250255,0,896.10605,14.531927,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.3090714,1.3164163,0.35734694,81.744196,22.106994,151.00802,711.61472,47.725673,0.10538571,132.84132,8.7534735,0.073,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082 -2201,14.98046,0,896.27636,14.507053,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.1999429,1.2902327,0.36449388,81.754542,22.112488,151.0621,711.77784,47.743347,0.10567143,132.86203,8.5900969,0.071,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082 -2202,14.710665,0,896.44666,14.48218,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.0908143,1.264049,0.37164082,81.764888,22.117982,151.11617,711.94096,47.76102,0.10595714,132.88275,8.4267204,0.068,0,0,0,0,0,0,0,0.011,0,0,0,0,155.925,3511.082 -2203,14.44087,0,896.61696,14.457306,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.9816857,1.2378653,0.37878776,81.775234,22.123476,151.17025,712.10408,47.778694,0.10624286,132.90347,8.2633439,0.066,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082 -2204,14.171076,0,896.78727,14.432433,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.8725571,1.2116816,0.38593469,81.78558,22.128969,151.22432,712.2672,47.796367,0.10652857,132.92418,8.0999673,0.064,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082 -2205,13.901281,0,896.95757,14.407559,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.7634286,1.185498,0.39308163,81.795926,22.134463,151.2784,712.43032,47.814041,0.10681429,132.9449,7.9365908,0.062,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082 -2206,13.631486,0,897.12787,14.382686,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.6543,1.1593143,0.40022857,81.806271,22.139957,151.33247,712.59344,47.831714,0.1071,132.96561,7.7732143,0.06,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082 -2207,13.361691,0,897.29817,14.357812,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.5451714,1.1331306,0.40737551,81.816617,22.145451,151.38655,712.75656,47.849388,0.10738571,132.98633,7.6098378,0.058,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082 -2208,13.091896,0,897.46848,14.332939,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.4360429,1.1069469,0.41452245,81.826963,22.150945,151.44062,712.91968,47.867061,0.10767143,133.00705,7.4464612,0.056,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082 -2209,12.822101,0,897.63878,14.308065,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.3269143,1.0807633,0.42166939,81.837309,22.156439,151.49469,713.0828,47.884735,0.10795714,133.02776,7.2830847,0.054,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082 -2210,12.552306,0,897.80908,14.283192,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.2177857,1.0545796,0.42881633,81.847655,22.161933,151.54877,713.24592,47.902408,0.10824286,133.04848,7.1197082,0.052,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082 -2211,12.282511,0,897.97939,14.258318,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.1086571,1.0283959,0.43596327,81.858001,22.167427,151.60284,713.40904,47.920082,0.10852857,133.0692,6.9563316,0.051,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082 -2212,12.012716,0,898.14969,14.233445,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.9995286,1.0022122,0.4431102,81.868347,22.17292,151.65692,713.57217,47.937755,0.10881429,133.08991,6.7929551,0.049,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082 -2213,11.742921,0,898.31999,14.208571,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.8904,0.97602857,0.45025714,81.878693,22.178414,151.71099,713.73529,47.955429,0.1091,133.11063,6.6295786,0.047,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082 -2214,11.473127,0,898.4903,14.183698,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.7812714,0.9498449,0.45740408,81.889039,22.183908,151.76507,713.89841,47.973102,0.10938571,133.13134,6.466202,0.046,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082 -2215,11.203332,0,898.6606,14.158824,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.6721429,0.92366122,0.46455102,81.899385,22.189402,151.81914,714.06153,47.990776,0.10967143,133.15206,6.3028255,0.044,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082 -2216,10.933537,0,898.8309,14.133951,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.5630143,0.89747755,0.47169796,81.909731,22.194896,151.87322,714.22465,48.008449,0.10995714,133.17278,6.139449,0.043,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 -2217,10.663742,0,899.00121,14.109078,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.4538857,0.87129388,0.4788449,81.920077,22.20039,151.92729,714.38777,48.026122,0.11024286,133.19349,5.9760724,0.041,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 -2218,10.393947,0,899.17151,14.084204,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.3447571,0.8451102,0.48599184,81.930422,22.205884,151.98137,714.55089,48.043796,0.11052857,133.21421,5.8126959,0.04,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 -2219,10.124152,0,899.34181,14.059331,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.2356286,0.81892653,0.49313878,81.940768,22.211378,152.03544,714.71401,48.061469,0.11081429,133.23493,5.6493194,0.039,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 -2220,9.8543571,0,899.51211,14.034457,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.1265,0.79274286,0.50028571,81.951114,22.216871,152.08951,714.87713,48.079143,0.1111,133.25564,5.4859429,0.037,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2221,9.5845622,0,899.68242,14.009584,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.0173714,0.76655918,0.50743265,81.96146,22.222365,152.14359,715.04025,48.096816,0.11138571,133.27636,5.3225663,0.036,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2222,9.3147673,0,899.85272,13.98471,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.9082429,0.74037551,0.51457959,81.971806,22.227859,152.19766,715.20337,48.11449,0.11167143,133.29708,5.1591898,0.035,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2223,9.0449724,0,900.02302,13.959837,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.7991143,0.71419184,0.52172653,81.982152,22.233353,152.25174,715.36649,48.132163,0.11195714,133.31779,4.9958133,0.034,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2224,8.7751776,0,900.19333,13.934963,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.6899857,0.68800816,0.52887347,81.992498,22.238847,152.30581,715.52961,48.149837,0.11224286,133.33851,4.8324367,0.033,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 -2225,8.5053827,0,900.36363,13.91009,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.5808571,0.66182449,0.53602041,82.002844,22.244341,152.35989,715.69273,48.16751,0.11252857,133.35922,4.6690602,0.032,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2226,8.2355878,0,900.53393,13.885216,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.4717286,0.63564082,0.54316735,82.01319,22.249835,152.41396,715.85585,48.185184,0.11281429,133.37994,4.5056837,0.031,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2227,7.9657929,0,900.70424,13.860343,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.3626,0.60945714,0.55031429,82.023536,22.255329,152.46804,716.01897,48.202857,0.1131,133.40066,4.3423071,0.03,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2228,7.695998,0,900.87454,13.835469,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.2534714,0.58327347,0.55746122,82.033882,22.260822,152.52211,716.18209,48.220531,0.11338571,133.42137,4.1789306,0.029,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2229,7.4262031,0,901.04484,13.810596,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.1443429,0.5570898,0.56460816,82.044228,22.266316,152.57618,716.34521,48.238204,0.11367143,133.44209,4.0155541,0.028,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2230,7.1564082,0,901.21514,13.785722,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.0352143,0.53090612,0.5717551,82.054573,22.27181,152.63026,716.50833,48.255878,0.11395714,133.46281,3.8521776,0.027,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 -2231,6.8866133,0,901.38545,13.760849,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.9260857,0.50472245,0.57890204,82.064919,22.277304,152.68433,716.67145,48.273551,0.11424286,133.48352,3.688801,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2232,6.6168184,0,901.55575,13.735976,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.8169571,0.47853878,0.58604898,82.075265,22.282798,152.73841,716.83457,48.291224,0.11452857,133.50424,3.5254245,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2233,6.3470235,0,901.72605,13.711102,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.7078286,0.4523551,0.59319592,82.085611,22.288292,152.79248,716.99769,48.308898,0.11481429,133.52496,3.362048,0.024,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2234,6.0772286,0,901.89636,13.686229,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.5987,0.42617143,0.60034286,82.095957,22.293786,152.84656,717.16081,48.326571,0.1151,133.54567,3.1986714,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2235,5.8074337,0,902.06666,13.661355,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.4895714,0.39998776,0.6074898,82.106303,22.29928,152.90063,717.32393,48.344245,0.11538571,133.56639,3.0352949,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2236,5.5376388,0,902.23696,13.636482,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.3804429,0.37380408,0.61463673,82.116649,22.304773,152.95471,717.48706,48.361918,0.11567143,133.5871,2.8719184,0.022,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2237,5.2678439,0,902.40727,13.611608,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.2713143,0.34762041,0.62178367,82.126995,22.310267,153.00878,717.65018,48.379592,0.11595714,133.60782,2.7085418,0.021,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2238,4.998049,0,902.57757,13.586735,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.1621857,0.32143673,0.62893061,82.137341,22.315761,153.06286,717.8133,48.397265,0.11624286,133.62854,2.5451653,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2239,4.7282541,0,902.74787,13.561861,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.0530571,0.29525306,0.63607755,82.147687,22.321255,153.11693,717.97642,48.414939,0.11652857,133.64925,2.3817888,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2240,4.4584592,0,902.91818,13.536988,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.94392857,0.26906939,0.64322449,82.158033,22.326749,153.171,718.13954,48.432612,0.11681429,133.66997,2.2184122,0.019,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 -2241,4.1886643,0,903.08848,13.512114,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.8348,0.24288571,0.65037143,82.168379,22.332243,153.22508,718.30266,48.450286,0.1171,133.69069,2.0550357,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2242,3.9188694,0,903.25878,13.487241,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.72567143,0.21670204,0.65751837,82.178724,22.337737,153.27915,718.46578,48.467959,0.11738571,133.7114,1.8916592,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2243,3.6490745,0,903.42908,13.462367,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.61654286,0.19051837,0.66466531,82.18907,22.343231,153.33323,718.6289,48.485633,0.11767143,133.73212,1.7282827,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2244,3.3792796,0,903.59939,13.437494,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.50741429,0.16433469,0.67181224,82.199416,22.348724,153.3873,718.79202,48.503306,0.11795714,133.75283,1.5649061,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2245,3.1094847,0,903.76969,13.41262,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.39828571,0.13815102,0.67895918,82.209762,22.354218,153.44138,718.95514,48.52098,0.11824286,133.77355,1.4015296,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2246,2.8396898,0,903.93999,13.387747,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.28915714,0.11196735,0.68610612,82.220108,22.359712,153.49545,719.11826,48.538653,0.11852857,133.79427,1.2381531,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2247,2.5698949,0,904.1103,13.362873,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.18002857,0.085783673,0.69325306,82.230454,22.365206,153.54953,719.28138,48.556327,0.11881429,133.81498,1.0747765,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2248,2.3001,0,904.2806,13.338,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0709,0.0596,0.7004,82.2408,22.3707,153.6036,719.4445,48.574,0.1191,133.8357,0.9114,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 -2249,2.088,0,904.7895,13.343,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.7033,82.2473,22.3987,153.9761,720.2033,48.7474,0.1179,133.8876,0.9044,0.092,4.013,0.483,0.877,0.238,0,0,0,0.002,0,0,0.008,0,155.92,3511.082 -2250,2.0458,0,904.8603,13.3436,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.7033,82.2527,22.4002,153.9867,720.2524,48.7506,0.1179,133.8969,0.9044,0.092,4.013,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,155.937,3511.082 -2251,2.05004,0,904.9552,13.34368,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70338,82.26022,22.40226,154.00076,720.31816,48.75506,0.1179,133.90908,0.9044,0.092,4.014,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,155.96,3511.082 -2252,2.05428,0,905.0501,13.34376,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70346,82.26774,22.40432,154.01482,720.38392,48.75952,0.1179,133.92126,0.9044,0.092,4.015,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,155.983,3511.082 -2253,2.05852,0,905.145,13.34384,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70354,82.27526,22.40638,154.02888,720.44968,48.76398,0.1179,133.93344,0.9044,0.092,4.016,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,156.006,3511.082 -2254,2.06276,0,905.2399,13.34392,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70362,82.28278,22.40844,154.04294,720.51544,48.76844,0.1179,133.94562,0.9044,0.092,4.017,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,156.029,3511.082 -2255,2.067,0,905.3348,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.7037,82.2903,22.4105,154.057,720.5812,48.7729,0.1179,133.9578,0.9044,0.092,4.018,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,156.051,3511.082 -2256,2.07852,0,905.44156,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70376,82.29874,22.41276,154.07282,720.65512,48.77792,0.11794,133.97158,0.9044,0.092,4.018,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.074,3511.082 -2257,2.09004,0,905.54832,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70382,82.30718,22.41502,154.08864,720.72904,48.78294,0.11798,133.98536,0.9044,0.092,4.019,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.097,3511.082 -2258,2.10156,0,905.65508,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70388,82.31562,22.41728,154.10446,720.80296,48.78796,0.11802,133.99914,0.9044,0.092,4.02,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.125,3511.082 -2259,2.11308,0,905.76184,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70394,82.32406,22.41954,154.12028,720.87688,48.79298,0.11806,134.01292,0.9044,0.092,4.021,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.152,3511.082 -2260,2.1246,0,905.8686,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.704,82.3325,22.4218,154.1361,720.9508,48.798,0.1181,134.0267,0.9044,0.092,4.022,0.485,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.18,3511.082 -2261,2.1217267,0,905.9807,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070513333,0.0592,0.70407333,82.341367,22.42422,154.15269,721.02846,48.803253,0.11810667,134.04113,0.9044,0.092,4.023,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.207,3511.082 -2262,2.1188533,0,906.0928,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070526667,0.0592,0.70414667,82.350233,22.42664,154.16929,721.10612,48.808507,0.11811333,134.05557,0.9044,0.092,4.024,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.235,3511.082 -2263,2.11598,0,906.2049,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07054,0.0592,0.70422,82.3591,22.42906,154.18588,721.18378,48.81376,0.11812,134.07,0.9044,0.092,4.025,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.263,3511.082 -2264,2.1131067,0,906.317,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070553333,0.0592,0.70429333,82.367967,22.43148,154.20247,721.26144,48.819013,0.11812667,134.08443,0.9044,0.092,4.026,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.29,3511.082 -2265,2.1102333,0,906.4291,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070566667,0.0592,0.70436667,82.376833,22.4339,154.21907,721.3391,48.824267,0.11813333,134.09887,0.9044,0.092,4.028,0.485,0.881,0.238,0,0,0,0.002,0,0,0.008,0,156.318,3511.082 -2266,2.10736,0,906.5412,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07058,0.0592,0.70444,82.3857,22.43632,154.23566,721.41676,48.82952,0.11814,134.1133,0.9044,0.092,4.029,0.485,0.881,0.238,0,0,0,0.002,0,0,0.008,0,156.345,3511.082 -2267,2.1044867,0,906.6533,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070593333,0.0592,0.70451333,82.394567,22.43874,154.25225,721.49442,48.834773,0.11814667,134.12773,0.9044,0.093,4.03,0.485,0.881,0.239,0,0,0,0.002,0,0,0.008,0,156.372,3511.082 -2268,2.1016133,0,906.7654,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070606667,0.0592,0.70458667,82.403433,22.44116,154.26885,721.57208,48.840027,0.11815333,134.14217,0.9044,0.093,4.031,0.486,0.881,0.239,0,0,0,0.002,0,0,0.008,0,156.399,3511.082 -2269,2.09874,0,906.8775,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07062,0.0592,0.70466,82.4123,22.44358,154.28544,721.64974,48.84528,0.11816,134.1566,0.9044,0.093,4.032,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.426,3511.082 -2270,2.0958667,0,906.9896,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070633333,0.0592,0.70473333,82.421167,22.446,154.30203,721.7274,48.850533,0.11816667,134.17103,0.9044,0.093,4.033,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.453,3511.082 -2271,2.0929933,0,907.1017,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070646667,0.0592,0.70480667,82.430033,22.44842,154.31863,721.80506,48.855787,0.11817333,134.18547,0.9044,0.093,4.034,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.48,3511.082 -2272,2.09012,0,907.2138,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07066,0.0592,0.70488,82.4389,22.45084,154.33522,721.88272,48.86104,0.11818,134.1999,0.9044,0.093,4.035,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.506,3511.082 -2273,2.0872467,0,907.3259,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070673333,0.0592,0.70495333,82.447767,22.45326,154.35181,721.96038,48.866293,0.11818667,134.21433,0.9044,0.093,4.036,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.532,3511.082 -2274,2.0843733,0,907.438,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070686667,0.0592,0.70502667,82.456633,22.45568,154.36841,722.03804,48.871547,0.11819333,134.22877,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.559,3511.082 -2275,2.0815,0,907.5501,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0707,0.0592,0.7051,82.4655,22.4581,154.385,722.1157,48.8768,0.1182,134.2432,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.585,3511.082 -2276,2.078004,0,907.65054,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070708,0.0592,0.705172,82.473444,22.460264,154.39988,722.18528,48.881508,0.118216,134.25614,0.9044,0.093,4.038,0.487,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.611,3511.082 -2277,2.074508,0,907.75098,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070716,0.0592,0.705244,82.481388,22.462428,154.41477,722.25487,48.886216,0.118232,134.26907,0.9044,0.093,4.039,0.487,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.636,3511.082 -2278,2.071012,0,907.85142,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070724,0.0592,0.705316,82.489332,22.464592,154.42965,722.32445,48.890924,0.118248,134.28201,0.9044,0.093,4.04,0.487,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.662,3511.082 -2279,2.067516,0,907.95186,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070732,0.0592,0.705388,82.497276,22.466756,154.44454,722.39404,48.895632,0.118264,134.29494,0.9044,0.093,4.041,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.687,3511.082 -2280,2.06402,0,908.0523,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07074,0.0592,0.70546,82.50522,22.46892,154.45942,722.46362,48.90034,0.11828,134.30788,0.9044,0.093,4.042,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.713,3511.082 -2281,2.060524,0,908.15274,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070748,0.0592,0.705532,82.513164,22.471084,154.4743,722.5332,48.905048,0.118296,134.32082,0.9044,0.093,4.043,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.738,3511.082 -2282,2.057028,0,908.25318,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070756,0.0592,0.705604,82.521108,22.473248,154.48919,722.60279,48.909756,0.118312,134.33375,0.9044,0.093,4.044,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.763,3511.082 -2283,2.053532,0,908.35362,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070764,0.0592,0.705676,82.529052,22.475412,154.50407,722.67237,48.914464,0.118328,134.34669,0.9044,0.093,4.045,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.788,3511.082 -2284,2.050036,0,908.45406,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070772,0.0592,0.705748,82.536996,22.477576,154.51896,722.74196,48.919172,0.118344,134.35962,0.9044,0.093,4.046,0.487,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.812,3511.082 -2285,2.04654,0,908.5545,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07078,0.0592,0.70582,82.54494,22.47974,154.53384,722.81154,48.92388,0.11836,134.37256,0.9044,0.093,4.047,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.837,3511.082 -2286,2.043044,0,908.65494,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070788,0.0592,0.705892,82.552884,22.481904,154.54872,722.88112,48.928588,0.118376,134.3855,0.9044,0.093,4.048,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.861,3511.082 -2287,2.039548,0,908.75538,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070796,0.0592,0.705964,82.560828,22.484068,154.56361,722.95071,48.933296,0.118392,134.39843,0.9044,0.093,4.049,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.886,3511.082 -2288,2.036052,0,908.85582,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070804,0.0592,0.706036,82.568772,22.486232,154.57849,723.02029,48.938004,0.118408,134.41137,0.9044,0.093,4.05,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.91,3511.082 -2289,2.032556,0,908.95626,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070812,0.0592,0.706108,82.576716,22.488396,154.59338,723.08988,48.942712,0.118424,134.4243,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,156.934,3511.082 -2290,2.02906,0,909.0567,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07082,0.0592,0.70618,82.58466,22.49056,154.60826,723.15946,48.94742,0.11844,134.43724,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,156.958,3511.082 -2291,2.025564,0,909.15714,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070828,0.0592,0.706252,82.592604,22.492724,154.62314,723.22904,48.952128,0.118456,134.45018,0.9044,0.093,4.052,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,156.981,3511.082 -2292,2.022068,0,909.25758,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070836,0.0592,0.706324,82.600548,22.494888,154.63803,723.29863,48.956836,0.118472,134.46311,0.9044,0.093,4.053,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,157.005,3511.082 -2293,2.018572,0,909.35802,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070844,0.0592,0.706396,82.608492,22.497052,154.65291,723.36821,48.961544,0.118488,134.47605,0.9044,0.093,4.054,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,157.028,3511.082 -2294,2.015076,0,909.45846,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070852,0.0592,0.706468,82.616436,22.499216,154.6678,723.4378,48.966252,0.118504,134.48898,0.9044,0.093,4.055,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.052,3511.082 -2295,2.01158,0,909.5589,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07086,0.0592,0.70654,82.62438,22.50138,154.68268,723.50738,48.97096,0.11852,134.50192,0.9044,0.093,4.056,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.075,3511.082 -2296,2.008084,0,909.65934,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070868,0.0592,0.706612,82.632324,22.503544,154.69756,723.57696,48.975668,0.118536,134.51486,0.9044,0.093,4.057,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.098,3511.082 -2297,2.004588,0,909.75978,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070876,0.0592,0.706684,82.640268,22.505708,154.71245,723.64655,48.980376,0.118552,134.52779,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.121,3511.082 -2298,2.001092,0,909.86022,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070884,0.0592,0.706756,82.648212,22.507872,154.72733,723.71613,48.985084,0.118568,134.54073,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.144,3511.082 -2299,1.997596,0,909.96066,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070892,0.0592,0.706828,82.656156,22.510036,154.74222,723.78572,48.989792,0.118584,134.55366,0.9044,0.093,4.059,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.167,3511.082 -2300,1.9941,0,910.0611,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0709,0.0592,0.7069,82.6641,22.5122,154.7571,723.8553,48.9945,0.1186,134.5666,0.9044,0.093,4.06,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.189,3511.082 -2301,1.991988,0,910.14458,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070904,0.0592,0.706956,82.670706,22.514002,154.76946,723.91314,48.998416,0.118608,134.57735,0.9044,0.093,4.061,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.212,3511.082 -2302,1.989876,0,910.22807,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070908,0.0592,0.707012,82.677312,22.515804,154.78182,723.97097,49.002332,0.118616,134.58811,0.9044,0.093,4.062,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.234,3511.082 -2303,1.987764,0,910.31155,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070912,0.0592,0.707068,82.683918,22.517606,154.79419,724.02881,49.006248,0.118624,134.59886,0.9044,0.093,4.063,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.256,3511.082 -2304,1.985652,0,910.39504,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070916,0.0592,0.707124,82.690524,22.519408,154.80655,724.08664,49.010164,0.118632,134.60962,0.9044,0.093,4.063,0.49,0.888,0.241,0,0,0,0.002,0,0,0.008,0,157.278,3511.082 -2305,1.98354,0,910.47852,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07092,0.0592,0.70718,82.69713,22.52121,154.81891,724.14448,49.01408,0.11864,134.62037,0.9044,0.093,4.064,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.3,3511.082 -2306,1.981428,0,910.562,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070924,0.0592,0.707236,82.703736,22.523012,154.83127,724.20232,49.017996,0.118648,134.63112,0.9044,0.093,4.065,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.322,3511.082 -2307,1.979316,0,910.64549,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070928,0.0592,0.707292,82.710342,22.524814,154.84363,724.26015,49.021912,0.118656,134.64188,0.9044,0.093,4.066,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.344,3511.082 -2308,1.977204,0,910.72897,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070932,0.0592,0.707348,82.716948,22.526616,154.856,724.31799,49.025828,0.118664,134.65263,0.9044,0.093,4.067,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.366,3511.082 -2309,1.975092,0,910.81246,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070936,0.0592,0.707404,82.723554,22.528418,154.86836,724.37582,49.029744,0.118672,134.66339,0.9044,0.093,4.068,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.387,3511.082 -2310,1.97298,0,910.89594,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07094,0.0592,0.70746,82.73016,22.53022,154.88072,724.43366,49.03366,0.11868,134.67414,0.9044,0.093,4.068,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.409,3511.082 -2311,1.970868,0,910.97942,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070944,0.0592,0.707516,82.736766,22.532022,154.89308,724.4915,49.037576,0.118688,134.68489,0.9044,0.093,4.069,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.43,3511.082 -2312,1.968756,0,911.06291,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070948,0.0592,0.707572,82.743372,22.533824,154.90544,724.54933,49.041492,0.118696,134.69565,0.9044,0.093,4.07,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.452,3511.082 -2313,1.966644,0,911.14639,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070952,0.0592,0.707628,82.749978,22.535626,154.91781,724.60717,49.045408,0.118704,134.7064,0.9044,0.093,4.071,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.473,3511.082 -2314,1.964532,0,911.22988,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070956,0.0592,0.707684,82.756584,22.537428,154.93017,724.665,49.049324,0.118712,134.71716,0.9044,0.093,4.071,0.491,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.494,3511.082 -2315,1.96242,0,911.31336,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07096,0.0592,0.70774,82.76319,22.53923,154.94253,724.72284,49.05324,0.11872,134.72791,0.9044,0.093,4.072,0.491,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.515,3511.082 -2316,1.960308,0,911.39684,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070964,0.0592,0.707796,82.769796,22.541032,154.95489,724.78068,49.057156,0.118728,134.73866,0.9044,0.094,4.073,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.536,3511.082 -2317,1.958196,0,911.48033,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070968,0.0592,0.707852,82.776402,22.542834,154.96725,724.83851,49.061072,0.118736,134.74942,0.9044,0.094,4.074,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.556,3511.082 -2318,1.956084,0,911.56381,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070972,0.0592,0.707908,82.783008,22.544636,154.97962,724.89635,49.064988,0.118744,134.76017,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.577,3511.082 -2319,1.953972,0,911.6473,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070976,0.0592,0.707964,82.789614,22.546438,154.99198,724.95418,49.068904,0.118752,134.77093,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.598,3511.082 -2320,1.95186,0,911.73078,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07098,0.0592,0.70802,82.79622,22.54824,155.00434,725.01202,49.07282,0.11876,134.78168,0.9044,0.094,4.076,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.618,3511.082 -2321,1.949748,0,911.81426,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070984,0.0592,0.708076,82.802826,22.550042,155.0167,725.06986,49.076736,0.118768,134.79243,0.9044,0.094,4.077,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.639,3511.082 -2322,1.947636,0,911.89775,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070988,0.0592,0.708132,82.809432,22.551844,155.02906,725.12769,49.080652,0.118776,134.80319,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0.008,0,157.659,3511.082 -2323,1.945524,0,911.98123,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070992,0.0592,0.708188,82.816038,22.553646,155.04143,725.18553,49.084568,0.118784,134.81394,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0.008,0,157.679,3511.082 -2324,1.943412,0,912.06472,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070996,0.0592,0.708244,82.822644,22.555448,155.05379,725.24336,49.088484,0.118792,134.8247,0.9044,0.094,4.079,0.491,0.892,0.241,0,0,0,0.002,0,0,0.008,0,157.699,3511.082 -2325,1.9413,0,912.1482,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071,0.0592,0.7083,82.82925,22.55725,155.06615,725.3012,49.0924,0.1188,134.83545,0.9044,0.094,4.08,0.492,0.892,0.242,0,0,0,0.002,0,0,0.008,0,157.719,3511.082 -2326,1.939188,0,912.23168,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071004,0.0592,0.708356,82.835856,22.559052,155.07851,725.35904,49.096316,0.118808,134.8462,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0.008,0,157.739,3511.082 -2327,1.937076,0,912.31517,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071008,0.0592,0.708412,82.842462,22.560854,155.09087,725.41687,49.100232,0.118816,134.85696,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0.008,0,157.759,3511.082 -2328,1.934964,0,912.39865,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071012,0.0592,0.708468,82.849068,22.562656,155.10324,725.47471,49.104148,0.118824,134.86771,0.9044,0.094,4.082,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.779,3511.082 -2329,1.932852,0,912.48214,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071016,0.0592,0.708524,82.855674,22.564458,155.1156,725.53254,49.108064,0.118832,134.87847,0.9044,0.094,4.083,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.799,3511.082 -2330,1.93074,0,912.56562,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07102,0.0592,0.70858,82.86228,22.56626,155.12796,725.59038,49.11198,0.11884,134.88922,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.818,3511.082 -2331,1.928628,0,912.6491,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071024,0.0592,0.708636,82.868886,22.568062,155.14032,725.64822,49.115896,0.118848,134.89997,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.838,3511.082 -2332,1.926516,0,912.73259,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071028,0.0592,0.708692,82.875492,22.569864,155.15268,725.70605,49.119812,0.118856,134.91073,0.9044,0.094,4.085,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.857,3511.082 -2333,1.924404,0,912.81607,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071032,0.0592,0.708748,82.882098,22.571666,155.16505,725.76389,49.123728,0.118864,134.92148,0.9044,0.094,4.086,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.877,3511.082 -2334,1.922292,0,912.89956,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071036,0.0592,0.708804,82.888704,22.573468,155.17741,725.82172,49.127644,0.118872,134.93224,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.896,3511.082 -2335,1.92018,0,912.98304,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07104,0.0592,0.70886,82.89531,22.57527,155.18977,725.87956,49.13156,0.11888,134.94299,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.915,3511.082 -2336,1.918068,0,913.06652,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071044,0.0592,0.708916,82.901916,22.577072,155.20213,725.9374,49.135476,0.118888,134.95374,0.9044,0.094,4.088,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.934,3511.082 -2337,1.915956,0,913.15001,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071048,0.0592,0.708972,82.908522,22.578874,155.21449,725.99523,49.139392,0.118896,134.9645,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.953,3511.082 -2338,1.913844,0,913.23349,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071052,0.0592,0.709028,82.915128,22.580676,155.22686,726.05307,49.143308,0.118904,134.97525,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.972,3511.082 -2339,1.911732,0,913.31698,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071056,0.0592,0.709084,82.921734,22.582478,155.23922,726.1109,49.147224,0.118912,134.98601,0.9044,0.094,4.09,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.991,3511.082 -2340,1.90962,0,913.40046,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07106,0.0592,0.70914,82.92834,22.58428,155.25158,726.16874,49.15114,0.11892,134.99676,0.9044,0.094,4.091,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,158.01,3511.082 -2341,1.907508,0,913.48394,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071064,0.0592,0.709196,82.934946,22.586082,155.26394,726.22658,49.155056,0.118928,135.00751,0.9044,0.094,4.091,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.029,3511.082 -2342,1.905396,0,913.56743,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071068,0.0592,0.709252,82.941552,22.587884,155.2763,726.28441,49.158972,0.118936,135.01827,0.9044,0.094,4.092,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.047,3511.082 -2343,1.903284,0,913.65091,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071072,0.0592,0.709308,82.948158,22.589686,155.28867,726.34225,49.162888,0.118944,135.02902,0.9044,0.094,4.093,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.066,3511.082 -2344,1.901172,0,913.7344,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071076,0.0592,0.709364,82.954764,22.591488,155.30103,726.40008,49.166804,0.118952,135.03978,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.085,3511.082 -2345,1.89906,0,913.81788,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07108,0.0592,0.70942,82.96137,22.59329,155.31339,726.45792,49.17072,0.11896,135.05053,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.103,3511.082 -2346,1.896948,0,913.90136,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071084,0.0592,0.709476,82.967976,22.595092,155.32575,726.51576,49.174636,0.118968,135.06128,0.9044,0.094,4.095,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.121,3511.082 -2347,1.894836,0,913.98485,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071088,0.0592,0.709532,82.974582,22.596894,155.33811,726.57359,49.178552,0.118976,135.07204,0.9044,0.094,4.096,0.493,0.896,0.242,0,0,0,0.002,0,0,0.008,0,158.14,3511.082 -2348,1.892724,0,914.06833,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071092,0.0592,0.709588,82.981188,22.598696,155.35048,726.63143,49.182468,0.118984,135.08279,0.9044,0.094,4.096,0.494,0.896,0.242,0,0,0,0.002,0,0,0.008,0,158.158,3511.082 -2349,1.890612,0,914.15182,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071096,0.0592,0.709644,82.987794,22.600498,155.36284,726.68926,49.186384,0.118992,135.09355,0.9044,0.094,4.097,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.176,3511.082 -2350,1.8885,0,914.2353,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0711,0.0592,0.7097,82.9944,22.6023,155.3752,726.7471,49.1903,0.119,135.1043,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.194,3511.082 -2351,1.885994,0,914.3042,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071106,0.0592,0.709744,82.999852,22.603782,155.3854,726.79483,49.19353,0.119008,135.11317,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.212,3511.082 -2352,1.883488,0,914.37309,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071112,0.0592,0.709788,83.005304,22.605264,155.39561,726.84256,49.19676,0.119016,135.12204,0.9044,0.094,4.099,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.23,3511.082 -2353,1.880982,0,914.44199,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071118,0.0592,0.709832,83.010756,22.606746,155.40581,726.89028,49.19999,0.119024,135.13092,0.9044,0.094,4.1,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.248,3511.082 -2354,1.878476,0,914.51088,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071124,0.0592,0.709876,83.016208,22.608228,155.41602,726.93801,49.20322,0.119032,135.13979,0.9044,0.094,4.1,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.266,3511.082 -2355,1.87597,0,914.57978,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07113,0.0592,0.70992,83.02166,22.60971,155.42622,726.98574,49.20645,0.11904,135.14866,0.9044,0.094,4.101,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.284,3511.082 -2356,1.873464,0,914.64868,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071136,0.0592,0.709964,83.027112,22.611192,155.43642,727.03347,49.20968,0.119048,135.15753,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.301,3511.082 -2357,1.870958,0,914.71757,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071142,0.0592,0.710008,83.032564,22.612674,155.44663,727.0812,49.21291,0.119056,135.1664,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.319,3511.082 -2358,1.868452,0,914.78647,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071148,0.0592,0.710052,83.038016,22.614156,155.45683,727.12892,49.21614,0.119064,135.17528,0.9044,0.094,4.103,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.337,3511.082 -2359,1.865946,0,914.85536,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071154,0.0592,0.710096,83.043468,22.615638,155.46704,727.17665,49.21937,0.119072,135.18415,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.354,3511.082 -2360,1.86344,0,914.92426,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07116,0.0592,0.71014,83.04892,22.61712,155.47724,727.22438,49.2226,0.11908,135.19302,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.372,3511.082 -2361,1.860934,0,914.99316,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071166,0.0592,0.710184,83.054372,22.618602,155.48744,727.27211,49.22583,0.119088,135.20189,0.9044,0.094,4.105,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.389,3511.082 -2362,1.858428,0,915.06205,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071172,0.0592,0.710228,83.059824,22.620084,155.49765,727.31984,49.22906,0.119096,135.21076,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.406,3511.082 -2363,1.855922,0,915.13095,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071178,0.0592,0.710272,83.065276,22.621566,155.50785,727.36756,49.23229,0.119104,135.21964,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.424,3511.082 -2364,1.853416,0,915.19984,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071184,0.0592,0.710316,83.070728,22.623048,155.51806,727.41529,49.23552,0.119112,135.22851,0.9044,0.094,4.107,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.441,3511.082 -2365,1.85091,0,915.26874,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07119,0.0592,0.71036,83.07618,22.62453,155.52826,727.46302,49.23875,0.11912,135.23738,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.458,3511.082 -2366,1.848404,0,915.33764,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071196,0.0592,0.710404,83.081632,22.626012,155.53846,727.51075,49.24198,0.119128,135.24625,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.475,3511.082 -2367,1.845898,0,915.40653,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071202,0.0592,0.710448,83.087084,22.627494,155.54867,727.55848,49.24521,0.119136,135.25512,0.9044,0.094,4.109,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.492,3511.082 -2368,1.843392,0,915.47543,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071208,0.0592,0.710492,83.092536,22.628976,155.55887,727.6062,49.24844,0.119144,135.264,0.9044,0.094,4.109,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.509,3511.082 -2369,1.840886,0,915.54432,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071214,0.0592,0.710536,83.097988,22.630458,155.56908,727.65393,49.25167,0.119152,135.27287,0.9044,0.094,4.11,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.526,3511.082 -2370,1.83838,0,915.61322,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07122,0.0592,0.71058,83.10344,22.63194,155.57928,727.70166,49.2549,0.11916,135.28174,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.543,3511.082 -2371,1.835874,0,915.68212,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071226,0.0592,0.710624,83.108892,22.633422,155.58948,727.74939,49.25813,0.119168,135.29061,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.56,3511.082 -2372,1.833368,0,915.75101,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071232,0.0592,0.710668,83.114344,22.634904,155.59969,727.79712,49.26136,0.119176,135.29948,0.9044,0.094,4.112,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.576,3511.082 -2373,1.830862,0,915.81991,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071238,0.0592,0.710712,83.119796,22.636386,155.60989,727.84484,49.26459,0.119184,135.30836,0.9044,0.094,4.113,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.593,3511.082 -2374,1.828356,0,915.8888,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071244,0.0592,0.710756,83.125248,22.637868,155.6201,727.89257,49.26782,0.119192,135.31723,0.9044,0.094,4.113,0.496,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.61,3511.082 -2375,1.82585,0,915.9577,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07125,0.0592,0.7108,83.1307,22.63935,155.6303,727.9403,49.27105,0.1192,135.3261,0.9044,0.094,4.114,0.496,0.899,0.244,0,0,0,0.002,0,0,0.008,0,158.626,3511.082 -2376,1.823344,0,916.0266,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071256,0.0592,0.710844,83.136152,22.640832,155.6405,727.98803,49.27428,0.119208,135.33497,0.9044,0.094,4.114,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.643,3511.082 -2377,1.820838,0,916.09549,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071262,0.0592,0.710888,83.141604,22.642314,155.65071,728.03576,49.27751,0.119216,135.34384,0.9044,0.094,4.115,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.659,3511.082 -2378,1.818332,0,916.16439,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071268,0.0592,0.710932,83.147056,22.643796,155.66091,728.08348,49.28074,0.119224,135.35272,0.9044,0.094,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.676,3511.082 -2379,1.815826,0,916.23328,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071274,0.0592,0.710976,83.152508,22.645278,155.67112,728.13121,49.28397,0.119232,135.36159,0.9044,0.095,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.692,3511.082 -2380,1.81332,0,916.30218,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07128,0.0592,0.71102,83.15796,22.64676,155.68132,728.17894,49.2872,0.11924,135.37046,0.9044,0.095,4.117,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.708,3511.082 -2381,1.810814,0,916.37108,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071286,0.0592,0.711064,83.163412,22.648242,155.69152,728.22667,49.29043,0.119248,135.37933,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.724,3511.082 -2382,1.808308,0,916.43997,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071292,0.0592,0.711108,83.168864,22.649724,155.70173,728.2744,49.29366,0.119256,135.3882,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.741,3511.082 -2383,1.805802,0,916.50887,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071298,0.0592,0.711152,83.174316,22.651206,155.71193,728.32212,49.29689,0.119264,135.39708,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.757,3511.082 -2384,1.803296,0,916.57776,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071304,0.0592,0.711196,83.179768,22.652688,155.72214,728.36985,49.30012,0.119272,135.40595,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.773,3511.082 -2385,1.80079,0,916.64666,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07131,0.0592,0.71124,83.18522,22.65417,155.73234,728.41758,49.30335,0.11928,135.41482,0.9044,0.095,4.12,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.789,3511.082 -2386,1.798284,0,916.71556,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071316,0.0592,0.711284,83.190672,22.655652,155.74254,728.46531,49.30658,0.119288,135.42369,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.805,3511.082 -2387,1.795778,0,916.78445,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071322,0.0592,0.711328,83.196124,22.657134,155.75275,728.51304,49.30981,0.119296,135.43256,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.821,3511.082 -2388,1.793272,0,916.85335,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071328,0.0592,0.711372,83.201576,22.658616,155.76295,728.56076,49.31304,0.119304,135.44144,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.837,3511.082 -2389,1.790766,0,916.92224,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071334,0.0592,0.711416,83.207028,22.660098,155.77316,728.60849,49.31627,0.119312,135.45031,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.853,3511.082 -2390,1.78826,0,916.99114,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07134,0.0592,0.71146,83.21248,22.66158,155.78336,728.65622,49.3195,0.11932,135.45918,0.9044,0.095,4.123,0.497,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.868,3511.082 -2391,1.785754,0,917.06004,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071346,0.0592,0.711504,83.217932,22.663062,155.79356,728.70395,49.32273,0.119328,135.46805,0.9044,0.095,4.123,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.884,3511.082 -2392,1.783248,0,917.12893,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071352,0.0592,0.711548,83.223384,22.664544,155.80377,728.75168,49.32596,0.119336,135.47692,0.9044,0.095,4.124,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.9,3511.082 -2393,1.780742,0,917.19783,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071358,0.0592,0.711592,83.228836,22.666026,155.81397,728.7994,49.32919,0.119344,135.4858,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.915,3511.082 -2394,1.778236,0,917.26672,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071364,0.0592,0.711636,83.234288,22.667508,155.82418,728.84713,49.33242,0.119352,135.49467,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.931,3511.082 -2395,1.77573,0,917.33562,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07137,0.0592,0.71168,83.23974,22.66899,155.83438,728.89486,49.33565,0.11936,135.50354,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.947,3511.082 -2396,1.773224,0,917.40452,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071376,0.0592,0.711724,83.245192,22.670472,155.84458,728.94259,49.33888,0.119368,135.51241,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.962,3511.082 -2397,1.770718,0,917.47341,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071382,0.0592,0.711768,83.250644,22.671954,155.85479,728.99032,49.34211,0.119376,135.52128,0.9044,0.095,4.127,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.977,3511.082 -2398,1.768212,0,917.54231,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071388,0.0592,0.711812,83.256096,22.673436,155.86499,729.03804,49.34534,0.119384,135.53016,0.9044,0.095,4.128,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.993,3511.082 -2399,1.765706,0,917.6112,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071394,0.0592,0.711856,83.261548,22.674918,155.8752,729.08577,49.34857,0.119392,135.53903,0.9044,0.095,4.128,0.497,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.008,3511.082 -2400,1.7632,0,917.6801,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0714,0.0592,0.7119,83.267,22.6764,155.8854,729.1335,49.3518,0.1194,135.5479,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.024,3511.082 -2401,1.760278,0,917.7393,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071404,0.0592,0.711942,83.271682,22.677674,155.89417,729.17451,49.354576,0.119406,135.55552,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.039,3511.082 -2402,1.757356,0,917.79849,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071408,0.0592,0.711984,83.276364,22.678948,155.90294,729.21552,49.357352,0.119412,135.56314,0.9044,0.095,4.13,0.498,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.054,3511.082 -2403,1.754434,0,917.85769,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071412,0.0592,0.712026,83.281046,22.680222,155.91171,729.25653,49.360128,0.119418,135.57077,0.9044,0.095,4.13,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.069,3511.082 -2404,1.751512,0,917.91688,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071416,0.0592,0.712068,83.285728,22.681496,155.92048,729.29754,49.362904,0.119424,135.57839,0.9044,0.095,4.131,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.084,3511.082 -2405,1.74859,0,917.97608,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07142,0.0592,0.71211,83.29041,22.68277,155.92925,729.33855,49.36568,0.11943,135.58601,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.099,3511.082 -2406,1.745668,0,918.03528,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071424,0.0592,0.712152,83.295092,22.684044,155.93802,729.37956,49.368456,0.119436,135.59363,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.114,3511.082 -2407,1.742746,0,918.09447,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071428,0.0592,0.712194,83.299774,22.685318,155.94679,729.42057,49.371232,0.119442,135.60125,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.129,3511.082 -2408,1.739824,0,918.15367,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071432,0.0592,0.712236,83.304456,22.686592,155.95556,729.46158,49.374008,0.119448,135.60888,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.144,3511.082 -2409,1.736902,0,918.21286,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071436,0.0592,0.712278,83.309138,22.687866,155.96433,729.50259,49.376784,0.119454,135.6165,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.159,3511.082 -2410,1.73398,0,918.27206,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07144,0.0592,0.71232,83.31382,22.68914,155.9731,729.5436,49.37956,0.11946,135.62412,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.174,3511.082 -2411,1.731058,0,918.33126,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071444,0.0592,0.712362,83.318502,22.690414,155.98187,729.58461,49.382336,0.119466,135.63174,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.189,3511.082 -2412,1.728136,0,918.39045,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071448,0.0592,0.712404,83.323184,22.691688,155.99064,729.62562,49.385112,0.119472,135.63936,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.204,3511.082 -2413,1.725214,0,918.44965,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071452,0.0592,0.712446,83.327866,22.692962,155.99941,729.66663,49.387888,0.119478,135.64699,0.9044,0.095,4.136,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.218,3511.082 -2414,1.722292,0,918.50884,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071456,0.0592,0.712488,83.332548,22.694236,156.00818,729.70764,49.390664,0.119484,135.65461,0.9044,0.095,4.137,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.233,3511.082 -2415,1.71937,0,918.56804,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07146,0.0592,0.71253,83.33723,22.69551,156.01695,729.74865,49.39344,0.11949,135.66223,0.9044,0.095,4.137,0.498,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.248,3511.082 -2416,1.716448,0,918.62724,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071464,0.0592,0.712572,83.341912,22.696784,156.02572,729.78966,49.396216,0.119496,135.66985,0.9044,0.095,4.138,0.498,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.262,3511.082 -2417,1.713526,0,918.68643,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071468,0.0592,0.712614,83.346594,22.698058,156.03449,729.83067,49.398992,0.119502,135.67747,0.9044,0.095,4.138,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.277,3511.082 -2418,1.710604,0,918.74563,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071472,0.0592,0.712656,83.351276,22.699332,156.04326,729.87168,49.401768,0.119508,135.6851,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.292,3511.082 -2419,1.707682,0,918.80482,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071476,0.0592,0.712698,83.355958,22.700606,156.05203,729.91269,49.404544,0.119514,135.69272,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.306,3511.082 -2420,1.70476,0,918.86402,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07148,0.0592,0.71274,83.36064,22.70188,156.0608,729.9537,49.40732,0.11952,135.70034,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.32,3511.082 -2421,1.701838,0,918.92322,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071484,0.0592,0.712782,83.365322,22.703154,156.06957,729.99471,49.410096,0.119526,135.70796,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.335,3511.082 -2422,1.698916,0,918.98241,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071488,0.0592,0.712824,83.370004,22.704428,156.07834,730.03572,49.412872,0.119532,135.71558,0.9044,0.095,4.141,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.349,3511.082 -2423,1.695994,0,919.04161,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071492,0.0592,0.712866,83.374686,22.705702,156.08711,730.07673,49.415648,0.119538,135.72321,0.9044,0.095,4.141,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.364,3511.082 -2424,1.693072,0,919.1008,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071496,0.0592,0.712908,83.379368,22.706976,156.09588,730.11774,49.418424,0.119544,135.73083,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.378,3511.082 -2425,1.69015,0,919.16,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0715,0.0592,0.71295,83.38405,22.70825,156.10465,730.15875,49.4212,0.11955,135.73845,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.392,3511.082 -2426,1.687228,0,919.2192,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071504,0.0592,0.712992,83.388732,22.709524,156.11342,730.19976,49.423976,0.119556,135.74607,0.9044,0.095,4.143,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.406,3511.082 -2427,1.684306,0,919.27839,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071508,0.0592,0.713034,83.393414,22.710798,156.12219,730.24077,49.426752,0.119562,135.75369,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.421,3511.082 -2428,1.681384,0,919.33759,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071512,0.0592,0.713076,83.398096,22.712072,156.13096,730.28178,49.429528,0.119568,135.76132,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.435,3511.082 -2429,1.678462,0,919.39678,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071516,0.0592,0.713118,83.402778,22.713346,156.13973,730.32279,49.432304,0.119574,135.76894,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.449,3511.082 -2430,1.67554,0,919.45598,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07152,0.0592,0.71316,83.40746,22.71462,156.1485,730.3638,49.43508,0.11958,135.77656,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.463,3511.082 -2431,1.672618,0,919.51518,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071524,0.0592,0.713202,83.412142,22.715894,156.15727,730.40481,49.437856,0.119586,135.78418,0.9044,0.095,4.146,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.477,3511.082 -2432,1.669696,0,919.57437,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071528,0.0592,0.713244,83.416824,22.717168,156.16604,730.44582,49.440632,0.119592,135.7918,0.9044,0.095,4.146,0.5,0.907,0.245,0,0,0,0.002,0,0,0.008,0,159.491,3511.082 -2433,1.666774,0,919.63357,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071532,0.0592,0.713286,83.421506,22.718442,156.17481,730.48683,49.443408,0.119598,135.79943,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0.008,0,159.505,3511.082 -2434,1.663852,0,919.69276,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071536,0.0592,0.713328,83.426188,22.719716,156.18358,730.52784,49.446184,0.119604,135.80705,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0.008,0,159.519,3511.082 -2435,1.66093,0,919.75196,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07154,0.0592,0.71337,83.43087,22.72099,156.19235,730.56885,49.44896,0.11961,135.81467,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.532,3511.082 -2436,1.658008,0,919.81116,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071544,0.0592,0.713412,83.435552,22.722264,156.20112,730.60986,49.451736,0.119616,135.82229,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.546,3511.082 -2437,1.655086,0,919.87035,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071548,0.0592,0.713454,83.440234,22.723538,156.20989,730.65087,49.454512,0.119622,135.82991,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.56,3511.082 -2438,1.652164,0,919.92955,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071552,0.0592,0.713496,83.444916,22.724812,156.21866,730.69188,49.457288,0.119628,135.83754,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.574,3511.082 -2439,1.649242,0,919.98874,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071556,0.0592,0.713538,83.449598,22.726086,156.22743,730.73289,49.460064,0.119634,135.84516,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.588,3511.082 -2440,1.64632,0,920.04794,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07156,0.0592,0.71358,83.45428,22.72736,156.2362,730.7739,49.46284,0.11964,135.85278,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.601,3511.082 -2441,1.643398,0,920.10714,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071564,0.0592,0.713622,83.458962,22.728634,156.24497,730.81491,49.465616,0.119646,135.8604,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.615,3511.082 -2442,1.640476,0,920.16633,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071568,0.0592,0.713664,83.463644,22.729908,156.25374,730.85592,49.468392,0.119652,135.86802,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.629,3511.082 -2443,1.637554,0,920.22553,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071572,0.0592,0.713706,83.468326,22.731182,156.26251,730.89693,49.471168,0.119658,135.87565,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.642,3511.082 -2444,1.634632,0,920.28472,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071576,0.0592,0.713748,83.473008,22.732456,156.27128,730.93794,49.473944,0.119664,135.88327,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.656,3511.082 -2445,1.63171,0,920.34392,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07158,0.0592,0.71379,83.47769,22.73373,156.28005,730.97895,49.47672,0.11967,135.89089,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.669,3511.082 -2446,1.628788,0,920.40312,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071584,0.0592,0.713832,83.482372,22.735004,156.28882,731.01996,49.479496,0.119676,135.89851,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.683,3511.082 -2447,1.625866,0,920.46231,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071588,0.0592,0.713874,83.487054,22.736278,156.29759,731.06097,49.482272,0.119682,135.90613,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.696,3511.082 -2448,1.622944,0,920.52151,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071592,0.0592,0.713916,83.491736,22.737552,156.30636,731.10198,49.485048,0.119688,135.91376,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.709,3511.082 -2449,1.620022,0,920.5807,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071596,0.0592,0.713958,83.496418,22.738826,156.31513,731.14299,49.487824,0.119694,135.92138,0.9044,0.095,4.155,0.501,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.723,3511.082 -2450,1.6171,0,920.6399,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.155,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.736,3511.082 -2451,1.61445,0,920.691,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.749,3511.082 -2452,1.6118,0,920.74209,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.763,3511.082 -2453,1.60915,0,920.79319,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.776,3511.082 -2454,1.6065,0,920.84428,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.789,3511.082 -2455,1.60385,0,920.89538,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.802,3511.082 -2456,1.6012,0,920.94648,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.815,3511.082 -2457,1.59855,0,920.99757,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.829,3511.082 -2458,1.5959,0,921.04867,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.842,3511.082 -2459,1.59325,0,921.09976,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.855,3511.082 -2460,1.5906,0,921.15086,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.868,3511.082 -2461,1.58795,0,921.20196,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.881,3511.082 -2462,1.5853,0,921.25305,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.894,3511.082 -2463,1.58265,0,921.30415,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.907,3511.082 -2464,1.58,0,921.35524,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.919,3511.082 -2465,1.57735,0,921.40634,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.932,3511.082 -2466,1.5747,0,921.45744,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.945,3511.082 -2467,1.57205,0,921.50853,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.958,3511.082 -2468,1.5694,0,921.55963,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.971,3511.082 -2469,1.56675,0,921.61072,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,159.983,3511.082 -2470,1.5641,0,921.66182,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,159.996,3511.082 -2471,1.56145,0,921.71292,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.009,3511.082 -2472,1.5588,0,921.76401,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.021,3511.082 -2473,1.55615,0,921.81511,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.034,3511.082 -2474,1.5535,0,921.8662,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.046,3511.082 -2475,1.55085,0,921.9173,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.059,3511.082 -2476,1.5482,0,921.9684,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.071,3511.082 -2477,1.54555,0,922.01949,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.084,3511.082 -2478,1.5429,0,922.07059,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.096,3511.082 -2479,1.54025,0,922.12168,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.109,3511.082 -2480,1.5376,0,922.17278,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.121,3511.082 -2481,1.53495,0,922.22388,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.134,3511.082 -2482,1.5323,0,922.27497,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.146,3511.082 -2483,1.52965,0,922.32607,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.158,3511.082 -2484,1.527,0,922.37716,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.17,3511.082 -2485,1.52435,0,922.42826,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.183,3511.082 -2486,1.5217,0,922.47936,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.195,3511.082 -2487,1.51905,0,922.53045,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.207,3511.082 -2488,1.5164,0,922.58155,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.219,3511.082 -2489,1.51375,0,922.63264,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.231,3511.082 -2490,1.5111,0,922.68374,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.244,3511.082 -2491,1.50845,0,922.73484,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.256,3511.082 -2492,1.5058,0,922.78593,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.268,3511.082 -2493,1.50315,0,922.83703,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.28,3511.082 -2494,1.5005,0,922.88812,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.292,3511.082 -2495,1.49785,0,922.93922,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.304,3511.082 -2496,1.4952,0,922.99032,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.316,3511.082 -2497,1.49255,0,923.04141,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.328,3511.082 -2498,1.4899,0,923.09251,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.339,3511.082 -2499,1.48725,0,923.1436,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0.008,0,160.351,3511.082 -2500,1.4846,0,923.1947,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0.008,0,160.351,3511.082 diff --git a/inst/shinyApp/www/input/emissions/RCP85_emissions.csv b/inst/shinyApp/www/input/emissions/RCP85_emissions.csv deleted file mode 100644 index a856dce..0000000 --- a/inst/shinyApp/www/input/emissions/RCP85_emissions.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP 8.5 emissions,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,150,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.1615,1.165,322.1577,7.778,55.4143,55414.3,1058.9366,215.6435,38.9081,8.2076,36.1912,42.2092,11.4149,2.6001,0.4427,10.5529,12.3831,3.8842,17.9373,121.0746,15.3186,6.2176,38.6318,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.3523,1.1349,328.4342,7.8717,54.1117,54111.7,1056.3789,215.8292,39.0226,8.1641,35.9908,42.5348,11.2221,2.5502,0.4492,10.2947,13.7731,4.5338,22.1104,129.6223,18.1628,7.5465,50.375,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.5434,1.1045,334.75397,7.9653667,52.814733,52814.733,1053.8833,216.0247,39.1394,8.1208667,35.7901,42.860767,11.0262,2.4998333,0.45503333,10.037233,15.162767,5.1847667,26.273033,137.2526,20.954333,8.8781,62.118267,6.7489333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.7345,1.0741,341.07373,8.0590333,51.517767,51517.767,1051.3876,216.2202,39.2562,8.0776333,35.5894,43.186733,10.8303,2.4494667,0.46086667,9.7797667,16.552433,5.8357333,30.435667,144.8829,23.745867,10.2097,73.861533,6.8965667,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.9256,1.0437,347.3935,8.1527,50.2208,50220.8,1048.892,216.4157,39.373,8.0344,35.3887,43.5127,10.6344,2.3991,0.4667,9.5223,17.9421,6.4867,34.5983,152.5132,26.5374,11.5413,85.6048,7.0442,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082 -2011,9.18679,1.02998,354.56076,8.29296,49.9685,49968.5,1050.5457,217.31987,39.6333,7.99705,35.29844,44.01174,10.74841,2.42213,0.43848,8.68531,22.21208,6.56469,37.80811,163.76989,27.39032,10.50312,91.86659,7.1479,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,0,1.445,0.156,167.857,3511.082 -2012,9.44798,1.01626,361.72802,8.43322,49.7162,49716.2,1052.1995,218.22404,39.8936,7.9597,35.20818,44.51078,10.86242,2.44516,0.41026,7.84832,26.48206,6.64268,41.01792,175.02658,28.24324,9.46494,98.12838,7.2516,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,0,1.373,0.139,167.857,3511.082 -2013,9.70917,1.00254,368.89528,8.57348,49.4639,49463.9,1053.8532,219.12821,40.1539,7.92235,35.11792,45.00982,10.97643,2.46819,0.38204,7.01133,30.75204,6.72067,44.22773,186.28327,29.09616,8.42676,104.39017,7.3553,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,0,1.304,0.124,167.857,3511.082 -2014,9.97036,0.98882,376.06254,8.71374,49.2116,49211.6,1055.507,220.03238,40.4142,7.885,35.02766,45.50886,11.09044,2.49122,0.35382,6.17434,35.02202,6.79866,47.43754,197.53996,29.94908,7.38858,110.65196,7.459,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,0,1.239,0.11,167.857,3511.082 -2015,10.23155,0.9751,383.2298,8.854,48.9593,48959.3,1057.1607,220.93655,40.6745,7.84765,34.9374,46.0079,11.20445,2.51425,0.3256,5.33735,39.292,6.87665,50.64735,208.79665,30.802,6.3504,116.91375,7.5627,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,0,1.177,0.098,155.925,3511.082 -2016,10.49274,0.96138,390.39706,8.99426,48.707,48707,1058.8144,221.84072,40.9348,7.8103,34.84714,46.50694,11.31846,2.53728,0.29738,4.50036,43.56198,6.95464,53.85716,220.05334,31.65492,5.31222,123.17554,7.6664,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,0,1.118,0.087,155.925,3511.082 -2017,10.75393,0.94766,397.56432,9.13452,48.4547,48454.7,1060.4682,222.74489,41.1951,7.77295,34.75688,47.00598,11.43247,2.56031,0.26916,3.66337,47.83196,7.03263,57.06697,231.31003,32.50784,4.27404,129.43733,7.7701,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,0,1.062,0.078,155.925,3511.082 -2018,11.01512,0.93394,404.73158,9.27478,48.2024,48202.4,1062.1219,223.64906,41.4554,7.7356,34.66662,47.50502,11.54648,2.58334,0.24094,2.82638,52.10194,7.11062,60.27678,242.56672,33.36076,3.23586,135.69912,7.8738,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,0,1.009,0.069,155.925,3511.082 -2019,11.27631,0.92022,411.89884,9.41504,47.9501,47950.1,1063.7757,224.55323,41.7157,7.69825,34.57636,48.00406,11.66049,2.60637,0.21272,1.98939,56.37192,7.18861,63.48659,253.82341,34.21368,2.19768,141.96091,7.9775,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0,0.959,0.061,155.925,3511.082 -2020,11.5375,0.9065,419.0661,9.5553,47.6978,47697.8,1065.4294,225.4574,41.976,7.6609,34.4861,48.5031,11.7745,2.6294,0.1845,1.1524,60.6419,7.2666,66.6964,265.0801,35.0666,1.1595,148.2227,8.0812,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0,0.911,0.055,155.925,3511.082 -2021,11.76766,0.88735,425.58022,9.67767,47.17596,47175.96,1060.7002,225.45703,41.9129,7.59914,34.34997,48.88879,11.83853,2.64399,0.17723,1.1063,61.78125,7.35248,67.92232,271.95969,35.3783,1.10411,152.77696,8.27191,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0,0.865,0.049,155.925,3511.082 -2022,11.99782,0.8682,432.09434,9.80004,46.65412,46654.12,1055.971,225.45666,41.8498,7.53738,34.21384,49.27448,11.90256,2.65858,0.16996,1.0602,62.9206,7.43836,69.14824,278.83928,35.69,1.04872,157.33122,8.46262,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0,0.822,0.043,155.925,3511.082 -2023,12.22798,0.84905,438.60846,9.92241,46.13228,46132.28,1051.2418,225.45629,41.7867,7.47562,34.07771,49.66017,11.96659,2.67317,0.16269,1.0141,64.05995,7.52424,70.37416,285.71887,36.0017,0.99333,161.88548,8.65333,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0,0.781,0.039,155.925,3511.082 -2024,12.45814,0.8299,445.12258,10.04478,45.61044,45610.44,1046.5126,225.45592,41.7236,7.41386,33.94158,50.04586,12.03062,2.68776,0.15542,0.968,65.1993,7.61012,71.60008,292.59846,36.3134,0.93794,166.43974,8.84404,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0,0.742,0.034,155.925,3511.082 -2025,12.6883,0.81075,451.6367,10.16715,45.0886,45088.6,1041.7833,225.45555,41.6605,7.3521,33.80545,50.43155,12.09465,2.70235,0.14815,0.9219,66.33865,7.696,72.826,299.47805,36.6251,0.88255,170.994,9.03475,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0,0.705,0.031,155.925,3511.082 -2026,12.91846,0.7916,458.15082,10.28952,44.56676,44566.76,1037.0541,225.45518,41.5974,7.29034,33.66932,50.81724,12.15868,2.71694,0.14088,0.8758,67.478,7.78188,74.05192,306.35764,36.9368,0.82716,175.54826,9.22546,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0,0.669,0.027,155.925,3511.082 -2027,13.14862,0.77245,464.66494,10.41189,44.04492,44044.92,1032.3249,225.45481,41.5343,7.22858,33.53319,51.20293,12.22271,2.73153,0.13361,0.8297,68.61735,7.86776,75.27784,313.23723,37.2485,0.77177,180.10252,9.41617,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0,0.636,0.024,155.925,3511.082 -2028,13.37878,0.7533,471.17906,10.53426,43.52308,43523.08,1027.5957,225.45444,41.4712,7.16682,33.39706,51.58862,12.28674,2.74612,0.12634,0.7836,69.7567,7.95364,76.50376,320.11682,37.5602,0.71638,184.65678,9.60688,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0,0.604,0.022,155.925,3511.082 -2029,13.60894,0.73415,477.69318,10.65663,43.00124,43001.24,1022.8665,225.45407,41.4081,7.10506,33.26093,51.97431,12.35077,2.76071,0.11907,0.7375,70.89605,8.03952,77.72968,326.99641,37.8719,0.66099,189.21104,9.79759,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0,0.574,0.019,155.925,3511.082 -2030,13.8391,0.715,484.2073,10.779,42.4794,42479.4,1018.1373,225.4537,41.345,7.0433,33.1248,52.36,12.4148,2.7753,0.1118,0.6914,72.0354,8.1254,78.9556,333.876,38.1836,0.6056,193.7653,9.9883,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0,0.545,0.017,155.925,3511.082 -2031,14.13385,0.708,493.52545,10.90391,41.50452,41504.52,1011.8253,224.72621,40.90273,6.95231,32.96601,52.7122,12.38727,2.77061,0.1119,0.66362,72.90303,8.22403,81.08502,341.18468,38.94891,0.6214,192.50584,10.11551,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0,0.518,0.015,155.925,3511.082 -2032,14.4286,0.701,502.8436,11.02882,40.52964,40529.64,1005.5133,223.99872,40.46046,6.86132,32.80722,53.0644,12.35974,2.76592,0.112,0.63584,73.77066,8.32266,83.21444,348.49336,39.71422,0.6372,191.24638,10.24272,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0,0.492,0.013,155.925,3511.082 -2033,14.72335,0.694,512.16175,11.15373,39.55476,39554.76,999.20136,223.27123,40.01819,6.77033,32.64843,53.4166,12.33221,2.76123,0.1121,0.60806,74.63829,8.42129,85.34386,355.80204,40.47953,0.653,189.98692,10.36993,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0,0.467,0.012,155.925,3511.082 -2034,15.0181,0.687,521.4799,11.27864,38.57988,38579.88,992.88938,222.54374,39.57592,6.67934,32.48964,53.7688,12.30468,2.75654,0.1122,0.58028,75.50592,8.51992,87.47328,363.11072,41.24484,0.6688,188.72746,10.49714,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0,0.444,0.011,155.925,3511.082 -2035,15.31285,0.68,530.79805,11.40355,37.605,37605,986.5774,221.81625,39.13365,6.58835,32.33085,54.121,12.27715,2.75185,0.1123,0.5525,76.37355,8.61855,89.6027,370.4194,42.01015,0.6846,187.468,10.62435,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0,0.422,0.01,155.925,3511.082 -2036,15.6076,0.673,540.1162,11.52846,36.63012,36630.12,980.26542,221.08876,38.69138,6.49736,32.17206,54.4732,12.24962,2.74716,0.1124,0.52472,77.24118,8.71718,91.73212,377.72808,42.77546,0.7004,186.20854,10.75156,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0,0.401,0.008,155.925,3511.082 -2037,15.90235,0.666,549.43435,11.65337,35.65524,35655.24,973.95344,220.36127,38.24911,6.40637,32.01327,54.8254,12.22209,2.74247,0.1125,0.49694,78.10881,8.81581,93.86154,385.03676,43.54077,0.7162,184.94908,10.87877,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0,0.381,0.008,155.925,3511.082 -2038,16.1971,0.659,558.7525,11.77828,34.68036,34680.36,967.64146,219.63378,37.80684,6.31538,31.85448,55.1776,12.19456,2.73778,0.1126,0.46916,78.97644,8.91444,95.99096,392.34544,44.30608,0.732,183.68962,11.00598,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0,0.362,0.007,155.925,3511.082 -2039,16.49185,0.652,568.07065,11.90319,33.70548,33705.48,961.32948,218.90629,37.36457,6.22439,31.69569,55.5298,12.16703,2.73309,0.1127,0.44138,79.84407,9.01307,98.12038,399.65412,45.07139,0.7478,182.43016,11.13319,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0,0.344,0.006,155.925,3511.082 -2040,16.7866,0.645,577.3888,12.0281,32.7306,32730.6,955.0175,218.1788,36.9223,6.1334,31.5369,55.882,12.1395,2.7284,0.1128,0.4136,80.7117,9.1117,100.2498,406.9628,45.8367,0.7636,181.1707,11.2604,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0,0.326,0.005,155.925,3511.082 -2041,17.1284,0.6381,587.33132,12.10488,32.06863,32068.63,950.1349,217.20395,36.58085,6.08412,31.38737,56.15821,12.17462,2.73746,0.11238,0.39687,80.10127,9.23927,101.83831,412.75679,46.27373,0.71926,179.22469,11.3309,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0,0.31,0.005,155.925,3511.082 -2042,17.4702,0.6312,597.27384,12.18166,31.40666,31406.66,945.2523,216.2291,36.2394,6.03484,31.23784,56.43442,12.20974,2.74652,0.11196,0.38014,79.49084,9.36684,103.42682,418.55078,46.71076,0.67492,177.27868,11.4014,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0,0.295,0.004,155.925,3511.082 -2043,17.812,0.6243,607.21636,12.25844,30.74469,30744.69,940.3697,215.25425,35.89795,5.98556,31.08831,56.71063,12.24486,2.75558,0.11154,0.36341,78.88041,9.49441,105.01533,424.34477,47.14779,0.63058,175.33267,11.4719,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0,0.28,0.004,155.925,3511.082 -2044,18.1538,0.6174,617.15888,12.33522,30.08272,30082.72,935.4871,214.2794,35.5565,5.93628,30.93878,56.98684,12.27998,2.76464,0.11112,0.34668,78.26998,9.62198,106.60384,430.13876,47.58482,0.58624,173.38666,11.5424,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0,0.266,0.003,155.925,3511.082 -2045,18.4956,0.6105,627.1014,12.412,29.42075,29420.75,930.6045,213.30455,35.21505,5.887,30.78925,57.26305,12.3151,2.7737,0.1107,0.32995,77.65955,9.74955,108.19235,435.93275,48.02185,0.5419,171.44065,11.6129,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0,0.253,0.003,155.925,3511.082 -2046,18.8374,0.6036,637.04392,12.48878,28.75878,28758.78,925.7219,212.3297,34.8736,5.83772,30.63972,57.53926,12.35022,2.78276,0.11028,0.31322,77.04912,9.87712,109.78086,441.72674,48.45888,0.49756,169.49464,11.6834,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0,0.24,0.003,155.925,3511.082 -2047,19.1792,0.5967,646.98644,12.56556,28.09681,28096.81,920.8393,211.35485,34.53215,5.78844,30.49019,57.81547,12.38534,2.79182,0.10986,0.29649,76.43869,10.00469,111.36937,447.52073,48.89591,0.45322,167.54863,11.7539,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0,0.228,0.002,155.925,3511.082 -2048,19.521,0.5898,656.92896,12.64234,27.43484,27434.84,915.9567,210.38,34.1907,5.73916,30.34066,58.09168,12.42046,2.80088,0.10944,0.27976,75.82826,10.13226,112.95788,453.31472,49.33294,0.40888,165.60262,11.8244,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0,0.217,0.002,155.925,3511.082 -2049,19.8628,0.5829,666.87148,12.71912,26.77287,26772.87,911.0741,209.40515,33.84925,5.68988,30.19113,58.36789,12.45558,2.80994,0.10902,0.26303,75.21783,10.25983,114.54639,459.10871,49.76997,0.36454,163.65661,11.8949,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0,0.206,0.002,155.925,3511.082 -2050,20.2046,0.576,676.814,12.7959,26.1109,26110.9,906.1915,208.4303,33.5078,5.6406,30.0416,58.6441,12.4907,2.819,0.1086,0.2463,74.6074,10.3874,116.1349,464.9027,50.207,0.3202,161.7106,11.9654,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0,0.195,0.002,155.925,3511.082 -2051,20.54375,0.5685,683.65001,12.85847,25.77037,25770.37,899.68938,207.70767,33.32257,5.59518,29.87913,58.85085,12.41897,2.80583,0.10848,0.23542,75.55522,10.56431,117.32942,469.21826,50.42871,0.30297,160.45046,12.17483,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0,0.186,0.001,155.925,3511.082 -2052,20.8829,0.561,690.48602,12.92104,25.42984,25429.84,893.18726,206.98504,33.13734,5.54976,29.71666,59.0576,12.34724,2.79266,0.10836,0.22454,76.50304,10.74122,118.52394,473.53382,50.65042,0.28574,159.19032,12.38426,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0,0.176,0.001,155.925,3511.082 -2053,21.22205,0.5535,697.32203,12.98361,25.08931,25089.31,886.68514,206.26241,32.95211,5.50434,29.55419,59.26435,12.27551,2.77949,0.10824,0.21366,77.45086,10.91813,119.71846,477.84938,50.87213,0.26851,157.93018,12.59369,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0,0.168,0.001,155.925,3511.082 -2054,21.5612,0.546,704.15804,13.04618,24.74878,24748.78,880.18302,205.53978,32.76688,5.45892,29.39172,59.4711,12.20378,2.76632,0.10812,0.20278,78.39868,11.09504,120.91298,482.16494,51.09384,0.25128,156.67004,12.80312,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0,0.159,0.001,155.925,3511.082 -2055,21.90035,0.5385,710.99405,13.10875,24.40825,24408.25,873.6809,204.81715,32.58165,5.4135,29.22925,59.67785,12.13205,2.75315,0.108,0.1919,79.3465,11.27195,122.1075,486.4805,51.31555,0.23405,155.4099,13.01255,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0,0.151,0.001,155.925,3511.082 -2056,22.2395,0.531,717.83006,13.17132,24.06772,24067.72,867.17878,204.09452,32.39642,5.36808,29.06678,59.8846,12.06032,2.73998,0.10788,0.18102,80.29432,11.44886,123.30202,490.79606,51.53726,0.21682,154.14976,13.22198,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0,0.144,0.001,155.925,3511.082 -2057,22.57865,0.5235,724.66607,13.23389,23.72719,23727.19,860.67666,203.37189,32.21119,5.32266,28.90431,60.09135,11.98859,2.72681,0.10776,0.17014,81.24214,11.62577,124.49654,495.11162,51.75897,0.19959,152.88962,13.43141,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0,0.136,0.001,155.925,3511.082 -2058,22.9178,0.516,731.50208,13.29646,23.38666,23386.66,854.17454,202.64926,32.02596,5.27724,28.74184,60.2981,11.91686,2.71364,0.10764,0.15926,82.18996,11.80268,125.69106,499.42718,51.98068,0.18236,151.62948,13.64084,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0,0.13,0.001,155.925,3511.082 -2059,23.25695,0.5085,738.33809,13.35903,23.04613,23046.13,847.67242,201.92663,31.84073,5.23182,28.57937,60.50485,11.84513,2.70047,0.10752,0.14838,83.13778,11.97959,126.88558,503.74274,52.20239,0.16513,150.36934,13.85027,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0,0.123,0.001,155.925,3511.082 -2060,23.5961,0.501,745.1741,13.4216,22.7056,22705.6,841.1703,201.204,31.6555,5.1864,28.4169,60.7116,11.7734,2.6873,0.1074,0.1375,84.0856,12.1565,128.0801,508.0583,52.4241,0.1479,149.1092,14.0597,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0,0.117,0.001,155.925,3511.082 -2061,23.83271,0.4921,748.66794,13.47346,22.44148,22441.48,836.60001,200.44051,31.50876,5.15328,28.30481,60.89133,11.78015,2.69384,0.10732,0.13105,85.06506,12.33644,129.34352,512.72379,52.64359,0.146,147.84735,14.00293,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0,0.111,0,155.925,3511.082 -2062,24.06932,0.4832,752.16178,13.52532,22.17736,22177.36,832.02972,199.67702,31.36202,5.12016,28.19272,61.07106,11.7869,2.70038,0.10724,0.1246,86.04452,12.51638,130.60694,517.38928,52.86308,0.1441,146.5855,13.94616,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0,0.106,0,155.925,3511.082 -2063,24.30593,0.4743,755.65562,13.57718,21.91324,21913.24,827.45943,198.91353,31.21528,5.08704,28.08063,61.25079,11.79365,2.70692,0.10716,0.11815,87.02398,12.69632,131.87036,522.05477,53.08257,0.1422,145.32365,13.88939,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0,0.1,0,155.925,3511.082 -2064,24.54254,0.4654,759.14946,13.62904,21.64912,21649.12,822.88914,198.15004,31.06854,5.05392,27.96854,61.43052,11.8004,2.71346,0.10708,0.1117,88.00344,12.87626,133.13378,526.72026,53.30206,0.1403,144.0618,13.83262,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0,0.095,0,155.925,3511.082 -2065,24.77915,0.4565,762.6433,13.6809,21.385,21385,818.31885,197.38655,30.9218,5.0208,27.85645,61.61025,11.80715,2.72,0.107,0.10525,88.9829,13.0562,134.3972,531.38575,53.52155,0.1384,142.79995,13.77585,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0,0.091,0,155.925,3511.082 -2066,25.01576,0.4476,766.13714,13.73276,21.12088,21120.88,813.74856,196.62306,30.77506,4.98768,27.74436,61.78998,11.8139,2.72654,0.10692,0.0988,89.96236,13.23614,135.66062,536.05124,53.74104,0.1365,141.5381,13.71908,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0,0.086,0,155.925,3511.082 -2067,25.25237,0.4387,769.63098,13.78462,20.85676,20856.76,809.17827,195.85957,30.62832,4.95456,27.63227,61.96971,11.82065,2.73308,0.10684,0.09235,90.94182,13.41608,136.92404,540.71673,53.96053,0.1346,140.27625,13.66231,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0,0.082,0,155.925,3511.082 -2068,25.48898,0.4298,773.12482,13.83648,20.59264,20592.64,804.60798,195.09608,30.48158,4.92144,27.52018,62.14944,11.8274,2.73962,0.10676,0.0859,91.92128,13.59602,138.18746,545.38222,54.18002,0.1327,139.0144,13.60554,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0,0.078,0,155.925,3511.082 -2069,25.72559,0.4209,776.61866,13.88834,20.32852,20328.52,800.03769,194.33259,30.33484,4.88832,27.40809,62.32917,11.83415,2.74616,0.10668,0.07945,92.90074,13.77596,139.45088,550.04771,54.39951,0.1308,137.75255,13.54877,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0,0.074,0,155.925,3511.082 -2070,25.9622,0.412,780.1125,13.9402,20.0644,20064.4,795.4674,193.5691,30.1881,4.8552,27.296,62.5089,11.8409,2.7527,0.1066,0.073,93.8802,13.9559,140.7143,554.7132,54.619,0.1289,136.4907,13.492,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0,0.07,0,155.925,3511.082 -2071,26.10659,0.4017,784.24064,14.00204,19.90252,19902.52,791.64666,193.07591,30.06564,4.83481,27.20364,62.64236,11.8161,2.75174,0.10626,0.06942,94.1193,14.18108,141.11548,559.74698,54.42783,0.12734,135.66527,13.63038,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0,0.067,0,155.925,3511.082 -2072,26.25098,0.3914,788.36878,14.06388,19.74064,19740.64,787.82592,192.58272,29.94318,4.81442,27.11128,62.77582,11.7913,2.75078,0.10592,0.06584,94.3584,14.40626,141.51666,564.78076,54.23666,0.12578,134.83984,13.76876,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0,0.063,0,155.925,3511.082 -2073,26.39537,0.3811,792.49692,14.12572,19.57876,19578.76,784.00518,192.08953,29.82072,4.79403,27.01892,62.90928,11.7665,2.74982,0.10558,0.06226,94.5975,14.63144,141.91784,569.81454,54.04549,0.12422,134.01441,13.90714,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0,0.06,0,155.925,3511.082 -2074,26.53976,0.3708,796.62506,14.18756,19.41688,19416.88,780.18444,191.59634,29.69826,4.77364,26.92656,63.04274,11.7417,2.74886,0.10524,0.05868,94.8366,14.85662,142.31902,574.84832,53.85432,0.12266,133.18898,14.04552,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0,0.057,0,155.925,3511.082 -2075,26.68415,0.3605,800.7532,14.2494,19.255,19255,776.3637,191.10315,29.5758,4.75325,26.8342,63.1762,11.7169,2.7479,0.1049,0.0551,95.0757,15.0818,142.7202,579.8821,53.66315,0.1211,132.36355,14.1839,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0,0.054,0,155.925,3511.082 -2076,26.82854,0.3502,804.88134,14.31124,19.09312,19093.12,772.54296,190.60996,29.45334,4.73286,26.74184,63.30966,11.6921,2.74694,0.10456,0.05152,95.3148,15.30698,143.12138,584.91588,53.47198,0.11954,131.53812,14.32228,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0,0.052,0,155.925,3511.082 -2077,26.97293,0.3399,809.00948,14.37308,18.93124,18931.24,768.72222,190.11677,29.33088,4.71247,26.64948,63.44312,11.6673,2.74598,0.10422,0.04794,95.5539,15.53216,143.52256,589.94966,53.28081,0.11798,130.71269,14.46066,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0,0.049,0,155.925,3511.082 -2078,27.11732,0.3296,813.13762,14.43492,18.76936,18769.36,764.90148,189.62358,29.20842,4.69208,26.55712,63.57658,11.6425,2.74502,0.10388,0.04436,95.793,15.75734,143.92374,594.98344,53.08964,0.11642,129.88726,14.59904,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0,0.046,0,155.925,3511.082 -2079,27.26171,0.3193,817.26576,14.49676,18.60748,18607.48,761.08074,189.13039,29.08596,4.67169,26.46476,63.71004,11.6177,2.74406,0.10354,0.04078,96.0321,15.98252,144.32492,600.01722,52.89847,0.11486,129.06183,14.73742,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0,0.044,0,155.925,3511.082 -2080,27.4061,0.309,821.3939,14.5586,18.4456,18445.6,757.26,188.6372,28.9635,4.6513,26.3724,63.8435,11.5929,2.7431,0.1032,0.0372,96.2712,16.2077,144.7261,605.051,52.7073,0.1133,128.2364,14.8758,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0,0.042,0,155.925,3511.082 -2081,27.49916,0.2975,826.32941,14.63201,18.04869,18048.69,753.34328,187.89006,28.78615,4.62775,26.23123,63.99565,11.54293,2.73607,0.1026,0.03348,95.76444,16.48786,145.0082,609.85911,52.45431,0.11214,127.43725,14.99349,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0,0.04,0,155.925,3511.082 -2082,27.59222,0.286,831.26492,14.70542,17.65178,17651.78,749.42656,187.14292,28.6088,4.6042,26.09006,64.1478,11.49296,2.72904,0.102,0.02976,95.25768,16.76802,145.2903,614.66722,52.20132,0.11098,126.6381,15.11118,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0,0.038,0,155.925,3511.082 -2083,27.68528,0.2745,836.20043,14.77883,17.25487,17254.87,745.50984,186.39578,28.43145,4.58065,25.94889,64.29995,11.44299,2.72201,0.1014,0.02604,94.75092,17.04818,145.5724,619.47533,51.94833,0.10982,125.83895,15.22887,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0,0.036,0,155.925,3511.082 -2084,27.77834,0.263,841.13594,14.85224,16.85796,16857.96,741.59312,185.64864,28.2541,4.5571,25.80772,64.4521,11.39302,2.71498,0.1008,0.02232,94.24416,17.32834,145.8545,624.28344,51.69534,0.10866,125.0398,15.34656,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0,0.034,0,155.925,3511.082 -2085,27.8714,0.2515,846.07145,14.92565,16.46105,16461.05,737.6764,184.9015,28.07675,4.53355,25.66655,64.60425,11.34305,2.70795,0.1002,0.0186,93.7374,17.6085,146.1366,629.09155,51.44235,0.1075,124.24065,15.46425,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0,0.032,0,155.925,3511.082 -2086,27.96446,0.24,851.00696,14.99906,16.06414,16064.14,733.75968,184.15436,27.8994,4.51,25.52538,64.7564,11.29308,2.70092,0.0996,0.01488,93.23064,17.88866,146.4187,633.89966,51.18936,0.10634,123.4415,15.58194,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0,0.031,0,155.925,3511.082 -2087,28.05752,0.2285,855.94247,15.07247,15.66723,15667.23,729.84296,183.40722,27.72205,4.48645,25.38421,64.90855,11.24311,2.69389,0.099,0.01116,92.72388,18.16882,146.7008,638.70777,50.93637,0.10518,122.64235,15.69963,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0,0.029,0,155.925,3511.082 -2088,28.15058,0.217,860.87798,15.14588,15.27032,15270.32,725.92624,182.66008,27.5447,4.4629,25.24304,65.0607,11.19314,2.68686,0.0984,0.00744,92.21712,18.44898,146.9829,643.51588,50.68338,0.10402,121.8432,15.81732,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0,0.028,0,155.925,3511.082 -2089,28.24364,0.2055,865.81349,15.21929,14.87341,14873.41,722.00952,181.91294,27.36735,4.43935,25.10187,65.21285,11.14317,2.67983,0.0978,0.00372,91.71036,18.72914,147.265,648.32399,50.43039,0.10286,121.04405,15.93501,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0,0.026,0,155.925,3511.082 -2090,28.3367,0.194,870.749,15.2927,14.4765,14476.5,718.0928,181.1658,27.19,4.4158,24.9607,65.365,11.0932,2.6728,0.0972,0,91.2036,19.0093,147.5471,653.1321,50.1774,0.1017,120.2449,16.0527,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0,0.025,0,155.925,3511.082 -2091,28.37703,0.1823,872.43319,15.34099,14.31449,14314.49,715.31184,180.67318,27.09516,4.39918,24.85535,65.54619,11.06043,2.66808,0.09635,0,90.20593,19.2916,147.62282,658.16476,49.84386,0.10064,121.40096,16.13966,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0,0.024,0,155.925,3511.082 -2092,28.41736,0.1706,874.11738,15.38928,14.15248,14152.48,712.53088,180.18056,27.00032,4.38256,24.75,65.72738,11.02766,2.66336,0.0955,0,89.20826,19.5739,147.69854,663.19742,49.51032,0.09958,122.55702,16.22662,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0,0.023,0,155.925,3511.082 -2093,28.45769,0.1589,875.80157,15.43757,13.99047,13990.47,709.74992,179.68794,26.90548,4.36594,24.64465,65.90857,10.99489,2.65864,0.09465,0,88.21059,19.8562,147.77426,668.23008,49.17678,0.09852,123.71308,16.31358,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0,0.022,0,155.925,3511.082 -2094,28.49802,0.1472,877.48576,15.48586,13.82846,13828.46,706.96896,179.19532,26.81064,4.34932,24.5393,66.08976,10.96212,2.65392,0.0938,0,87.21292,20.1385,147.84998,673.26274,48.84324,0.09746,124.86914,16.40054,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0,0.02,0,155.925,3511.082 -2095,28.53835,0.1355,879.16995,15.53415,13.66645,13666.45,704.188,178.7027,26.7158,4.3327,24.43395,66.27095,10.92935,2.6492,0.09295,0,86.21525,20.4208,147.9257,678.2954,48.5097,0.0964,126.0252,16.4875,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0,0.019,0,155.925,3511.082 -2096,28.57868,0.1238,880.85414,15.58244,13.50444,13504.44,701.40704,178.21008,26.62096,4.31608,24.3286,66.45214,10.89658,2.64448,0.0921,0,85.21758,20.7031,148.00142,683.32806,48.17616,0.09534,127.18126,16.57446,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0,0.018,0,155.925,3511.082 -2097,28.61901,0.1121,882.53833,15.63073,13.34243,13342.43,698.62608,177.71746,26.52612,4.29946,24.22325,66.63333,10.86381,2.63976,0.09125,0,84.21991,20.9854,148.07714,688.36072,47.84262,0.09428,128.33732,16.66142,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0,0.018,0,155.925,3511.082 -2098,28.65934,0.1004,884.22252,15.67902,13.18042,13180.42,695.84512,177.22484,26.43128,4.28284,24.1179,66.81452,10.83104,2.63504,0.0904,0,83.22224,21.2677,148.15286,693.39338,47.50908,0.09322,129.49338,16.74838,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0,0.017,0,155.925,3511.082 -2099,28.69967,0.0887,885.90671,15.72731,13.01841,13018.41,693.06416,176.73222,26.33644,4.26622,24.01255,66.99571,10.79827,2.63032,0.08955,0,82.22457,21.55,148.22858,698.42604,47.17554,0.09216,130.64944,16.83534,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0,0.016,0,155.925,3511.082 -2100,28.74,0.077,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0,0.015,0,155.925,3511.082 -2101,28.74,0.07392,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0,0.014,0,155.925,3511.082 -2102,28.74,0.07084,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0,0.014,0,155.925,3511.082 -2103,28.74,0.06776,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0,0.013,0,155.925,3511.082 -2104,28.74,0.06468,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0,0.012,0,155.925,3511.082 -2105,28.74,0.0616,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0,0.012,0,155.925,3511.082 -2106,28.74,0.05852,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0,0.011,0,155.925,3511.082 -2107,28.74,0.05544,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0,0.011,0,155.925,3511.082 -2108,28.74,0.05236,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0,0.01,0,155.925,3511.082 -2109,28.74,0.04928,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0,0.009,0,155.925,3511.082 -2110,28.74,0.0462,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0,0.009,0,155.925,3511.082 -2111,28.74,0.04312,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0,0.009,0,155.925,3511.082 -2112,28.74,0.04004,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0,0.008,0,155.925,3511.082 -2113,28.74,0.03696,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0,0.008,0,155.925,3511.082 -2114,28.74,0.03388,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0,0.007,0,155.925,3511.082 -2115,28.74,0.0308,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0,0.007,0,155.925,3511.082 -2116,28.74,0.02772,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0,0.007,0,155.925,3511.082 -2117,28.74,0.02464,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0,0.006,0,155.925,3511.082 -2118,28.74,0.02156,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0,0.006,0,155.925,3511.082 -2119,28.74,0.01848,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0,0.006,0,155.925,3511.082 -2120,28.74,0.0154,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0,0.005,0,155.925,3511.082 -2121,28.74,0.01232,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0,0.005,0,155.925,3511.082 -2122,28.74,0.00924,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0,0.005,0,155.925,3511.082 -2123,28.74,0.00616,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0,0.005,0,155.925,3511.082 -2124,28.74,0.00308,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0,0.004,0,155.925,3511.082 -2125,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0,0.004,0,155.925,3511.082 -2126,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0,0.004,0,155.925,3511.082 -2127,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0,0.004,0,155.925,3511.082 -2128,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0,0.004,0,155.925,3511.082 -2129,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0,0.003,0,155.925,3511.082 -2130,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0,0.003,0,155.925,3511.082 -2131,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0,0.003,0,155.925,3511.082 -2132,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0,0.003,0,155.925,3511.082 -2133,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0,0.003,0,155.925,3511.082 -2134,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0,0.003,0,155.925,3511.082 -2135,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0,0.002,0,155.925,3511.082 -2136,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0,0.002,0,155.925,3511.082 -2137,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0,0.002,0,155.925,3511.082 -2138,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0,0.002,0,155.925,3511.082 -2139,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0,0.002,0,155.925,3511.082 -2140,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0,0.002,0,155.925,3511.082 -2141,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0,0.002,0,155.925,3511.082 -2142,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0,0.002,0,155.925,3511.082 -2143,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0,0.002,0,155.925,3511.082 -2144,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0,0.002,0,155.925,3511.082 -2145,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0,0.001,0,155.925,3511.082 -2146,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0,0.001,0,155.925,3511.082 -2147,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0,0.001,0,155.925,3511.082 -2148,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0,0.001,0,155.925,3511.082 -2149,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.405,0,0,0,0,0,0,0,0.166,0.001,0,0,0.001,0,155.925,3511.082 -2150,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.392,0,0,0,0,0,0,0,0.157,0,0,0,0.001,0,155.925,3511.082 -2151,28.470205,0,887.7612,15.750727,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.656371,2.5994163,0.087873469,0.007146939,81.237246,21.837794,148.35837,703.62182,46.859673,0.091385714,131.82622,16.758923,0.379,0,0,0,0,0,0,0,0.15,0,0,0,0.001,0,155.925,3511.082 -2152,28.20041,0,887.93151,15.725853,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.547243,2.5732327,0.087046939,0.014293878,81.247592,21.843288,148.41245,703.78494,46.877347,0.091671429,131.84693,16.595547,0.366,0,0,0,0,0,0,0,0.142,0,0,0,0.001,0,155.925,3511.082 -2153,27.930615,0,888.10181,15.70098,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.438114,2.547049,0.086220408,0.021440816,81.257938,21.848782,148.46652,703.94806,46.89502,0.091957143,131.86765,16.43217,0.354,0,0,0,0,0,0,0,0.135,0,0,0,0.001,0,155.925,3511.082 -2154,27.66082,0,888.27211,15.676106,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.328986,2.5208653,0.085393878,0.028587755,81.268284,21.854276,148.5206,704.11118,46.912694,0.092242857,131.88837,16.268794,0.342,0,0,0,0,0,0,0,0.128,0,0,0,0.001,0,155.925,3511.082 -2155,27.391026,0,888.44242,15.651233,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.219857,2.4946816,0.084567347,0.035734694,81.27863,21.859769,148.57467,704.2743,46.930367,0.092528571,131.90908,16.105417,0.331,0,0,0,0,0,0,0,0.122,0,0,0,0.001,0,155.925,3511.082 -2156,27.121231,0,888.61272,15.626359,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.110729,2.468498,0.083740816,0.042881633,81.288976,21.865263,148.62875,704.43742,46.948041,0.092814286,131.9298,15.942041,0.32,0,0,0,0,0,0,0,0.116,0,0,0,0.001,0,155.925,3511.082 -2157,26.851436,0,888.78302,15.601486,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.0016,2.4423143,0.082914286,0.050028571,81.299321,21.870757,148.68282,704.60054,46.965714,0.0931,131.95051,15.778664,0.31,0,0,0,0,0,0,0,0.11,0,0,0,0.001,0,155.925,3511.082 -2158,26.581641,0,888.95332,15.576612,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.8924714,2.4161306,0.082087755,0.05717551,81.309667,21.876251,148.7369,704.76366,46.983388,0.093385714,131.97123,15.615288,0.299,0,0,0,0,0,0,0,0.104,0,0,0,0.001,0,155.925,3511.082 -2159,26.311846,0,889.12363,15.551739,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.7833429,2.3899469,0.081261224,0.064322449,81.320013,21.881745,148.79097,704.92678,47.001061,0.093671429,131.99195,15.451911,0.29,0,0,0,0,0,0,0,0.099,0,0,0,0.001,0,155.925,3511.082 -2160,26.042051,0,889.29393,15.526865,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.6742143,2.3637633,0.080434694,0.071469388,81.330359,21.887239,148.84504,705.0899,47.018735,0.093957143,132.01266,15.288535,0.28,0,0,0,0,0,0,0,0.094,0,0,0,0.001,0,155.925,3511.082 -2161,25.772256,0,889.46423,15.501992,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.5650857,2.3375796,0.079608163,0.078616327,81.340705,21.892733,148.89912,705.25302,47.036408,0.094242857,132.03338,15.125158,0.271,0,0,0,0,0,0,0,0.09,0,0,0,0.001,0,155.925,3511.082 -2162,25.502461,0,889.63454,15.477118,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.4559571,2.3113959,0.078781633,0.085763265,81.351051,21.898227,148.95319,705.41614,47.054082,0.094528571,132.0541,14.961782,0.262,0,0,0,0,0,0,0,0.085,0,0,0,0.001,0,155.925,3511.082 -2163,25.232666,0,889.80484,15.452245,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.3468286,2.2852122,0.077955102,0.092910204,81.361397,21.90372,149.00727,705.57927,47.071755,0.094814286,132.07481,14.798405,0.253,0,0,0,0,0,0,0,0.081,0,0,0,0.001,0,155.925,3511.082 -2164,24.962871,0,889.97514,15.427371,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.2377,2.2590286,0.077128571,0.10005714,81.371743,21.909214,149.06134,705.74239,47.089429,0.0951,132.09553,14.635029,0.245,0,0,0,0,0,0,0,0.077,0,0,0,0.001,0,155.925,3511.082 -2165,24.693077,0,890.14545,15.402498,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.1285714,2.2328449,0.076302041,0.10720408,81.382089,21.914708,149.11542,705.90551,47.107102,0.095385714,132.11624,14.471652,0.237,0,0,0,0,0,0,0,0.073,0,0,0,0.001,0,155.925,3511.082 -2166,24.423282,0,890.31575,15.377624,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.0194429,2.2066612,0.07547551,0.11435102,81.392435,21.920202,149.16949,706.06863,47.124776,0.095671429,132.13696,14.308276,0.229,0,0,0,0,0,0,0,0.069,0,0,0,0.001,0,155.925,3511.082 -2167,24.153487,0,890.48605,15.352751,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.9103143,2.1804776,0.07464898,0.12149796,81.402781,21.925696,149.22357,706.23175,47.142449,0.095957143,132.15768,14.144899,0.221,0,0,0,0,0,0,0,0.066,0,0,0,0,0,155.925,3511.082 -2168,23.883692,0,890.65636,15.327878,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.8011857,2.1542939,0.073822449,0.1286449,81.413127,21.93119,149.27764,706.39487,47.160122,0.096242857,132.17839,13.981522,0.214,0,0,0,0,0,0,0,0.063,0,0,0,0,0,155.925,3511.082 -2169,23.613897,0,890.82666,15.303004,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.6920571,2.1281102,0.072995918,0.13579184,81.423472,21.936684,149.33172,706.55799,47.177796,0.096528571,132.19911,13.818146,0.207,0,0,0,0,0,0,0,0.059,0,0,0,0,0,155.925,3511.082 -2170,23.344102,0,890.99696,15.278131,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.5829286,2.1019265,0.072169388,0.14293878,81.433818,21.942178,149.38579,706.72111,47.195469,0.096814286,132.21983,13.654769,0.2,0,0,0,0,0,0,0,0.056,0,0,0,0,0,155.925,3511.082 -2171,23.074307,0,891.16726,15.253257,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.4738,2.0757429,0.071342857,0.15008571,81.444164,21.947671,149.43986,706.88423,47.213143,0.0971,132.24054,13.491393,0.194,0,0,0,0,0,0,0,0.054,0,0,0,0,0,155.925,3511.082 -2172,22.804512,0,891.33757,15.228384,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.3646714,2.0495592,0.070516327,0.15723265,81.45451,21.953165,149.49394,707.04735,47.230816,0.097385714,132.26126,13.328016,0.187,0,0,0,0,0,0,0,0.051,0,0,0,0,0,155.925,3511.082 -2173,22.534717,0,891.50787,15.20351,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.2555429,2.0233755,0.069689796,0.16437959,81.464856,21.958659,149.54801,707.21047,47.24849,0.097671429,132.28198,13.16464,0.181,0,0,0,0,0,0,0,0.048,0,0,0,0,0,155.925,3511.082 -2174,22.264922,0,891.67817,15.178637,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.1464143,1.9971918,0.068863265,0.17152653,81.475202,21.964153,149.60209,707.37359,47.266163,0.097957143,132.30269,13.001263,0.175,0,0,0,0,0,0,0,0.046,0,0,0,0,0,155.925,3511.082 -2175,21.995128,0,891.84848,15.153763,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.0372857,1.9710082,0.068036735,0.17867347,81.485548,21.969647,149.65616,707.53671,47.283837,0.098242857,132.32341,12.837887,0.169,0,0,0,0,0,0,0,0.044,0,0,0,0,0,155.925,3511.082 -2176,21.725333,0,892.01878,15.12889,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.9281571,1.9448245,0.067210204,0.18582041,81.495894,21.975141,149.71024,707.69983,47.30151,0.098528571,132.34412,12.67451,0.164,0,0,0,0,0,0,0,0.042,0,0,0,0,0,155.925,3511.082 -2177,21.455538,0,892.18908,15.104016,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.8190286,1.9186408,0.066383673,0.19296735,81.50624,21.980635,149.76431,707.86295,47.319184,0.098814286,132.36484,12.511134,0.158,0,0,0,0,0,0,0,0.039,0,0,0,0,0,155.925,3511.082 -2178,21.185743,0,892.35939,15.079143,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.7099,1.8924571,0.065557143,0.20011429,81.516586,21.986129,149.81839,708.02607,47.336857,0.0991,132.38556,12.347757,0.153,0,0,0,0,0,0,0,0.037,0,0,0,0,0,155.925,3511.082 -2179,20.915948,0,892.52969,15.054269,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.6007714,1.8662735,0.064730612,0.20726122,81.526932,21.991622,149.87246,708.18919,47.354531,0.099385714,132.40627,12.184381,0.148,0,0,0,0,0,0,0,0.036,0,0,0,0,0,155.925,3511.082 -2180,20.646153,0,892.69999,15.029396,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.4916429,1.8400898,0.063904082,0.21440816,81.537278,21.997116,149.92653,708.35231,47.372204,0.099671429,132.42699,12.021004,0.143,0,0,0,0,0,0,0,0.034,0,0,0,0,0,155.925,3511.082 -2181,20.376358,0,892.87029,15.004522,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.3825143,1.8139061,0.063077551,0.2215551,81.547623,22.00261,149.98061,708.51543,47.389878,0.099957143,132.44771,11.857628,0.138,0,0,0,0,0,0,0,0.032,0,0,0,0,0,155.925,3511.082 -2182,20.106563,0,893.0406,14.979649,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.2733857,1.7877224,0.06225102,0.22870204,81.557969,22.008104,150.03468,708.67855,47.407551,0.10024286,132.46842,11.694251,0.134,0,0,0,0,0,0,0,0.031,0,0,0,0,0,155.925,3511.082 -2183,19.836768,0,893.2109,14.954776,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.1642571,1.7615388,0.06142449,0.23584898,81.568315,22.013598,150.08876,708.84167,47.425224,0.10052857,132.48914,11.530874,0.129,0,0,0,0,0,0,0,0.029,0,0,0,0,0,155.925,3511.082 -2184,19.566973,0,893.3812,14.929902,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.0551286,1.7353551,0.060597959,0.24299592,81.578661,22.019092,150.14283,709.00479,47.442898,0.10081429,132.50986,11.367498,0.125,0,0,0,0,0,0,0,0.028,0,0,0,0,0,155.925,3511.082 -2185,19.297179,0,893.55151,14.905029,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.946,1.7091714,0.059771429,0.25014286,81.589007,22.024586,150.19691,709.16791,47.460571,0.1011,132.53057,11.204121,0.121,0,0,0,0,0,0,0,0.026,0,0,0,0,0,155.925,3511.082 -2186,19.027384,0,893.72181,14.880155,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.8368714,1.6829878,0.058944898,0.2572898,81.599353,22.03008,150.25098,709.33103,47.478245,0.10138571,132.55129,11.040745,0.117,0,0,0,0,0,0,0,0.025,0,0,0,0,0,155.925,3511.082 -2187,18.757589,0,893.89211,14.855282,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.7277429,1.6568041,0.058118367,0.26443673,81.609699,22.035573,150.30506,709.49416,47.495918,0.10167143,132.572,10.877368,0.113,0,0,0,0,0,0,0,0.024,0,0,0,0,0,155.925,3511.082 -2188,18.487794,0,894.06242,14.830408,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.6186143,1.6306204,0.057291837,0.27158367,81.620045,22.041067,150.35913,709.65728,47.513592,0.10195714,132.59272,10.713992,0.109,0,0,0,0,0,0,0,0.022,0,0,0,0,0,155.925,3511.082 -2189,18.217999,0,894.23272,14.805535,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.5094857,1.6044367,0.056465306,0.27873061,81.630391,22.046561,150.41321,709.8204,47.531265,0.10224286,132.61344,10.550615,0.106,0,0,0,0,0,0,0,0.021,0,0,0,0,0,155.925,3511.082 -2190,17.948204,0,894.40302,14.780661,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.4003571,1.5782531,0.055638776,0.28587755,81.640737,22.052055,150.46728,709.98352,47.548939,0.10252857,132.63415,10.387239,0.102,0,0,0,0,0,0,0,0.02,0,0,0,0,0,155.925,3511.082 -2191,17.678409,0,894.57333,14.755788,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.2912286,1.5520694,0.054812245,0.29302449,81.651083,22.057549,150.52135,710.14664,47.566612,0.10281429,132.65487,10.223862,0.099,0,0,0,0,0,0,0,0.019,0,0,0,0,0,155.925,3511.082 -2192,17.408614,0,894.74363,14.730914,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.1821,1.5258857,0.053985714,0.30017143,81.661429,22.063043,150.57543,710.30976,47.584286,0.1031,132.67559,10.060486,0.096,0,0,0,0,0,0,0,0.018,0,0,0,0,0,155.925,3511.082 -2193,17.138819,0,894.91393,14.706041,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.0729714,1.499702,0.053159184,0.30731837,81.671774,22.068537,150.6295,710.47288,47.601959,0.10338571,132.6963,9.8971092,0.093,0,0,0,0,0,0,0,0.017,0,0,0,0,0,155.925,3511.082 -2194,16.869024,0,895.08423,14.681167,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.9638429,1.4735184,0.052332653,0.31446531,81.68212,22.074031,150.68358,710.636,47.619633,0.10367143,132.71702,9.7337327,0.089,0,0,0,0,0,0,0,0.016,0,0,0,0,0,155.925,3511.082 -2195,16.59923,0,895.25454,14.656294,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.8547143,1.4473347,0.051506122,0.32161224,81.692466,22.079524,150.73765,710.79912,47.637306,0.10395714,132.73773,9.5703561,0.087,0,0,0,0,0,0,0,0.016,0,0,0,0,0,155.925,3511.082 -2196,16.329435,0,895.42484,14.63142,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.7455857,1.421151,0.050679592,0.32875918,81.702812,22.085018,150.79173,710.96224,47.65498,0.10424286,132.75845,9.4069796,0.084,0,0,0,0,0,0,0,0.015,0,0,0,0,0,155.925,3511.082 -2197,16.05964,0,895.59514,14.606547,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.6364571,1.3949673,0.049853061,0.33590612,81.713158,22.090512,150.8458,711.12536,47.672653,0.10452857,132.77917,9.2436031,0.081,0,0,0,0,0,0,0,0.014,0,0,0,0,0,155.925,3511.082 -2198,15.789845,0,895.76545,14.581673,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.5273286,1.3687837,0.049026531,0.34305306,81.723504,22.096006,150.89988,711.28848,47.690327,0.10481429,132.79988,9.0802265,0.078,0,0,0,0,0,0,0,0.013,0,0,0,0,0,155.925,3511.082 -2199,15.52005,0,895.93575,14.5568,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.4182,1.3426,0.0482,0.3502,81.73385,22.1015,150.95395,711.4516,47.708,0.1051,132.8206,8.91685,0.076,0,0,0,0,0,0,0,0.013,0,0,0,0,0,155.925,3511.082 -2200,15.250255,0,896.10605,14.531927,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.3090714,1.3164163,0.047373469,0.35734694,81.744196,22.106994,151.00802,711.61472,47.725673,0.10538571,132.84132,8.7534735,0.073,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082 -2201,14.98046,0,896.27636,14.507053,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.1999429,1.2902327,0.046546939,0.36449388,81.754542,22.112488,151.0621,711.77784,47.743347,0.10567143,132.86203,8.5900969,0.071,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082 -2202,14.710665,0,896.44666,14.48218,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.0908143,1.264049,0.045720408,0.37164082,81.764888,22.117982,151.11617,711.94096,47.76102,0.10595714,132.88275,8.4267204,0.068,0,0,0,0,0,0,0,0.011,0,0,0,0,0,155.925,3511.082 -2203,14.44087,0,896.61696,14.457306,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.9816857,1.2378653,0.044893878,0.37878776,81.775234,22.123476,151.17025,712.10408,47.778694,0.10624286,132.90347,8.2633439,0.066,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082 -2204,14.171076,0,896.78727,14.432433,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.8725571,1.2116816,0.044067347,0.38593469,81.78558,22.128969,151.22432,712.2672,47.796367,0.10652857,132.92418,8.0999673,0.064,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082 -2205,13.901281,0,896.95757,14.407559,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.7634286,1.185498,0.043240816,0.39308163,81.795926,22.134463,151.2784,712.43032,47.814041,0.10681429,132.9449,7.9365908,0.062,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2206,13.631486,0,897.12787,14.382686,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.6543,1.1593143,0.042414286,0.40022857,81.806271,22.139957,151.33247,712.59344,47.831714,0.1071,132.96561,7.7732143,0.06,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2207,13.361691,0,897.29817,14.357812,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.5451714,1.1331306,0.041587755,0.40737551,81.816617,22.145451,151.38655,712.75656,47.849388,0.10738571,132.98633,7.6098378,0.058,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2208,13.091896,0,897.46848,14.332939,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.4360429,1.1069469,0.040761224,0.41452245,81.826963,22.150945,151.44062,712.91968,47.867061,0.10767143,133.00705,7.4464612,0.056,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2209,12.822101,0,897.63878,14.308065,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.3269143,1.0807633,0.039934694,0.42166939,81.837309,22.156439,151.49469,713.0828,47.884735,0.10795714,133.02776,7.2830847,0.054,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2210,12.552306,0,897.80908,14.283192,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.2177857,1.0545796,0.039108163,0.42881633,81.847655,22.161933,151.54877,713.24592,47.902408,0.10824286,133.04848,7.1197082,0.052,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2211,12.282511,0,897.97939,14.258318,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.1086571,1.0283959,0.038281633,0.43596327,81.858001,22.167427,151.60284,713.40904,47.920082,0.10852857,133.0692,6.9563316,0.051,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2212,12.012716,0,898.14969,14.233445,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.9995286,1.0022122,0.037455102,0.4431102,81.868347,22.17292,151.65692,713.57217,47.937755,0.10881429,133.08991,6.7929551,0.049,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2213,11.742921,0,898.31999,14.208571,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.8904,0.97602857,0.036628571,0.45025714,81.878693,22.178414,151.71099,713.73529,47.955429,0.1091,133.11063,6.6295786,0.047,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2214,11.473127,0,898.4903,14.183698,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.7812714,0.9498449,0.035802041,0.45740408,81.889039,22.183908,151.76507,713.89841,47.973102,0.10938571,133.13134,6.466202,0.046,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2215,11.203332,0,898.6606,14.158824,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.6721429,0.92366122,0.03497551,0.46455102,81.899385,22.189402,151.81914,714.06153,47.990776,0.10967143,133.15206,6.3028255,0.044,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2216,10.933537,0,898.8309,14.133951,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.5630143,0.89747755,0.03414898,0.47169796,81.909731,22.194896,151.87322,714.22465,48.008449,0.10995714,133.17278,6.139449,0.043,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2217,10.663742,0,899.00121,14.109078,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.4538857,0.87129388,0.033322449,0.4788449,81.920077,22.20039,151.92729,714.38777,48.026122,0.11024286,133.19349,5.9760724,0.041,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2218,10.393947,0,899.17151,14.084204,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.3447571,0.8451102,0.032495918,0.48599184,81.930422,22.205884,151.98137,714.55089,48.043796,0.11052857,133.21421,5.8126959,0.04,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2219,10.124152,0,899.34181,14.059331,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.2356286,0.81892653,0.031669388,0.49313878,81.940768,22.211378,152.03544,714.71401,48.061469,0.11081429,133.23493,5.6493194,0.039,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2220,9.8543571,0,899.51211,14.034457,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.1265,0.79274286,0.030842857,0.50028571,81.951114,22.216871,152.08951,714.87713,48.079143,0.1111,133.25564,5.4859429,0.037,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2221,9.5845622,0,899.68242,14.009584,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.0173714,0.76655918,0.030016327,0.50743265,81.96146,22.222365,152.14359,715.04025,48.096816,0.11138571,133.27636,5.3225663,0.036,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2222,9.3147673,0,899.85272,13.98471,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.9082429,0.74037551,0.029189796,0.51457959,81.971806,22.227859,152.19766,715.20337,48.11449,0.11167143,133.29708,5.1591898,0.035,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2223,9.0449724,0,900.02302,13.959837,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.7991143,0.71419184,0.028363265,0.52172653,81.982152,22.233353,152.25174,715.36649,48.132163,0.11195714,133.31779,4.9958133,0.034,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2224,8.7751776,0,900.19333,13.934963,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.6899857,0.68800816,0.027536735,0.52887347,81.992498,22.238847,152.30581,715.52961,48.149837,0.11224286,133.33851,4.8324367,0.033,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2225,8.5053827,0,900.36363,13.91009,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.5808571,0.66182449,0.026710204,0.53602041,82.002844,22.244341,152.35989,715.69273,48.16751,0.11252857,133.35922,4.6690602,0.032,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2226,8.2355878,0,900.53393,13.885216,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.4717286,0.63564082,0.025883673,0.54316735,82.01319,22.249835,152.41396,715.85585,48.185184,0.11281429,133.37994,4.5056837,0.031,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2227,7.9657929,0,900.70424,13.860343,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.3626,0.60945714,0.025057143,0.55031429,82.023536,22.255329,152.46804,716.01897,48.202857,0.1131,133.40066,4.3423071,0.03,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2228,7.695998,0,900.87454,13.835469,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.2534714,0.58327347,0.024230612,0.55746122,82.033882,22.260822,152.52211,716.18209,48.220531,0.11338571,133.42137,4.1789306,0.029,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2229,7.4262031,0,901.04484,13.810596,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.1443429,0.5570898,0.023404082,0.56460816,82.044228,22.266316,152.57618,716.34521,48.238204,0.11367143,133.44209,4.0155541,0.028,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2230,7.1564082,0,901.21514,13.785722,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.0352143,0.53090612,0.022577551,0.5717551,82.054573,22.27181,152.63026,716.50833,48.255878,0.11395714,133.46281,3.8521776,0.027,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2231,6.8866133,0,901.38545,13.760849,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.9260857,0.50472245,0.02175102,0.57890204,82.064919,22.277304,152.68433,716.67145,48.273551,0.11424286,133.48352,3.688801,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2232,6.6168184,0,901.55575,13.735976,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.8169571,0.47853878,0.02092449,0.58604898,82.075265,22.282798,152.73841,716.83457,48.291224,0.11452857,133.50424,3.5254245,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2233,6.3470235,0,901.72605,13.711102,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.7078286,0.4523551,0.020097959,0.59319592,82.085611,22.288292,152.79248,716.99769,48.308898,0.11481429,133.52496,3.362048,0.024,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2234,6.0772286,0,901.89636,13.686229,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.5987,0.42617143,0.019271429,0.60034286,82.095957,22.293786,152.84656,717.16081,48.326571,0.1151,133.54567,3.1986714,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2235,5.8074337,0,902.06666,13.661355,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.4895714,0.39998776,0.018444898,0.6074898,82.106303,22.29928,152.90063,717.32393,48.344245,0.11538571,133.56639,3.0352949,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2236,5.5376388,0,902.23696,13.636482,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.3804429,0.37380408,0.017618367,0.61463673,82.116649,22.304773,152.95471,717.48706,48.361918,0.11567143,133.5871,2.8719184,0.022,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2237,5.2678439,0,902.40727,13.611608,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.2713143,0.34762041,0.016791837,0.62178367,82.126995,22.310267,153.00878,717.65018,48.379592,0.11595714,133.60782,2.7085418,0.021,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2238,4.998049,0,902.57757,13.586735,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.1621857,0.32143673,0.015965306,0.62893061,82.137341,22.315761,153.06286,717.8133,48.397265,0.11624286,133.62854,2.5451653,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2239,4.7282541,0,902.74787,13.561861,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.0530571,0.29525306,0.015138776,0.63607755,82.147687,22.321255,153.11693,717.97642,48.414939,0.11652857,133.64925,2.3817888,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2240,4.4584592,0,902.91818,13.536988,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.94392857,0.26906939,0.014312245,0.64322449,82.158033,22.326749,153.171,718.13954,48.432612,0.11681429,133.66997,2.2184122,0.019,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2241,4.1886643,0,903.08848,13.512114,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.8348,0.24288571,0.013485714,0.65037143,82.168379,22.332243,153.22508,718.30266,48.450286,0.1171,133.69069,2.0550357,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2242,3.9188694,0,903.25878,13.487241,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.72567143,0.21670204,0.012659184,0.65751837,82.178724,22.337737,153.27915,718.46578,48.467959,0.11738571,133.7114,1.8916592,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2243,3.6490745,0,903.42908,13.462367,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.61654286,0.19051837,0.011832653,0.66466531,82.18907,22.343231,153.33323,718.6289,48.485633,0.11767143,133.73212,1.7282827,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2244,3.3792796,0,903.59939,13.437494,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.50741429,0.16433469,0.011006122,0.67181224,82.199416,22.348724,153.3873,718.79202,48.503306,0.11795714,133.75283,1.5649061,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2245,3.1094847,0,903.76969,13.41262,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.39828571,0.13815102,0.010179592,0.67895918,82.209762,22.354218,153.44138,718.95514,48.52098,0.11824286,133.77355,1.4015296,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2246,2.8396898,0,903.93999,13.387747,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.28915714,0.11196735,0.009353061,0.68610612,82.220108,22.359712,153.49545,719.11826,48.538653,0.11852857,133.79427,1.2381531,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2247,2.5698949,0,904.1103,13.362873,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.18002857,0.085783673,0.008526531,0.69325306,82.230454,22.365206,153.54953,719.28138,48.556327,0.11881429,133.81498,1.0747765,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2248,2.3001,0,904.2806,13.338,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0709,0.0596,0.0077,0.7004,82.2408,22.3707,153.6036,719.4445,48.574,0.1191,133.8357,0.9114,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2249,2.088,0,904.7895,13.343,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.7033,82.2473,22.3987,153.9761,720.2033,48.7474,0.1179,133.8876,0.9044,0.092,4.013,0.483,0.877,0.238,0,0,0,0.002,0,0,0,0.008,0,155.92,3511.082 -2250,2.0458,0,904.8603,13.3436,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.7033,82.2527,22.4002,153.9867,720.2524,48.7506,0.1179,133.8969,0.9044,0.092,4.013,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,155.937,3511.082 -2251,2.05004,0,904.9552,13.34368,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70338,82.26022,22.40226,154.00076,720.31816,48.75506,0.1179,133.90908,0.9044,0.092,4.014,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,155.96,3511.082 -2252,2.05428,0,905.0501,13.34376,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70346,82.26774,22.40432,154.01482,720.38392,48.75952,0.1179,133.92126,0.9044,0.092,4.015,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,155.983,3511.082 -2253,2.05852,0,905.145,13.34384,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70354,82.27526,22.40638,154.02888,720.44968,48.76398,0.1179,133.93344,0.9044,0.092,4.016,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,156.006,3511.082 -2254,2.06276,0,905.2399,13.34392,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70362,82.28278,22.40844,154.04294,720.51544,48.76844,0.1179,133.94562,0.9044,0.092,4.017,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,156.029,3511.082 -2255,2.067,0,905.3348,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.7037,82.2903,22.4105,154.057,720.5812,48.7729,0.1179,133.9578,0.9044,0.092,4.018,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,156.051,3511.082 -2256,2.07852,0,905.44156,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70376,82.29874,22.41276,154.07282,720.65512,48.77792,0.11794,133.97158,0.9044,0.092,4.018,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.074,3511.082 -2257,2.09004,0,905.54832,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70382,82.30718,22.41502,154.08864,720.72904,48.78294,0.11798,133.98536,0.9044,0.092,4.019,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.097,3511.082 -2258,2.10156,0,905.65508,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70388,82.31562,22.41728,154.10446,720.80296,48.78796,0.11802,133.99914,0.9044,0.092,4.02,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.125,3511.082 -2259,2.11308,0,905.76184,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70394,82.32406,22.41954,154.12028,720.87688,48.79298,0.11806,134.01292,0.9044,0.092,4.021,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.152,3511.082 -2260,2.1246,0,905.8686,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.704,82.3325,22.4218,154.1361,720.9508,48.798,0.1181,134.0267,0.9044,0.092,4.022,0.485,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.18,3511.082 -2261,2.1217267,0,905.9807,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070513333,0.0592,0.0077,0.70407333,82.341367,22.42422,154.15269,721.02846,48.803253,0.11810667,134.04113,0.9044,0.092,4.023,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.207,3511.082 -2262,2.1188533,0,906.0928,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070526667,0.0592,0.0077,0.70414667,82.350233,22.42664,154.16929,721.10612,48.808507,0.11811333,134.05557,0.9044,0.092,4.024,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.235,3511.082 -2263,2.11598,0,906.2049,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07054,0.0592,0.0077,0.70422,82.3591,22.42906,154.18588,721.18378,48.81376,0.11812,134.07,0.9044,0.092,4.025,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.263,3511.082 -2264,2.1131067,0,906.317,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070553333,0.0592,0.0077,0.70429333,82.367967,22.43148,154.20247,721.26144,48.819013,0.11812667,134.08443,0.9044,0.092,4.026,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.29,3511.082 -2265,2.1102333,0,906.4291,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070566667,0.0592,0.0077,0.70436667,82.376833,22.4339,154.21907,721.3391,48.824267,0.11813333,134.09887,0.9044,0.092,4.028,0.485,0.881,0.238,0,0,0,0.002,0,0,0,0.008,0,156.318,3511.082 -2266,2.10736,0,906.5412,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07058,0.0592,0.0077,0.70444,82.3857,22.43632,154.23566,721.41676,48.82952,0.11814,134.1133,0.9044,0.092,4.029,0.485,0.881,0.238,0,0,0,0.002,0,0,0,0.008,0,156.345,3511.082 -2267,2.1044867,0,906.6533,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070593333,0.0592,0.0077,0.70451333,82.394567,22.43874,154.25225,721.49442,48.834773,0.11814667,134.12773,0.9044,0.093,4.03,0.485,0.881,0.239,0,0,0,0.002,0,0,0,0.008,0,156.372,3511.082 -2268,2.1016133,0,906.7654,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070606667,0.0592,0.0077,0.70458667,82.403433,22.44116,154.26885,721.57208,48.840027,0.11815333,134.14217,0.9044,0.093,4.031,0.486,0.881,0.239,0,0,0,0.002,0,0,0,0.008,0,156.399,3511.082 -2269,2.09874,0,906.8775,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07062,0.0592,0.0077,0.70466,82.4123,22.44358,154.28544,721.64974,48.84528,0.11816,134.1566,0.9044,0.093,4.032,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.426,3511.082 -2270,2.0958667,0,906.9896,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070633333,0.0592,0.0077,0.70473333,82.421167,22.446,154.30203,721.7274,48.850533,0.11816667,134.17103,0.9044,0.093,4.033,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.453,3511.082 -2271,2.0929933,0,907.1017,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070646667,0.0592,0.0077,0.70480667,82.430033,22.44842,154.31863,721.80506,48.855787,0.11817333,134.18547,0.9044,0.093,4.034,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.48,3511.082 -2272,2.09012,0,907.2138,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07066,0.0592,0.0077,0.70488,82.4389,22.45084,154.33522,721.88272,48.86104,0.11818,134.1999,0.9044,0.093,4.035,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.506,3511.082 -2273,2.0872467,0,907.3259,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070673333,0.0592,0.0077,0.70495333,82.447767,22.45326,154.35181,721.96038,48.866293,0.11818667,134.21433,0.9044,0.093,4.036,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.532,3511.082 -2274,2.0843733,0,907.438,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070686667,0.0592,0.0077,0.70502667,82.456633,22.45568,154.36841,722.03804,48.871547,0.11819333,134.22877,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.559,3511.082 -2275,2.0815,0,907.5501,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0707,0.0592,0.0077,0.7051,82.4655,22.4581,154.385,722.1157,48.8768,0.1182,134.2432,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.585,3511.082 -2276,2.078004,0,907.65054,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070708,0.0592,0.0077,0.705172,82.473444,22.460264,154.39988,722.18528,48.881508,0.118216,134.25614,0.9044,0.093,4.038,0.487,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.611,3511.082 -2277,2.074508,0,907.75098,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070716,0.0592,0.0077,0.705244,82.481388,22.462428,154.41477,722.25487,48.886216,0.118232,134.26907,0.9044,0.093,4.039,0.487,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.636,3511.082 -2278,2.071012,0,907.85142,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070724,0.0592,0.0077,0.705316,82.489332,22.464592,154.42965,722.32445,48.890924,0.118248,134.28201,0.9044,0.093,4.04,0.487,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.662,3511.082 -2279,2.067516,0,907.95186,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070732,0.0592,0.0077,0.705388,82.497276,22.466756,154.44454,722.39404,48.895632,0.118264,134.29494,0.9044,0.093,4.041,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.687,3511.082 -2280,2.06402,0,908.0523,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07074,0.0592,0.0077,0.70546,82.50522,22.46892,154.45942,722.46362,48.90034,0.11828,134.30788,0.9044,0.093,4.042,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.713,3511.082 -2281,2.060524,0,908.15274,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070748,0.0592,0.0077,0.705532,82.513164,22.471084,154.4743,722.5332,48.905048,0.118296,134.32082,0.9044,0.093,4.043,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.738,3511.082 -2282,2.057028,0,908.25318,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070756,0.0592,0.0077,0.705604,82.521108,22.473248,154.48919,722.60279,48.909756,0.118312,134.33375,0.9044,0.093,4.044,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.763,3511.082 -2283,2.053532,0,908.35362,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070764,0.0592,0.0077,0.705676,82.529052,22.475412,154.50407,722.67237,48.914464,0.118328,134.34669,0.9044,0.093,4.045,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.788,3511.082 -2284,2.050036,0,908.45406,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070772,0.0592,0.0077,0.705748,82.536996,22.477576,154.51896,722.74196,48.919172,0.118344,134.35962,0.9044,0.093,4.046,0.487,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.812,3511.082 -2285,2.04654,0,908.5545,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07078,0.0592,0.0077,0.70582,82.54494,22.47974,154.53384,722.81154,48.92388,0.11836,134.37256,0.9044,0.093,4.047,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.837,3511.082 -2286,2.043044,0,908.65494,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070788,0.0592,0.0077,0.705892,82.552884,22.481904,154.54872,722.88112,48.928588,0.118376,134.3855,0.9044,0.093,4.048,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.861,3511.082 -2287,2.039548,0,908.75538,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070796,0.0592,0.0077,0.705964,82.560828,22.484068,154.56361,722.95071,48.933296,0.118392,134.39843,0.9044,0.093,4.049,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.886,3511.082 -2288,2.036052,0,908.85582,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070804,0.0592,0.0077,0.706036,82.568772,22.486232,154.57849,723.02029,48.938004,0.118408,134.41137,0.9044,0.093,4.05,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.91,3511.082 -2289,2.032556,0,908.95626,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070812,0.0592,0.0077,0.706108,82.576716,22.488396,154.59338,723.08988,48.942712,0.118424,134.4243,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,156.934,3511.082 -2290,2.02906,0,909.0567,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07082,0.0592,0.0077,0.70618,82.58466,22.49056,154.60826,723.15946,48.94742,0.11844,134.43724,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,156.958,3511.082 -2291,2.025564,0,909.15714,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070828,0.0592,0.0077,0.706252,82.592604,22.492724,154.62314,723.22904,48.952128,0.118456,134.45018,0.9044,0.093,4.052,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,156.981,3511.082 -2292,2.022068,0,909.25758,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070836,0.0592,0.0077,0.706324,82.600548,22.494888,154.63803,723.29863,48.956836,0.118472,134.46311,0.9044,0.093,4.053,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,157.005,3511.082 -2293,2.018572,0,909.35802,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070844,0.0592,0.0077,0.706396,82.608492,22.497052,154.65291,723.36821,48.961544,0.118488,134.47605,0.9044,0.093,4.054,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,157.028,3511.082 -2294,2.015076,0,909.45846,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070852,0.0592,0.0077,0.706468,82.616436,22.499216,154.6678,723.4378,48.966252,0.118504,134.48898,0.9044,0.093,4.055,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.052,3511.082 -2295,2.01158,0,909.5589,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07086,0.0592,0.0077,0.70654,82.62438,22.50138,154.68268,723.50738,48.97096,0.11852,134.50192,0.9044,0.093,4.056,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.075,3511.082 -2296,2.008084,0,909.65934,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070868,0.0592,0.0077,0.706612,82.632324,22.503544,154.69756,723.57696,48.975668,0.118536,134.51486,0.9044,0.093,4.057,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.098,3511.082 -2297,2.004588,0,909.75978,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070876,0.0592,0.0077,0.706684,82.640268,22.505708,154.71245,723.64655,48.980376,0.118552,134.52779,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.121,3511.082 -2298,2.001092,0,909.86022,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070884,0.0592,0.0077,0.706756,82.648212,22.507872,154.72733,723.71613,48.985084,0.118568,134.54073,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.144,3511.082 -2299,1.997596,0,909.96066,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070892,0.0592,0.0077,0.706828,82.656156,22.510036,154.74222,723.78572,48.989792,0.118584,134.55366,0.9044,0.093,4.059,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.167,3511.082 -2300,1.9941,0,910.0611,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0709,0.0592,0.0077,0.7069,82.6641,22.5122,154.7571,723.8553,48.9945,0.1186,134.5666,0.9044,0.093,4.06,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.189,3511.082 -2301,1.991988,0,910.14458,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070904,0.0592,0.0077,0.706956,82.670706,22.514002,154.76946,723.91314,48.998416,0.118608,134.57735,0.9044,0.093,4.061,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.212,3511.082 -2302,1.989876,0,910.22807,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070908,0.0592,0.0077,0.707012,82.677312,22.515804,154.78182,723.97097,49.002332,0.118616,134.58811,0.9044,0.093,4.062,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.234,3511.082 -2303,1.987764,0,910.31155,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070912,0.0592,0.0077,0.707068,82.683918,22.517606,154.79419,724.02881,49.006248,0.118624,134.59886,0.9044,0.093,4.063,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.256,3511.082 -2304,1.985652,0,910.39504,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070916,0.0592,0.0077,0.707124,82.690524,22.519408,154.80655,724.08664,49.010164,0.118632,134.60962,0.9044,0.093,4.063,0.49,0.888,0.241,0,0,0,0.002,0,0,0,0.008,0,157.278,3511.082 -2305,1.98354,0,910.47852,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07092,0.0592,0.0077,0.70718,82.69713,22.52121,154.81891,724.14448,49.01408,0.11864,134.62037,0.9044,0.093,4.064,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.3,3511.082 -2306,1.981428,0,910.562,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070924,0.0592,0.0077,0.707236,82.703736,22.523012,154.83127,724.20232,49.017996,0.118648,134.63112,0.9044,0.093,4.065,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.322,3511.082 -2307,1.979316,0,910.64549,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070928,0.0592,0.0077,0.707292,82.710342,22.524814,154.84363,724.26015,49.021912,0.118656,134.64188,0.9044,0.093,4.066,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.344,3511.082 -2308,1.977204,0,910.72897,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070932,0.0592,0.0077,0.707348,82.716948,22.526616,154.856,724.31799,49.025828,0.118664,134.65263,0.9044,0.093,4.067,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.366,3511.082 -2309,1.975092,0,910.81246,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070936,0.0592,0.0077,0.707404,82.723554,22.528418,154.86836,724.37582,49.029744,0.118672,134.66339,0.9044,0.093,4.068,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.387,3511.082 -2310,1.97298,0,910.89594,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07094,0.0592,0.0077,0.70746,82.73016,22.53022,154.88072,724.43366,49.03366,0.11868,134.67414,0.9044,0.093,4.068,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.409,3511.082 -2311,1.970868,0,910.97942,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070944,0.0592,0.0077,0.707516,82.736766,22.532022,154.89308,724.4915,49.037576,0.118688,134.68489,0.9044,0.093,4.069,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.43,3511.082 -2312,1.968756,0,911.06291,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070948,0.0592,0.0077,0.707572,82.743372,22.533824,154.90544,724.54933,49.041492,0.118696,134.69565,0.9044,0.093,4.07,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.452,3511.082 -2313,1.966644,0,911.14639,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070952,0.0592,0.0077,0.707628,82.749978,22.535626,154.91781,724.60717,49.045408,0.118704,134.7064,0.9044,0.093,4.071,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.473,3511.082 -2314,1.964532,0,911.22988,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070956,0.0592,0.0077,0.707684,82.756584,22.537428,154.93017,724.665,49.049324,0.118712,134.71716,0.9044,0.093,4.071,0.491,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.494,3511.082 -2315,1.96242,0,911.31336,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07096,0.0592,0.0077,0.70774,82.76319,22.53923,154.94253,724.72284,49.05324,0.11872,134.72791,0.9044,0.093,4.072,0.491,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.515,3511.082 -2316,1.960308,0,911.39684,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070964,0.0592,0.0077,0.707796,82.769796,22.541032,154.95489,724.78068,49.057156,0.118728,134.73866,0.9044,0.094,4.073,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.536,3511.082 -2317,1.958196,0,911.48033,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070968,0.0592,0.0077,0.707852,82.776402,22.542834,154.96725,724.83851,49.061072,0.118736,134.74942,0.9044,0.094,4.074,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.556,3511.082 -2318,1.956084,0,911.56381,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070972,0.0592,0.0077,0.707908,82.783008,22.544636,154.97962,724.89635,49.064988,0.118744,134.76017,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.577,3511.082 -2319,1.953972,0,911.6473,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070976,0.0592,0.0077,0.707964,82.789614,22.546438,154.99198,724.95418,49.068904,0.118752,134.77093,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.598,3511.082 -2320,1.95186,0,911.73078,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07098,0.0592,0.0077,0.70802,82.79622,22.54824,155.00434,725.01202,49.07282,0.11876,134.78168,0.9044,0.094,4.076,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.618,3511.082 -2321,1.949748,0,911.81426,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070984,0.0592,0.0077,0.708076,82.802826,22.550042,155.0167,725.06986,49.076736,0.118768,134.79243,0.9044,0.094,4.077,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.639,3511.082 -2322,1.947636,0,911.89775,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070988,0.0592,0.0077,0.708132,82.809432,22.551844,155.02906,725.12769,49.080652,0.118776,134.80319,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0,0.008,0,157.659,3511.082 -2323,1.945524,0,911.98123,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070992,0.0592,0.0077,0.708188,82.816038,22.553646,155.04143,725.18553,49.084568,0.118784,134.81394,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0,0.008,0,157.679,3511.082 -2324,1.943412,0,912.06472,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070996,0.0592,0.0077,0.708244,82.822644,22.555448,155.05379,725.24336,49.088484,0.118792,134.8247,0.9044,0.094,4.079,0.491,0.892,0.241,0,0,0,0.002,0,0,0,0.008,0,157.699,3511.082 -2325,1.9413,0,912.1482,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071,0.0592,0.0077,0.7083,82.82925,22.55725,155.06615,725.3012,49.0924,0.1188,134.83545,0.9044,0.094,4.08,0.492,0.892,0.242,0,0,0,0.002,0,0,0,0.008,0,157.719,3511.082 -2326,1.939188,0,912.23168,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071004,0.0592,0.0077,0.708356,82.835856,22.559052,155.07851,725.35904,49.096316,0.118808,134.8462,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0,0.008,0,157.739,3511.082 -2327,1.937076,0,912.31517,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071008,0.0592,0.0077,0.708412,82.842462,22.560854,155.09087,725.41687,49.100232,0.118816,134.85696,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0,0.008,0,157.759,3511.082 -2328,1.934964,0,912.39865,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071012,0.0592,0.0077,0.708468,82.849068,22.562656,155.10324,725.47471,49.104148,0.118824,134.86771,0.9044,0.094,4.082,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.779,3511.082 -2329,1.932852,0,912.48214,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071016,0.0592,0.0077,0.708524,82.855674,22.564458,155.1156,725.53254,49.108064,0.118832,134.87847,0.9044,0.094,4.083,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.799,3511.082 -2330,1.93074,0,912.56562,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07102,0.0592,0.0077,0.70858,82.86228,22.56626,155.12796,725.59038,49.11198,0.11884,134.88922,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.818,3511.082 -2331,1.928628,0,912.6491,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071024,0.0592,0.0077,0.708636,82.868886,22.568062,155.14032,725.64822,49.115896,0.118848,134.89997,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.838,3511.082 -2332,1.926516,0,912.73259,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071028,0.0592,0.0077,0.708692,82.875492,22.569864,155.15268,725.70605,49.119812,0.118856,134.91073,0.9044,0.094,4.085,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.857,3511.082 -2333,1.924404,0,912.81607,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071032,0.0592,0.0077,0.708748,82.882098,22.571666,155.16505,725.76389,49.123728,0.118864,134.92148,0.9044,0.094,4.086,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.877,3511.082 -2334,1.922292,0,912.89956,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071036,0.0592,0.0077,0.708804,82.888704,22.573468,155.17741,725.82172,49.127644,0.118872,134.93224,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.896,3511.082 -2335,1.92018,0,912.98304,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07104,0.0592,0.0077,0.70886,82.89531,22.57527,155.18977,725.87956,49.13156,0.11888,134.94299,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.915,3511.082 -2336,1.918068,0,913.06652,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071044,0.0592,0.0077,0.708916,82.901916,22.577072,155.20213,725.9374,49.135476,0.118888,134.95374,0.9044,0.094,4.088,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.934,3511.082 -2337,1.915956,0,913.15001,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071048,0.0592,0.0077,0.708972,82.908522,22.578874,155.21449,725.99523,49.139392,0.118896,134.9645,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.953,3511.082 -2338,1.913844,0,913.23349,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071052,0.0592,0.0077,0.709028,82.915128,22.580676,155.22686,726.05307,49.143308,0.118904,134.97525,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.972,3511.082 -2339,1.911732,0,913.31698,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071056,0.0592,0.0077,0.709084,82.921734,22.582478,155.23922,726.1109,49.147224,0.118912,134.98601,0.9044,0.094,4.09,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.991,3511.082 -2340,1.90962,0,913.40046,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07106,0.0592,0.0077,0.70914,82.92834,22.58428,155.25158,726.16874,49.15114,0.11892,134.99676,0.9044,0.094,4.091,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,158.01,3511.082 -2341,1.907508,0,913.48394,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071064,0.0592,0.0077,0.709196,82.934946,22.586082,155.26394,726.22658,49.155056,0.118928,135.00751,0.9044,0.094,4.091,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.029,3511.082 -2342,1.905396,0,913.56743,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071068,0.0592,0.0077,0.709252,82.941552,22.587884,155.2763,726.28441,49.158972,0.118936,135.01827,0.9044,0.094,4.092,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.047,3511.082 -2343,1.903284,0,913.65091,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071072,0.0592,0.0077,0.709308,82.948158,22.589686,155.28867,726.34225,49.162888,0.118944,135.02902,0.9044,0.094,4.093,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.066,3511.082 -2344,1.901172,0,913.7344,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071076,0.0592,0.0077,0.709364,82.954764,22.591488,155.30103,726.40008,49.166804,0.118952,135.03978,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.085,3511.082 -2345,1.89906,0,913.81788,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07108,0.0592,0.0077,0.70942,82.96137,22.59329,155.31339,726.45792,49.17072,0.11896,135.05053,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.103,3511.082 -2346,1.896948,0,913.90136,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071084,0.0592,0.0077,0.709476,82.967976,22.595092,155.32575,726.51576,49.174636,0.118968,135.06128,0.9044,0.094,4.095,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.121,3511.082 -2347,1.894836,0,913.98485,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071088,0.0592,0.0077,0.709532,82.974582,22.596894,155.33811,726.57359,49.178552,0.118976,135.07204,0.9044,0.094,4.096,0.493,0.896,0.242,0,0,0,0.002,0,0,0,0.008,0,158.14,3511.082 -2348,1.892724,0,914.06833,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071092,0.0592,0.0077,0.709588,82.981188,22.598696,155.35048,726.63143,49.182468,0.118984,135.08279,0.9044,0.094,4.096,0.494,0.896,0.242,0,0,0,0.002,0,0,0,0.008,0,158.158,3511.082 -2349,1.890612,0,914.15182,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071096,0.0592,0.0077,0.709644,82.987794,22.600498,155.36284,726.68926,49.186384,0.118992,135.09355,0.9044,0.094,4.097,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.176,3511.082 -2350,1.8885,0,914.2353,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0711,0.0592,0.0077,0.7097,82.9944,22.6023,155.3752,726.7471,49.1903,0.119,135.1043,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.194,3511.082 -2351,1.885994,0,914.3042,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071106,0.0592,0.0077,0.709744,82.999852,22.603782,155.3854,726.79483,49.19353,0.119008,135.11317,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.212,3511.082 -2352,1.883488,0,914.37309,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071112,0.0592,0.0077,0.709788,83.005304,22.605264,155.39561,726.84256,49.19676,0.119016,135.12204,0.9044,0.094,4.099,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.23,3511.082 -2353,1.880982,0,914.44199,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071118,0.0592,0.0077,0.709832,83.010756,22.606746,155.40581,726.89028,49.19999,0.119024,135.13092,0.9044,0.094,4.1,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.248,3511.082 -2354,1.878476,0,914.51088,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071124,0.0592,0.0077,0.709876,83.016208,22.608228,155.41602,726.93801,49.20322,0.119032,135.13979,0.9044,0.094,4.1,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.266,3511.082 -2355,1.87597,0,914.57978,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07113,0.0592,0.0077,0.70992,83.02166,22.60971,155.42622,726.98574,49.20645,0.11904,135.14866,0.9044,0.094,4.101,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.284,3511.082 -2356,1.873464,0,914.64868,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071136,0.0592,0.0077,0.709964,83.027112,22.611192,155.43642,727.03347,49.20968,0.119048,135.15753,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.301,3511.082 -2357,1.870958,0,914.71757,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071142,0.0592,0.0077,0.710008,83.032564,22.612674,155.44663,727.0812,49.21291,0.119056,135.1664,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.319,3511.082 -2358,1.868452,0,914.78647,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071148,0.0592,0.0077,0.710052,83.038016,22.614156,155.45683,727.12892,49.21614,0.119064,135.17528,0.9044,0.094,4.103,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.337,3511.082 -2359,1.865946,0,914.85536,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071154,0.0592,0.0077,0.710096,83.043468,22.615638,155.46704,727.17665,49.21937,0.119072,135.18415,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.354,3511.082 -2360,1.86344,0,914.92426,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07116,0.0592,0.0077,0.71014,83.04892,22.61712,155.47724,727.22438,49.2226,0.11908,135.19302,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.372,3511.082 -2361,1.860934,0,914.99316,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071166,0.0592,0.0077,0.710184,83.054372,22.618602,155.48744,727.27211,49.22583,0.119088,135.20189,0.9044,0.094,4.105,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.389,3511.082 -2362,1.858428,0,915.06205,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071172,0.0592,0.0077,0.710228,83.059824,22.620084,155.49765,727.31984,49.22906,0.119096,135.21076,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.406,3511.082 -2363,1.855922,0,915.13095,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071178,0.0592,0.0077,0.710272,83.065276,22.621566,155.50785,727.36756,49.23229,0.119104,135.21964,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.424,3511.082 -2364,1.853416,0,915.19984,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071184,0.0592,0.0077,0.710316,83.070728,22.623048,155.51806,727.41529,49.23552,0.119112,135.22851,0.9044,0.094,4.107,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.441,3511.082 -2365,1.85091,0,915.26874,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07119,0.0592,0.0077,0.71036,83.07618,22.62453,155.52826,727.46302,49.23875,0.11912,135.23738,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.458,3511.082 -2366,1.848404,0,915.33764,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071196,0.0592,0.0077,0.710404,83.081632,22.626012,155.53846,727.51075,49.24198,0.119128,135.24625,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.475,3511.082 -2367,1.845898,0,915.40653,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071202,0.0592,0.0077,0.710448,83.087084,22.627494,155.54867,727.55848,49.24521,0.119136,135.25512,0.9044,0.094,4.109,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.492,3511.082 -2368,1.843392,0,915.47543,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071208,0.0592,0.0077,0.710492,83.092536,22.628976,155.55887,727.6062,49.24844,0.119144,135.264,0.9044,0.094,4.109,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.509,3511.082 -2369,1.840886,0,915.54432,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071214,0.0592,0.0077,0.710536,83.097988,22.630458,155.56908,727.65393,49.25167,0.119152,135.27287,0.9044,0.094,4.11,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.526,3511.082 -2370,1.83838,0,915.61322,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07122,0.0592,0.0077,0.71058,83.10344,22.63194,155.57928,727.70166,49.2549,0.11916,135.28174,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.543,3511.082 -2371,1.835874,0,915.68212,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071226,0.0592,0.0077,0.710624,83.108892,22.633422,155.58948,727.74939,49.25813,0.119168,135.29061,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.56,3511.082 -2372,1.833368,0,915.75101,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071232,0.0592,0.0077,0.710668,83.114344,22.634904,155.59969,727.79712,49.26136,0.119176,135.29948,0.9044,0.094,4.112,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.576,3511.082 -2373,1.830862,0,915.81991,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071238,0.0592,0.0077,0.710712,83.119796,22.636386,155.60989,727.84484,49.26459,0.119184,135.30836,0.9044,0.094,4.113,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.593,3511.082 -2374,1.828356,0,915.8888,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071244,0.0592,0.0077,0.710756,83.125248,22.637868,155.6201,727.89257,49.26782,0.119192,135.31723,0.9044,0.094,4.113,0.496,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.61,3511.082 -2375,1.82585,0,915.9577,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07125,0.0592,0.0077,0.7108,83.1307,22.63935,155.6303,727.9403,49.27105,0.1192,135.3261,0.9044,0.094,4.114,0.496,0.899,0.244,0,0,0,0.002,0,0,0,0.008,0,158.626,3511.082 -2376,1.823344,0,916.0266,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071256,0.0592,0.0077,0.710844,83.136152,22.640832,155.6405,727.98803,49.27428,0.119208,135.33497,0.9044,0.094,4.114,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.643,3511.082 -2377,1.820838,0,916.09549,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071262,0.0592,0.0077,0.710888,83.141604,22.642314,155.65071,728.03576,49.27751,0.119216,135.34384,0.9044,0.094,4.115,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.659,3511.082 -2378,1.818332,0,916.16439,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071268,0.0592,0.0077,0.710932,83.147056,22.643796,155.66091,728.08348,49.28074,0.119224,135.35272,0.9044,0.094,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.676,3511.082 -2379,1.815826,0,916.23328,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071274,0.0592,0.0077,0.710976,83.152508,22.645278,155.67112,728.13121,49.28397,0.119232,135.36159,0.9044,0.095,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.692,3511.082 -2380,1.81332,0,916.30218,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07128,0.0592,0.0077,0.71102,83.15796,22.64676,155.68132,728.17894,49.2872,0.11924,135.37046,0.9044,0.095,4.117,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.708,3511.082 -2381,1.810814,0,916.37108,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071286,0.0592,0.0077,0.711064,83.163412,22.648242,155.69152,728.22667,49.29043,0.119248,135.37933,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.724,3511.082 -2382,1.808308,0,916.43997,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071292,0.0592,0.0077,0.711108,83.168864,22.649724,155.70173,728.2744,49.29366,0.119256,135.3882,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.741,3511.082 -2383,1.805802,0,916.50887,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071298,0.0592,0.0077,0.711152,83.174316,22.651206,155.71193,728.32212,49.29689,0.119264,135.39708,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.757,3511.082 -2384,1.803296,0,916.57776,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071304,0.0592,0.0077,0.711196,83.179768,22.652688,155.72214,728.36985,49.30012,0.119272,135.40595,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.773,3511.082 -2385,1.80079,0,916.64666,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07131,0.0592,0.0077,0.71124,83.18522,22.65417,155.73234,728.41758,49.30335,0.11928,135.41482,0.9044,0.095,4.12,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.789,3511.082 -2386,1.798284,0,916.71556,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071316,0.0592,0.0077,0.711284,83.190672,22.655652,155.74254,728.46531,49.30658,0.119288,135.42369,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.805,3511.082 -2387,1.795778,0,916.78445,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071322,0.0592,0.0077,0.711328,83.196124,22.657134,155.75275,728.51304,49.30981,0.119296,135.43256,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.821,3511.082 -2388,1.793272,0,916.85335,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071328,0.0592,0.0077,0.711372,83.201576,22.658616,155.76295,728.56076,49.31304,0.119304,135.44144,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.837,3511.082 -2389,1.790766,0,916.92224,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071334,0.0592,0.0077,0.711416,83.207028,22.660098,155.77316,728.60849,49.31627,0.119312,135.45031,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.853,3511.082 -2390,1.78826,0,916.99114,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07134,0.0592,0.0077,0.71146,83.21248,22.66158,155.78336,728.65622,49.3195,0.11932,135.45918,0.9044,0.095,4.123,0.497,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.868,3511.082 -2391,1.785754,0,917.06004,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071346,0.0592,0.0077,0.711504,83.217932,22.663062,155.79356,728.70395,49.32273,0.119328,135.46805,0.9044,0.095,4.123,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.884,3511.082 -2392,1.783248,0,917.12893,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071352,0.0592,0.0077,0.711548,83.223384,22.664544,155.80377,728.75168,49.32596,0.119336,135.47692,0.9044,0.095,4.124,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.9,3511.082 -2393,1.780742,0,917.19783,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071358,0.0592,0.0077,0.711592,83.228836,22.666026,155.81397,728.7994,49.32919,0.119344,135.4858,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.915,3511.082 -2394,1.778236,0,917.26672,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071364,0.0592,0.0077,0.711636,83.234288,22.667508,155.82418,728.84713,49.33242,0.119352,135.49467,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.931,3511.082 -2395,1.77573,0,917.33562,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07137,0.0592,0.0077,0.71168,83.23974,22.66899,155.83438,728.89486,49.33565,0.11936,135.50354,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.947,3511.082 -2396,1.773224,0,917.40452,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071376,0.0592,0.0077,0.711724,83.245192,22.670472,155.84458,728.94259,49.33888,0.119368,135.51241,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.962,3511.082 -2397,1.770718,0,917.47341,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071382,0.0592,0.0077,0.711768,83.250644,22.671954,155.85479,728.99032,49.34211,0.119376,135.52128,0.9044,0.095,4.127,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.977,3511.082 -2398,1.768212,0,917.54231,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071388,0.0592,0.0077,0.711812,83.256096,22.673436,155.86499,729.03804,49.34534,0.119384,135.53016,0.9044,0.095,4.128,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.993,3511.082 -2399,1.765706,0,917.6112,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071394,0.0592,0.0077,0.711856,83.261548,22.674918,155.8752,729.08577,49.34857,0.119392,135.53903,0.9044,0.095,4.128,0.497,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.008,3511.082 -2400,1.7632,0,917.6801,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0714,0.0592,0.0077,0.7119,83.267,22.6764,155.8854,729.1335,49.3518,0.1194,135.5479,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.024,3511.082 -2401,1.760278,0,917.7393,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071404,0.0592,0.0077,0.711942,83.271682,22.677674,155.89417,729.17451,49.354576,0.119406,135.55552,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.039,3511.082 -2402,1.757356,0,917.79849,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071408,0.0592,0.0077,0.711984,83.276364,22.678948,155.90294,729.21552,49.357352,0.119412,135.56314,0.9044,0.095,4.13,0.498,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.054,3511.082 -2403,1.754434,0,917.85769,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071412,0.0592,0.0077,0.712026,83.281046,22.680222,155.91171,729.25653,49.360128,0.119418,135.57077,0.9044,0.095,4.13,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.069,3511.082 -2404,1.751512,0,917.91688,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071416,0.0592,0.0077,0.712068,83.285728,22.681496,155.92048,729.29754,49.362904,0.119424,135.57839,0.9044,0.095,4.131,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.084,3511.082 -2405,1.74859,0,917.97608,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07142,0.0592,0.0077,0.71211,83.29041,22.68277,155.92925,729.33855,49.36568,0.11943,135.58601,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.099,3511.082 -2406,1.745668,0,918.03528,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071424,0.0592,0.0077,0.712152,83.295092,22.684044,155.93802,729.37956,49.368456,0.119436,135.59363,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.114,3511.082 -2407,1.742746,0,918.09447,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071428,0.0592,0.0077,0.712194,83.299774,22.685318,155.94679,729.42057,49.371232,0.119442,135.60125,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.129,3511.082 -2408,1.739824,0,918.15367,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071432,0.0592,0.0077,0.712236,83.304456,22.686592,155.95556,729.46158,49.374008,0.119448,135.60888,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.144,3511.082 -2409,1.736902,0,918.21286,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071436,0.0592,0.0077,0.712278,83.309138,22.687866,155.96433,729.50259,49.376784,0.119454,135.6165,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.159,3511.082 -2410,1.73398,0,918.27206,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07144,0.0592,0.0077,0.71232,83.31382,22.68914,155.9731,729.5436,49.37956,0.11946,135.62412,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.174,3511.082 -2411,1.731058,0,918.33126,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071444,0.0592,0.0077,0.712362,83.318502,22.690414,155.98187,729.58461,49.382336,0.119466,135.63174,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.189,3511.082 -2412,1.728136,0,918.39045,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071448,0.0592,0.0077,0.712404,83.323184,22.691688,155.99064,729.62562,49.385112,0.119472,135.63936,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.204,3511.082 -2413,1.725214,0,918.44965,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071452,0.0592,0.0077,0.712446,83.327866,22.692962,155.99941,729.66663,49.387888,0.119478,135.64699,0.9044,0.095,4.136,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.218,3511.082 -2414,1.722292,0,918.50884,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071456,0.0592,0.0077,0.712488,83.332548,22.694236,156.00818,729.70764,49.390664,0.119484,135.65461,0.9044,0.095,4.137,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.233,3511.082 -2415,1.71937,0,918.56804,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07146,0.0592,0.0077,0.71253,83.33723,22.69551,156.01695,729.74865,49.39344,0.11949,135.66223,0.9044,0.095,4.137,0.498,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.248,3511.082 -2416,1.716448,0,918.62724,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071464,0.0592,0.0077,0.712572,83.341912,22.696784,156.02572,729.78966,49.396216,0.119496,135.66985,0.9044,0.095,4.138,0.498,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.262,3511.082 -2417,1.713526,0,918.68643,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071468,0.0592,0.0077,0.712614,83.346594,22.698058,156.03449,729.83067,49.398992,0.119502,135.67747,0.9044,0.095,4.138,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.277,3511.082 -2418,1.710604,0,918.74563,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071472,0.0592,0.0077,0.712656,83.351276,22.699332,156.04326,729.87168,49.401768,0.119508,135.6851,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.292,3511.082 -2419,1.707682,0,918.80482,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071476,0.0592,0.0077,0.712698,83.355958,22.700606,156.05203,729.91269,49.404544,0.119514,135.69272,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.306,3511.082 -2420,1.70476,0,918.86402,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07148,0.0592,0.0077,0.71274,83.36064,22.70188,156.0608,729.9537,49.40732,0.11952,135.70034,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.32,3511.082 -2421,1.701838,0,918.92322,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071484,0.0592,0.0077,0.712782,83.365322,22.703154,156.06957,729.99471,49.410096,0.119526,135.70796,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.335,3511.082 -2422,1.698916,0,918.98241,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071488,0.0592,0.0077,0.712824,83.370004,22.704428,156.07834,730.03572,49.412872,0.119532,135.71558,0.9044,0.095,4.141,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.349,3511.082 -2423,1.695994,0,919.04161,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071492,0.0592,0.0077,0.712866,83.374686,22.705702,156.08711,730.07673,49.415648,0.119538,135.72321,0.9044,0.095,4.141,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.364,3511.082 -2424,1.693072,0,919.1008,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071496,0.0592,0.0077,0.712908,83.379368,22.706976,156.09588,730.11774,49.418424,0.119544,135.73083,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.378,3511.082 -2425,1.69015,0,919.16,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0715,0.0592,0.0077,0.71295,83.38405,22.70825,156.10465,730.15875,49.4212,0.11955,135.73845,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.392,3511.082 -2426,1.687228,0,919.2192,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071504,0.0592,0.0077,0.712992,83.388732,22.709524,156.11342,730.19976,49.423976,0.119556,135.74607,0.9044,0.095,4.143,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.406,3511.082 -2427,1.684306,0,919.27839,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071508,0.0592,0.0077,0.713034,83.393414,22.710798,156.12219,730.24077,49.426752,0.119562,135.75369,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.421,3511.082 -2428,1.681384,0,919.33759,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071512,0.0592,0.0077,0.713076,83.398096,22.712072,156.13096,730.28178,49.429528,0.119568,135.76132,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.435,3511.082 -2429,1.678462,0,919.39678,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071516,0.0592,0.0077,0.713118,83.402778,22.713346,156.13973,730.32279,49.432304,0.119574,135.76894,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.449,3511.082 -2430,1.67554,0,919.45598,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07152,0.0592,0.0077,0.71316,83.40746,22.71462,156.1485,730.3638,49.43508,0.11958,135.77656,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.463,3511.082 -2431,1.672618,0,919.51518,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071524,0.0592,0.0077,0.713202,83.412142,22.715894,156.15727,730.40481,49.437856,0.119586,135.78418,0.9044,0.095,4.146,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.477,3511.082 -2432,1.669696,0,919.57437,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071528,0.0592,0.0077,0.713244,83.416824,22.717168,156.16604,730.44582,49.440632,0.119592,135.7918,0.9044,0.095,4.146,0.5,0.907,0.245,0,0,0,0.002,0,0,0,0.008,0,159.491,3511.082 -2433,1.666774,0,919.63357,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071532,0.0592,0.0077,0.713286,83.421506,22.718442,156.17481,730.48683,49.443408,0.119598,135.79943,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0,0.008,0,159.505,3511.082 -2434,1.663852,0,919.69276,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071536,0.0592,0.0077,0.713328,83.426188,22.719716,156.18358,730.52784,49.446184,0.119604,135.80705,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0,0.008,0,159.519,3511.082 -2435,1.66093,0,919.75196,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07154,0.0592,0.0077,0.71337,83.43087,22.72099,156.19235,730.56885,49.44896,0.11961,135.81467,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.532,3511.082 -2436,1.658008,0,919.81116,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071544,0.0592,0.0077,0.713412,83.435552,22.722264,156.20112,730.60986,49.451736,0.119616,135.82229,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.546,3511.082 -2437,1.655086,0,919.87035,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071548,0.0592,0.0077,0.713454,83.440234,22.723538,156.20989,730.65087,49.454512,0.119622,135.82991,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.56,3511.082 -2438,1.652164,0,919.92955,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071552,0.0592,0.0077,0.713496,83.444916,22.724812,156.21866,730.69188,49.457288,0.119628,135.83754,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.574,3511.082 -2439,1.649242,0,919.98874,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071556,0.0592,0.0077,0.713538,83.449598,22.726086,156.22743,730.73289,49.460064,0.119634,135.84516,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.588,3511.082 -2440,1.64632,0,920.04794,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07156,0.0592,0.0077,0.71358,83.45428,22.72736,156.2362,730.7739,49.46284,0.11964,135.85278,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.601,3511.082 -2441,1.643398,0,920.10714,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071564,0.0592,0.0077,0.713622,83.458962,22.728634,156.24497,730.81491,49.465616,0.119646,135.8604,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.615,3511.082 -2442,1.640476,0,920.16633,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071568,0.0592,0.0077,0.713664,83.463644,22.729908,156.25374,730.85592,49.468392,0.119652,135.86802,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.629,3511.082 -2443,1.637554,0,920.22553,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071572,0.0592,0.0077,0.713706,83.468326,22.731182,156.26251,730.89693,49.471168,0.119658,135.87565,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.642,3511.082 -2444,1.634632,0,920.28472,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071576,0.0592,0.0077,0.713748,83.473008,22.732456,156.27128,730.93794,49.473944,0.119664,135.88327,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.656,3511.082 -2445,1.63171,0,920.34392,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07158,0.0592,0.0077,0.71379,83.47769,22.73373,156.28005,730.97895,49.47672,0.11967,135.89089,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.669,3511.082 -2446,1.628788,0,920.40312,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071584,0.0592,0.0077,0.713832,83.482372,22.735004,156.28882,731.01996,49.479496,0.119676,135.89851,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.683,3511.082 -2447,1.625866,0,920.46231,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071588,0.0592,0.0077,0.713874,83.487054,22.736278,156.29759,731.06097,49.482272,0.119682,135.90613,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.696,3511.082 -2448,1.622944,0,920.52151,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071592,0.0592,0.0077,0.713916,83.491736,22.737552,156.30636,731.10198,49.485048,0.119688,135.91376,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.709,3511.082 -2449,1.620022,0,920.5807,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071596,0.0592,0.0077,0.713958,83.496418,22.738826,156.31513,731.14299,49.487824,0.119694,135.92138,0.9044,0.095,4.155,0.501,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.723,3511.082 -2450,1.6171,0,920.6399,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.155,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.736,3511.082 -2451,1.61445,0,920.691,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.749,3511.082 -2452,1.6118,0,920.74209,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.763,3511.082 -2453,1.60915,0,920.79319,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.776,3511.082 -2454,1.6065,0,920.84428,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.789,3511.082 -2455,1.60385,0,920.89538,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.802,3511.082 -2456,1.6012,0,920.94648,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.815,3511.082 -2457,1.59855,0,920.99757,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.829,3511.082 -2458,1.5959,0,921.04867,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.842,3511.082 -2459,1.59325,0,921.09976,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.855,3511.082 -2460,1.5906,0,921.15086,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.868,3511.082 -2461,1.58795,0,921.20196,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.881,3511.082 -2462,1.5853,0,921.25305,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.894,3511.082 -2463,1.58265,0,921.30415,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.907,3511.082 -2464,1.58,0,921.35524,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.919,3511.082 -2465,1.57735,0,921.40634,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.932,3511.082 -2466,1.5747,0,921.45744,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.945,3511.082 -2467,1.57205,0,921.50853,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.958,3511.082 -2468,1.5694,0,921.55963,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.971,3511.082 -2469,1.56675,0,921.61072,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,159.983,3511.082 -2470,1.5641,0,921.66182,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,159.996,3511.082 -2471,1.56145,0,921.71292,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.009,3511.082 -2472,1.5588,0,921.76401,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.021,3511.082 -2473,1.55615,0,921.81511,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.034,3511.082 -2474,1.5535,0,921.8662,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.046,3511.082 -2475,1.55085,0,921.9173,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.059,3511.082 -2476,1.5482,0,921.9684,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.071,3511.082 -2477,1.54555,0,922.01949,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.084,3511.082 -2478,1.5429,0,922.07059,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.096,3511.082 -2479,1.54025,0,922.12168,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.109,3511.082 -2480,1.5376,0,922.17278,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.121,3511.082 -2481,1.53495,0,922.22388,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.134,3511.082 -2482,1.5323,0,922.27497,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.146,3511.082 -2483,1.52965,0,922.32607,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.158,3511.082 -2484,1.527,0,922.37716,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.17,3511.082 -2485,1.52435,0,922.42826,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.183,3511.082 -2486,1.5217,0,922.47936,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.195,3511.082 -2487,1.51905,0,922.53045,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.207,3511.082 -2488,1.5164,0,922.58155,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.219,3511.082 -2489,1.51375,0,922.63264,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.231,3511.082 -2490,1.5111,0,922.68374,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.244,3511.082 -2491,1.50845,0,922.73484,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.256,3511.082 -2492,1.5058,0,922.78593,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.268,3511.082 -2493,1.50315,0,922.83703,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.28,3511.082 -2494,1.5005,0,922.88812,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.292,3511.082 -2495,1.49785,0,922.93922,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.304,3511.082 -2496,1.4952,0,922.99032,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.316,3511.082 -2497,1.49255,0,923.04141,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.328,3511.082 -2498,1.4899,0,923.09251,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.339,3511.082 -2499,1.48725,0,923.1436,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0,0.008,0,160.351,3511.082 -2500,1.4846,0,923.1947,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0,0.008,0,160.351,3511.082 diff --git a/inst/shinyApp/www/input/emissions/SO2_emissions.csv b/inst/shinyApp/www/input/emissions/SO2_emissions.csv deleted file mode 100644 index 70b5757..0000000 --- a/inst/shinyApp/www/input/emissions/SO2_emissions.csv +++ /dev/null @@ -1,114 +0,0 @@ -; Historical SO2 record in Gg, -; constructed using : Smith et al. through 1999, -; Klimont et al. from 2000-2011, -; Constant open burning emissions from 2000 - 2011, -Date,SO2_emissions -1992,124770 -1993,122657 -1994,120543 -1995,118311 -1996,117804 -1997,116703 -1998,114790 -1999,110752 -2000,110425 -2001,108731 -2002,108097 -2003,110944 -2004,114584 -2005,116005 -2006,115887 -2007,114739 -2008,112351 -2009,107799 -2010,106726 -2011,104701 -2012,104697 -2013,104693 -2014,104689 -2015,104685 -2016,104681 -2017,104677 -2018,104673 -2019,104669 -2020,104665 -2021,104661 -2022,104657 -2023,104653 -2024,104649 -2025,104645 -2026,104641 -2027,104637 -2028,104633 -2029,104629 -2030,104625 -2031,104621 -2032,104617 -2033,104613 -2034,104609 -2035,104605 -2036,104601 -2037,104597 -2038,104593 -2039,104589 -2040,104585 -2041,104581 -2042,104577 -2043,104573 -2044,104569 -2045,104565 -2046,104561 -2047,104557 -2048,104553 -2049,104549 -2050,104545 -2051,104541 -2052,104537 -2053,104533 -2054,104529 -2055,104525 -2056,104521 -2057,104517 -2058,104513 -2059,104509 -2060,104505 -2061,104501 -2062,104497 -2063,104493 -2064,104489 -2065,104485 -2066,104481 -2067,104477 -2068,104473 -2069,104469 -2070,104465 -2071,104461 -2072,104457 -2073,104453 -2074,104449 -2075,104445 -2076,104441 -2077,104437 -2078,104433 -2079,104429 -2080,104425 -2081,104421 -2082,104417 -2083,104413 -2084,104409 -2085,104405 -2086,104401 -2087,104397 -2088,104393 -2089,104389 -2090,104385 -2091,104381 -2092,104377 -2093,104373 -2094,104369 -2095,104365 -2096,104361 -2097,104357 -2098,104353 -2099,104349 -2100,104345 diff --git a/inst/shinyApp/www/input/emissions/emissions.csv b/inst/shinyApp/www/input/emissions/emissions.csv deleted file mode 100644 index 7936405..0000000 --- a/inst/shinyApp/www/input/emissions/emissions.csv +++ /dev/null @@ -1,260 +0,0 @@ -; Fossil-fuel emissions http://cdiac.ornl.gov/ftp/ndp030/CSV-FILES/global.1751_2007.csv,, -; LUC emissions from http://cdiac.ornl.gov/trends/landuse/houghton/1850-2005.txt,, -date,ffi_emissions,luc_emissions -1751,0.003, -1752,0.003, -1753,0.003, -1754,0.003, -1755,0.003, -1756,0.003, -1757,0.003, -1758,0.003, -1759,0.003, -1760,0.003, -1761,0.003, -1762,0.003, -1763,0.003, -1764,0.003, -1765,0.003, -1766,0.003, -1767,0.003, -1768,0.003, -1769,0.003, -1770,0.003, -1771,0.004, -1772,0.004, -1773,0.004, -1774,0.004, -1775,0.004, -1776,0.004, -1777,0.004, -1778,0.004, -1779,0.004, -1780,0.004, -1781,0.005, -1782,0.005, -1783,0.005, -1784,0.005, -1785,0.005, -1786,0.005, -1787,0.005, -1788,0.005, -1789,0.005, -1790,0.005, -1791,0.006, -1792,0.006, -1793,0.006, -1794,0.006, -1795,0.006, -1796,0.006, -1797,0.007, -1798,0.007, -1799,0.007, -1800,0.008, -1801,0.008, -1802,0.01, -1803,0.009, -1804,0.009, -1805,0.009, -1806,0.01, -1807,0.01, -1808,0.01, -1809,0.01, -1810,0.01, -1811,0.011, -1812,0.011, -1813,0.011, -1814,0.011, -1815,0.012, -1816,0.013, -1817,0.014, -1818,0.014, -1819,0.014, -1820,0.014, -1821,0.014, -1822,0.015, -1823,0.016, -1824,0.016, -1825,0.017, -1826,0.017, -1827,0.018, -1828,0.018, -1829,0.018, -1830,0.024, -1831,0.023, -1832,0.023, -1833,0.024, -1834,0.024, -1835,0.025, -1836,0.029, -1837,0.029, -1838,0.03, -1839,0.031, -1840,0.033, -1841,0.034, -1842,0.036, -1843,0.037, -1844,0.039, -1845,0.043, -1846,0.043, -1847,0.046, -1848,0.047, -1849,0.05, -1850,0.054,0.5006 -1851,0.054,0.4927 -1852,0.057,0.5485 -1853,0.059,0.5468 -1854,0.069,0.5448 -1855,0.071,0.5421 -1856,0.076,0.5477 -1857,0.077,0.5533 -1858,0.078,0.5586 -1859,0.083,0.564 -1860,0.091,0.569 -1861,0.095,0.5796 -1862,0.097,0.5209 -1863,0.104,0.5211 -1864,0.112,0.5216 -1865,0.119,0.5224 -1866,0.122,0.5225 -1867,0.13,0.5208 -1868,0.135,0.5192 -1869,0.142,0.5175 -1870,0.147,0.5163 -1871,0.156,0.5367 -1872,0.173,0.6232 -1873,0.184,0.6341 -1874,0.174,0.6411 -1875,0.188,0.6484 -1876,0.191,0.6555 -1877,0.194,0.6624 -1878,0.196,0.6695 -1879,0.21,0.6764 -1880,0.236,0.6829 -1881,0.243,0.7189 -1882,0.256,0.6727 -1883,0.272,0.6783 -1884,0.275,0.6834 -1885,0.277,0.6877 -1886,0.281,0.6904 -1887,0.295,0.6898 -1888,0.327,0.6886 -1889,0.327,0.6872 -1890,0.356,0.6859 -1891,0.372,0.6815 -1892,0.374,0.695 -1893,0.37,0.6958 -1894,0.383,0.7133 -1895,0.406,0.7175 -1896,0.419,0.7194 -1897,0.44,0.723 -1898,0.465,0.7245 -1899,0.507,0.7258 -1900,0.534,0.7269 -1901,0.552,0.7928 -1902,0.566,0.7968 -1903,0.617,0.8259 -1904,0.624,0.8524 -1905,0.663,0.8785 -1906,0.707,0.9095 -1907,0.784,0.9186 -1908,0.75,0.9279 -1909,0.785,0.9353 -1910,0.819,0.941 -1911,0.836,0.8829 -1912,0.879,0.8462 -1913,0.943,0.8159 -1914,0.85,0.8048 -1915,0.838,0.793 -1916,0.901,0.7951 -1917,0.955,0.7982 -1918,0.936,0.8014 -1919,0.806,0.8071 -1920,0.932,0.8088 -1921,0.803,0.8567 -1922,0.845,0.8491 -1923,0.97,0.857 -1924,0.963,0.8627 -1925,0.975,0.8656 -1926,0.983,0.8705 -1927,1.062,0.9097 -1928,1.065,0.913 -1929,1.145,0.94 -1930,1.053,1.0181 -1931,0.94,1.0287 -1932,0.847,0.9308 -1933,0.893,0.9276 -1934,0.973,0.9153 -1935,1.027,0.9137 -1936,1.13,0.922 -1937,1.209,0.8993 -1938,1.142,0.9024 -1939,1.192,0.9005 -1940,1.299,0.8875 -1941,1.334,0.8702 -1942,1.342,0.8913 -1943,1.391,0.8864 -1944,1.383,0.8923 -1945,1.16,0.8941 -1946,1.238,0.9769 -1947,1.392,1.0089 -1948,1.469,1.0158 -1949,1.419,1.0249 -1950,1.63,1.0373 -1951,1.767,1.2583 -1952,1.795,1.2847 -1953,1.841,1.2809 -1954,1.865,1.335 -1955,2.043,1.3795 -1956,2.177,1.4389 -1957,2.27,1.4691 -1958,2.33,1.5208 -1959,2.462,1.3978 -1960,2.577,1.3858 -1961,2.594,1.4639 -1962,2.7,1.46 -1963,2.847,1.4749 -1964,3.008,1.4871 -1965,3.145,1.505 -1966,3.305,1.5393 -1967,3.411,1.5458 -1968,3.588,1.4777 -1969,3.8,1.4831 -1970,4.076,1.4397 -1971,4.23,1.2917 -1972,4.398,1.2642 -1973,4.634,1.2487 -1974,4.643,1.2545 -1975,4.614,1.2451 -1976,4.883,1.3119 -1977,5.021,1.3151 -1978,5.084,1.3119 -1979,5.367,1.2838 -1980,5.316,1.2399 -1981,5.151,1.2634 -1982,5.119,1.463 -1983,5.099,1.5129 -1984,5.283,1.5601 -1985,5.434,1.5832 -1986,5.603,1.6011 -1987,5.747,1.6111 -1988,5.96,1.6385 -1989,6.081,1.647 -1990,6.149,1.6437 -1991,6.241,1.7125 -1992,6.126,1.605 -1993,6.132,1.5938 -1994,6.249,1.5805 -1995,6.387,1.5616 -1996,6.524,1.5313 -1997,6.649,1.4913 -1998,6.63,1.4872 -1999,6.571,1.4492 -2000,6.738,1.4099 -2001,6.9,1.3854 -2002,6.955,1.5177 -2003,7.289,1.5132 -2004,7.671,1.5349 -2005,7.971,1.4673 -2006,8.225, -2007,8.365, diff --git a/inst/shinyApp/www/input/emissions/gcam_emissions.csv b/inst/shinyApp/www/input/emissions/gcam_emissions.csv deleted file mode 100644 index d3f9659..0000000 --- a/inst/shinyApp/www/input/emissions/gcam_emissions.csv +++ /dev/null @@ -1,250 +0,0 @@ -; Standard historical emissions for GCAM, 1990-2010. Pre-1990 and Post-2010 emissions are from RCP4.5, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; taken from GCAM_ROOT/input/magicc/Historical\ Emissions/Default\ Emissions\ Module/Hist_to_2008_Annual.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,Gg,Gg,MtS/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCF22_emissions,HCF141b_emissions,HCF142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.15,1.45,312.24363,6.134052909,63.94845233,63948.45233,1045.747123,166.2503538,34.76423987,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,7.772662322,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.24,1.65,314.57878,6.027936715,62.63000983,62630.00983,1021.791172,174.6872556,34.05798125,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,8.143820543,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.18,1.69,321.95179,6.354227086,60.54027123,60540.27123,1174.203779,182.6468576,36.14417806,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,8.146355176,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.17,1.56,306.48785,5.905312006,59.44097347,59440.97347,934.8376133,159.6833476,34.71270069,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,8.886367317,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.28,1.52,311.05344,6.018185775,58.34323322,58343.23322,977.620746,169.0259706,34.8193501,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,7.045438793,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.42,1.5,309.28838,6.118040582,57.18625984,57186.25984,930.1040543,157.4351743,35.28733501,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,8.522582663,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.55,1.48,309.40561,6.216000677,56.9295967,56929.5967,916.9780098,155.3429045,35.41694838,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,8.525232603,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.66,1.46,340.52374,6.621938328,56.37686085,56376.86085,1232.705791,215.9517079,36.29135245,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,6.315450159,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.64,1.45,315.33019,6.431857113,55.41683344,55416.83344,1044.935423,167.0161442,36.94172282,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,6.686147436,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.58,1.41,307.0371,6.086869535,53.39588818,53395.88818,878.188349,152.6935046,35.06501461,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,8.900653788,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.75,1.43,306.55951,6.038559807,53.49686408,53496.86408,826.8782349,148.4220392,34.98132448,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,7.797202632,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.91,1.24,312.08683,6.129975798,53.49591539,53495.91539,857.7293622,152.8746022,34.9512431,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,8.023592105,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.98,1.07,321.52222,7.505797897,52.81223964,52812.23964,924.1843932,167.8804808,35.57523405,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,8.2497,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.4,1.04,323.20905,7.441176389,53.9771379,53977.1379,862.2987803,158.3399477,35.93829745,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,8.475667105,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.78,1.02,335.14109,7.599588834,55.90222428,55902.22428,891.6340178,162.9481049,37.13635494,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,8.701493421,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,8.09,1,344.36065,7.738554605,57.82782981,57827.82981,933.7838151,165.7587692,38.1765176,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,8.927038158,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.35,1,366.48763,8.115002364,59.8411166,59841.1166,1079.290248,186.3263289,40.33918303,8.2245,35.9952,41.9902,11.411,2.5813,0.4427,10.5529,12.3831,3.8803,14.4509,121.0746,12.7893,5.1614,31.23,9.110346053,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.54,0.95,373.73371,8.466194586,61.87337061,61873.37061,1170.403866,181.4418987,43.37854879,8.1977,35.598,42.0965,11.2139,2.5131,0.4492,10.2947,13.7731,4.5246,15.1335,129.6223,13.1314,5.4292,35.5714,9.293935526,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.75,0.94,377.84872,8.083834635,63.67667801,63676.67801,957.077906,168.5070723,41.21442833,8.1708667,35.199467,42.202733,11.012133,2.4452667,0.45503333,10.037233,15.162767,5.1677,15.798,133.99193,13.4753,5.6901667,39.912933,8.850026316,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.775,0.8,359.79936,8.611917318,58.02,58020,1058.418953,196.2685362,40.41721417,8.1440333,34.800933,42.308967,14.4110665,2.45763335,0.46086667,9.7797667,16.552433,5.8108,12.069,190.380965,6.73765,2.84508335,44.254467,7.920013158,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.8,0.66,341.75,9.14,59.34,59340,1159.76,224.03,39.62,8.1172,34.4024,42.4152,17.81,2.47,0.4667,9.5223,17.9421,6.4539,8.34,246.77,0,0,48.596,6.99,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082 diff --git a/inst/shinyApp/www/input/emissions/volcanic_RF.csv b/inst/shinyApp/www/input/emissions/volcanic_RF.csv deleted file mode 100644 index a260f5f..0000000 --- a/inst/shinyApp/www/input/emissions/volcanic_RF.csv +++ /dev/null @@ -1,739 +0,0 @@ -; Annual mean volcanic stratospheric aerosol forcing (W/m2), -; M. Meinshausen S. Smith et al. (2011) The RCP GHG concentrations and their extension from 1765 to 2300 DOI 10.1007/s10584-011-0156-z Climatic Change., -Date,SV -1765,0 -1766,0.11622211 -1767,0.23244422 -1768,0.19744422 -1769,0.13181922 -1770,0.12744422 -1771,0.17994422 -1772,0.21494422 -1773,0.22806922 -1774,0.23244422 -1775,0.23244422 -1776,0.23244422 -1777,0.23244422 -1778,0.23244422 -1779,0.23244422 -1780,0.23244422 -1781,0.23244422 -1782,0.21056922 -1783,0.11869422 -1784,0.044319219 -1785,0.10119422 -1786,0.18869422 -1787,0.22369422 -1788,0.22806922 -1789,0.12306922 -1790,-0.025680781 -1791,0.009319219 -1792,0.14056922 -1793,0.20619422 -1794,0.21494422 -1795,0.19306922 -1796,0.18869422 -1797,0.21056922 -1798,0.22806922 -1799,0.23244422 -1800,0.23244422 -1801,0.23244422 -1802,0.23244422 -1803,0.23244422 -1804,0.23244422 -1805,0.23244422 -1806,0.23244422 -1807,0.23244422 -1808,-0.25755578 -1809,-1.3994308 -1810,-1.8019308 -1811,-1.0100558 -1812,-0.34068078 -1813,-0.14818078 -1814,-0.67755578 -1815,-2.1519308 -1816,-2.6638058 -1817,-1.4956808 -1818,-0.36255578 -1819,0.092444219 -1820,0.22369422 -1821,0.23244422 -1822,0.23244422 -1823,0.23244422 -1824,0.23244422 -1825,0.23244422 -1826,0.23244422 -1827,0.23244422 -1828,0.22806922 -1829,0.19306922 -1830,-0.021305781 -1831,-0.39755578 -1832,-0.48505578 -1833,-0.18318078 -1834,-0.34505578 -1835,-0.98818078 -1836,-0.94880578 -1837,-0.34943078 -1838,0.044319219 -1839,0.17994422 -1840,0.17994422 -1841,0.17556922 -1842,0.18869422 -1843,0.16681922 -1844,0.15369422 -1845,0.18431922 -1846,0.21494422 -1847,0.22806922 -1848,0.23244422 -1849,0.21599422 -1850,0.19200464 -1851,0.19303276 -1852,0.20879734 -1853,0.2235338 -1854,0.2317588 -1855,0.10118693 -1856,-0.35667141 -1857,-0.61027557 -1858,-0.29772557 -1859,0.028190052 -1860,0.15053693 -1861,0.13957026 -1862,0.05526401 -1863,0.06760151 -1864,0.15087964 -1865,0.19851609 -1866,0.21907859 -1867,0.22901714 -1868,0.23107339 -1869,0.22284839 -1870,0.21873589 -1871,0.2194213 -1872,0.2070838 -1873,0.19337547 -1874,0.20125776 -1875,0.19406089 -1876,0.15293589 -1877,0.14848068 -1878,0.18035255 -1879,0.20194318 -1880,0.21565151 -1881,0.22284839 -1882,0.11112547 -1883,-0.80253495 -1884,-1.5373016 -1885,-0.94407349 -1886,-0.44851724 -1887,-0.32137245 -1888,-0.21102036 -1889,-0.27750578 -1890,-0.3316537 -1891,-0.2617412 -1892,-0.087645365 -1893,0.060061927 -1894,0.16938589 -1895,0.1618463 -1896,0.016537969 -1897,-0.064683906 -1898,0.037785885 -1899,0.15053693 -1900,0.20194318 -1901,0.19166193 -1902,-0.25694328 -1903,-0.65105786 -1904,-0.3563287 -1905,0.002144219 -1906,0.1001588 -1907,0.076169219 -1908,0.087821302 -1909,0.15396401 -1910,0.18892026 -1911,0.19508901 -1912,-0.048576615 -1913,-0.15652974 -1914,0.055606719 -1915,0.15944734 -1916,0.18754943 -1917,0.19611714 -1918,0.20194318 -1919,0.1947463 -1920,0.11078276 -1921,0.095703594 -1922,0.18103797 -1923,0.20228589 -1924,0.18926297 -1925,0.18926297 -1926,0.19714526 -1927,0.19508901 -1928,0.14573901 -1929,0.096046302 -1930,0.12174943 -1931,0.14642443 -1932,0.11489526 -1933,0.12380568 -1934,0.16218901 -1935,0.16938589 -1936,0.18069526 -1937,0.17932443 -1938,0.16321714 -1939,0.16390255 -1940,0.18377964 -1941,0.19303276 -1942,0.17144214 -1943,0.16630151 -1944,0.18926297 -1945,0.19988693 -1946,0.2070838 -1947,0.1988588 -1948,0.19680255 -1949,0.18926297 -1950,0.18686401 -1951,0.1906338 -1952,0.18446505 -1953,0.17555464 -1954,0.18069526 -1955,0.2029713 -1956,0.2153088 -1957,0.22559005 -1958,0.23073068 -1959,0.22696089 -1960,0.15190776 -1961,0.060747344 -1962,-0.013963073 -1963,-0.49546828 -1964,-0.85325578 -1965,-0.53248078 -1966,-0.15001828 -1967,-0.021502656 -1968,-0.22027349 -1969,-0.29635474 -1970,-0.055430781 -1971,0.11420984 -1972,0.15327859 -1973,0.10632755 -1974,-0.040694323 -1975,-0.14110786 -1976,-0.017390156 -1977,0.13408693 -1978,0.10906922 -1979,0.093990052 -1980,0.14813797 -1981,0.079596302 -1982,-0.59142661 -1983,-0.87621724 -1984,-0.32000161 -1985,-0.023216198 -1986,0.035044219 -1987,0.065887969 -1988,0.10598484 -1989,0.12928901 -1990,0.12654734 -1991,-0.81487245 -1992,-1.4197527 -1993,-0.68190161 -1994,-0.13151203 -1995,0.058691094 -1996,0.12380568 -1997,0.15327859 -1998,0.18754943 -1999,0.21633693 -2000,0.22867443 -2001,0.23244422 -2002,0.23244422 -2003,0.23244422 -2004,0.23244422 -2005,0.18401834 -2006,0.06779623 -2007,0 -2008,0 -2009,0 -2010,0 -2011,0 -2012,0 -2013,0 -2014,0 -2015,0 -2016,0 -2017,0 -2018,0 -2019,0 -2020,0 -2021,0 -2022,0 -2023,0 -2024,0 -2025,0 -2026,0 -2027,0 -2028,0 -2029,0 -2030,0 -2031,0 -2032,0 -2033,0 -2034,0 -2035,0 -2036,0 -2037,0 -2038,0 -2039,0 -2040,0 -2041,0 -2042,0 -2043,0 -2044,0 -2045,0 -2046,0 -2047,0 -2048,0 -2049,0 -2050,0 -2051,0 -2052,0 -2053,0 -2054,0 -2055,0 -2056,0 -2057,0 -2058,0 -2059,0 -2060,0 -2061,0 -2062,0 -2063,0 -2064,0 -2065,0 -2066,0 -2067,0 -2068,0 -2069,0 -2070,0 -2071,0 -2072,0 -2073,0 -2074,0 -2075,0 -2076,0 -2077,0 -2078,0 -2079,0 -2080,0 -2081,0 -2082,0 -2083,0 -2084,0 -2085,0 -2086,0 -2087,0 -2088,0 -2089,0 -2090,0 -2091,0 -2092,0 -2093,0 -2094,0 -2095,0 -2096,0 -2097,0 -2098,0 -2099,0 -2100,0 -2101,0 -2102,0 -2103,0 -2104,0 -2105,0 -2106,0 -2107,0 -2108,0 -2109,0 -2110,0 -2111,0 -2112,0 -2113,0 -2114,0 -2115,0 -2116,0 -2117,0 -2118,0 -2119,0 -2120,0 -2121,0 -2122,0 -2123,0 -2124,0 -2125,0 -2126,0 -2127,0 -2128,0 -2129,0 -2130,0 -2131,0 -2132,0 -2133,0 -2134,0 -2135,0 -2136,0 -2137,0 -2138,0 -2139,0 -2140,0 -2141,0 -2142,0 -2143,0 -2144,0 -2145,0 -2146,0 -2147,0 -2148,0 -2149,0 -2150,0 -2151,0 -2152,0 -2153,0 -2154,0 -2155,0 -2156,0 -2157,0 -2158,0 -2159,0 -2160,0 -2161,0 -2162,0 -2163,0 -2164,0 -2165,0 -2166,0 -2167,0 -2168,0 -2169,0 -2170,0 -2171,0 -2172,0 -2173,0 -2174,0 -2175,0 -2176,0 -2177,0 -2178,0 -2179,0 -2180,0 -2181,0 -2182,0 -2183,0 -2184,0 -2185,0 -2186,0 -2187,0 -2188,0 -2189,0 -2190,0 -2191,0 -2192,0 -2193,0 -2194,0 -2195,0 -2196,0 -2197,0 -2198,0 -2199,0 -2200,0 -2201,0 -2202,0 -2203,0 -2204,0 -2205,0 -2206,0 -2207,0 -2208,0 -2209,0 -2210,0 -2211,0 -2212,0 -2213,0 -2214,0 -2215,0 -2216,0 -2217,0 -2218,0 -2219,0 -2220,0 -2221,0 -2222,0 -2223,0 -2224,0 -2225,0 -2226,0 -2227,0 -2228,0 -2229,0 -2230,0 -2231,0 -2232,0 -2233,0 -2234,0 -2235,0 -2236,0 -2237,0 -2238,0 -2239,0 -2240,0 -2241,0 -2242,0 -2243,0 -2244,0 -2245,0 -2246,0 -2247,0 -2248,0 -2249,0 -2250,0 -2251,0 -2252,0 -2253,0 -2254,0 -2255,0 -2256,0 -2257,0 -2258,0 -2259,0 -2260,0 -2261,0 -2262,0 -2263,0 -2264,0 -2265,0 -2266,0 -2267,0 -2268,0 -2269,0 -2270,0 -2271,0 -2272,0 -2273,0 -2274,0 -2275,0 -2276,0 -2277,0 -2278,0 -2279,0 -2280,0 -2281,0 -2282,0 -2283,0 -2284,0 -2285,0 -2286,0 -2287,0 -2288,0 -2289,0 -2290,0 -2291,0 -2292,0 -2293,0 -2294,0 -2295,0 -2296,0 -2297,0 -2298,0 -2299,0 -2300,0 -2301,0 -2302,0 -2303,0 -2304,0 -2305,0 -2306,0 -2307,0 -2308,0 -2309,0 -2310,0 -2311,0 -2312,0 -2313,0 -2314,0 -2315,0 -2316,0 -2317,0 -2318,0 -2319,0 -2320,0 -2321,0 -2322,0 -2323,0 -2324,0 -2325,0 -2326,0 -2327,0 -2328,0 -2329,0 -2330,0 -2331,0 -2332,0 -2333,0 -2334,0 -2335,0 -2336,0 -2337,0 -2338,0 -2339,0 -2340,0 -2341,0 -2342,0 -2343,0 -2344,0 -2345,0 -2346,0 -2347,0 -2348,0 -2349,0 -2350,0 -2351,0 -2352,0 -2353,0 -2354,0 -2355,0 -2356,0 -2357,0 -2358,0 -2359,0 -2360,0 -2361,0 -2362,0 -2363,0 -2364,0 -2365,0 -2366,0 -2367,0 -2368,0 -2369,0 -2370,0 -2371,0 -2372,0 -2373,0 -2374,0 -2375,0 -2376,0 -2377,0 -2378,0 -2379,0 -2380,0 -2381,0 -2382,0 -2383,0 -2384,0 -2385,0 -2386,0 -2387,0 -2388,0 -2389,0 -2390,0 -2391,0 -2392,0 -2393,0 -2394,0 -2395,0 -2396,0 -2397,0 -2398,0 -2399,0 -2400,0 -2401,0 -2402,0 -2403,0 -2404,0 -2405,0 -2406,0 -2407,0 -2408,0 -2409,0 -2410,0 -2411,0 -2412,0 -2413,0 -2414,0 -2415,0 -2416,0 -2417,0 -2418,0 -2419,0 -2420,0 -2421,0 -2422,0 -2423,0 -2424,0 -2425,0 -2426,0 -2427,0 -2428,0 -2429,0 -2430,0 -2431,0 -2432,0 -2433,0 -2434,0 -2435,0 -2436,0 -2437,0 -2438,0 -2439,0 -2440,0 -2441,0 -2442,0 -2443,0 -2444,0 -2445,0 -2446,0 -2447,0 -2448,0 -2449,0 -2450,0 -2451,0 -2452,0 -2453,0 -2454,0 -2455,0 -2456,0 -2457,0 -2458,0 -2459,0 -2460,0 -2461,0 -2462,0 -2463,0 -2464,0 -2465,0 -2466,0 -2467,0 -2468,0 -2469,0 -2470,0 -2471,0 -2472,0 -2473,0 -2474,0 -2475,0 -2476,0 -2477,0 -2478,0 -2479,0 -2480,0 -2481,0 -2482,0 -2483,0 -2484,0 -2485,0 -2486,0 -2487,0 -2488,0 -2489,0 -2490,0 -2491,0 -2492,0 -2493,0 -2494,0 -2495,0 -2496,0 -2497,0 -2498,0 -2499,0 -2500,0 diff --git a/inst/shinyApp/www/input/hector-gcam.ini b/inst/shinyApp/www/input/hector-gcam.ini deleted file mode 100644 index 9dfa294..0000000 --- a/inst/shinyApp/www/input/hector-gcam.ini +++ /dev/null @@ -1,320 +0,0 @@ -;;;; Config file for hector model -;;; -;;; The file paths in this configuration assume that gcam is running -;;; in the exe/ directory of the GCAM installation. The -;;; gcam_emissions.csv file contains emissions for just the historical -;;; period (up through 2010). This file should be used for any -;;; component for which GCAM will be providing emissions. Components -;;; for which GCAM will not be providing emissions should be pointed -;;; at an emissions file that has emissions at least through the end -;;; of the GCAM run. Currently we're using the RCP45 input file, but -;;; you could use any input that seems appropriate. -;;; -;;; Most of the hector configuration happens in this file. The XML -;;; inputs only specify the configuration for the GCAM hector -;;; component. For details on how to set hector's internal -;;; parameters, consult the hector users' manual. -;;; -;;; Finally, note that any component parameters set in this input file -;;; can in principle be made to be settable through the core messaging -;;; interface. Such conversions are relatively easy to make, should -;;; the need arise. -;;; -[core] -run_name=gcam -startDate=1745 -endDate=2100 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=5000 ; maximum steps allowed for spinup (default=2000) - -[onelineocean] -enabled=0 ; putting 'enabled=0' will disable any component - -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? - -tt = 72000000 ; 7.2e7 thermohaline circulation, m3/s -tu = 49000000 ; 4.9e7 high latitude overturning, m3/s -twi = 12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid = 200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -[simpleNbox] -; Initial (preindustrial) carbon pools -atmos_c=588.071 ; Pg C in CO2, from Murakami (2010) - -; If using biomes (e.g. boreal.veg_c ) must have data for all pools*biomes -veg_c=550 ; Pg C -detritus_c=55 ; Pg C -soil_c=1782 ; Pg C 2000 - -; Initial (preindustrial) carbon fluxes -npp_flux0=50.0 ; Preindustrial NPP, Pg C/yr -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus -f_litterd=0.98 ; Fraction of litter to detritus -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus - -; Anthropogenic contributions: direct emissions, Pg (or Gt) C/yr -ffi_emissions=csv:../input/climate/gcam_emissions.csv ; historical emissions data only. Future emissions will be provided by GCAM - -; Anthropogenic contributions: land use change -luc_emissions=csv:../input/climate/gcam_emissions.csv - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C yr-1 - -[so2] -S0= 53841.2 ; historical sulphate from year 2000 (Ggrams) -SN=42000 ; natural sulfur emissions (Ggrams) -SO2_emissions = csv:../input/climate/gcam_emissions.csv -;SV = csv:../input/climate/volcanic_RF.csv - -[CH4] -enabled=1 -M0 = 653 ;721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil = 160 ; CH4 loss to soil (years) -Tstrat = 120 ; CH4 loss to stratosphere (years) -UC_CH4 = 2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N = 300 ; Natural CH4 emissions (Ggrams) - -CH4_emissions=csv:../input/climate/gcam_emissions.csv ; concentration time series - -[OH] -enabled=1 -NOX_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series -CO_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series -NMVOC_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series - -TOH0 = 6.6 ; inital OH lifetime (years) -CNOX = 0.0042 ; coefficent for NOX -CCO = -0.000105 ; coefficent for CO -CNMVOC = -0.000315 ; coefficent for NMVOC -CCH4 = -0.32 ; coefficent for CH4 - -[ozone] -enabled=1 -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series -CO_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series -NMVOC_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series - -[N2O] -enabled=1 -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -N2O_natural_emissions[1765] = 11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000] = 8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300] = 8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:../input/climate/gcam_emissions.csv ; emissions time series - - -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -[bc] -BC_emissions=csv:../input/climate/gcam_emissions.csv - -[oc] -OC_emissions=csv:../input/climate/gcam_emissions.csv - -; -------------------------------------------------------------------------- -; Halocarbons in kt/yr -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) -; Concentration (ppt) data from: http://www.pik-potsdam.de/~mmalte/rcps/ - -[CF4_halocarbon] -tau = 50000.0 ; lifetime in years -rho = 0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions = csv:../input/climate/gcam_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau= 10000.0 -rho= 0.00026 -C2F6_emissions = csv:../input/climate/gcam_emissions.csv -molarMass=138.01 - -[HFC23_halocarbon] -; GCAM folds these emissions into HFC143a -enabled=0 -tau= 270.0 -rho= 0.00019 -HFC23_emissions = csv:../input/climate/RCP45_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -; GCAM folds these emissions into HFC245fa. -enabled=0 -tau= 4.9 -rho= 0.00011 -HFC32_emissions = csv:../input/climate/RCP45_emissions.csv -molarMass=52.0 - - -[HFC4310_halocarbon] -tau= 15.9 -rho= 0.0004 -HFC4310_emissions = csv:../input/climate/RCP45_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau= 29.0 -rho= 0.00023 -HFC125_emissions = csv:../input/climate/gcam_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau= 14.0 -rho= 0.00016 -HFC134a_emissions = csv:../input/climate/gcam_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau= 52.0 -rho= 0.00013 -HFC143a_emissions = csv:../input/climate/RCP45_emissions.csv -molarMass=84.04 - -[HFC227ea_halocarbon] -tau= 34.2 -rho= 0.00026 -HFC227ea_emissions = csv:../input/climate/RCP45_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau= 7.6 -rho= 0.00028 -HFC245fa_emissions = csv:../input/climate/gcam_emissions.csv -molarMass=134.0 - -[SF6_halocarbon] -tau= 3200.0 -rho= 0.00052 -SF6_emissions= csv:../input/climate/gcam_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau= 45.0 -rho= 0.00025 -CFC11_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=137.35 - -[CFC12_halocarbon] -tau= 100 -rho= 0.00032 -CFC12_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=120.9 - -[CFC113_halocarbon] -tau= 85.0 -rho= 0.0003 -CFC113_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=187.35 - -[CFC114_halocarbon] -tau= 300 -rho= 0.00031 -CFC114_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=170.9 - -[CFC115_halocarbon] -tau= 1700 -rho= 0.00018 -CFC115_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau= 26.0 -rho= 0.00013 -CCl4_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=153.8 - -[CH3CCl3_halocarbon] -tau= 5.0 -rho= 0.00006 -CH3CCl3_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=133.35 - -[halon1211_halocarbon] -tau= 16.0 -rho= 0.00003 -halon1211_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=165.35 - -[halon1301_halocarbon] -tau= 65.0 -rho= 0.00032 -halon1301_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=148.9 - -[halon2402_halocarbon] -tau= 20.0 -rho= 0.00033 -halon2402_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=259.8 - -[HCF22_halocarbon] -tau= 12.0 -rho= 0.0002 -HCF22_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=86.45 - -[HCF141b_halocarbon] -tau= 9.3 -rho= 0.00014 -HCF141b_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=116.9 - -[HCF142b_halocarbon] -tau= 17.9 -rho= 0.0002 -HCF142b_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=100.45 - -[CH3Cl_halocarbon] -tau= 1.3 -rho= 0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=50.45 - -[CH3Br_halocarbon] -tau= 0.7 -rho= 0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions= csv:../input/climate/RCP45_emissions.csv -molarMass=94.9 diff --git a/inst/shinyApp/www/input/hector_rcp26.ini b/inst/shinyApp/www/input/hector_rcp26.ini deleted file mode 100644 index 0c41779..0000000 --- a/inst/shinyApp/www/input/hector_rcp26.ini +++ /dev/null @@ -1,388 +0,0 @@ -; Config file for hector model: RCP26 -;------------------------------------------------------------------------ -[core] -run_name=rcp26 -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP26_emissions.csv -luc_emissions=csv:emissions/RCP26_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -;Ca_constrain=csv:constraints/RCP26_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP26_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP26_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP26_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP26_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP26_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP26_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP26_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP26_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP26_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP26_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP26_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP26_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP26_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP26_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/hector_rcp26_constrained.ini b/inst/shinyApp/www/input/hector_rcp26_constrained.ini deleted file mode 100644 index fd14e3e..0000000 --- a/inst/shinyApp/www/input/hector_rcp26_constrained.ini +++ /dev/null @@ -1,389 +0,0 @@ -;Config file for hector model: that uses RCP26 concentrations to drive Hector. -;Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp26_co2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP26_emissions.csv -luc_emissions=csv:emissions/RCP26_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -Ca_constrain=csv:constraints/rcp26_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP26_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP26_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP26_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP26_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP26_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP26_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP26_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP26_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP26_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP26_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP26_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCF22_halocarbon] -tau=12.0 -rho=0.0002 -HCF22_emissions=csv:emissions/RCP26_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCF141b_halocarbon] -tau=9.3 -rho=0.00014 -HCF141b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCF142b_halocarbon] -tau=17.9 -rho=0.0002 -HCF142b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP26_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP26_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/hector_rcp26_histconstrain.ini b/inst/shinyApp/www/input/hector_rcp26_histconstrain.ini deleted file mode 100644 index b44bb19..0000000 --- a/inst/shinyApp/www/input/hector_rcp26_histconstrain.ini +++ /dev/null @@ -1,390 +0,0 @@ -;Config file for hector model: that uses historical CO2 concentrations before -; switching to RCP26 concentrations to drive Hector. -; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp26_histco2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP26_emissions.csv -luc_emissions=csv:emissions/RCP26_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -Ca_constrain=csv:constraints/rcp26_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP26_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP26_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP26_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP26_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP26_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP26_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP26_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP26_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP26_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP26_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP26_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCF22_halocarbon] -tau=12.0 -rho=0.0002 -HCF22_emissions=csv:emissions/RCP26_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCF141b_halocarbon] -tau=9.3 -rho=0.00014 -HCF141b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCF142b_halocarbon] -tau=17.9 -rho=0.0002 -HCF142b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP26_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP26_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/hector_rcp45.ini b/inst/shinyApp/www/input/hector_rcp45.ini deleted file mode 100644 index e602f75..0000000 --- a/inst/shinyApp/www/input/hector_rcp45.ini +++ /dev/null @@ -1,388 +0,0 @@ -; Config file for hector model: RCP45 -;------------------------------------------------------------------------ -[core] -run_name=rcp45 -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP45_emissions.csv -luc_emissions=csv:emissions/RCP45_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -;Ca_constrain=csv:constraints/RCP45_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_4.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP45_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP45_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP45_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP45_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP45_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP45_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP45_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP45_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP45_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP45_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP45_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP45_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP45_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP45_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP45_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP45_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP45_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP45_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP45_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP45_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP45_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP45_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP45_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP45_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP45_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP45_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP45_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP45_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/hector_rcp45_constrained.ini b/inst/shinyApp/www/input/hector_rcp45_constrained.ini deleted file mode 100644 index 2b786e5..0000000 --- a/inst/shinyApp/www/input/hector_rcp45_constrained.ini +++ /dev/null @@ -1,389 +0,0 @@ -; Config file for hector model: that uses RCP45 concentrations to drive Hector. -; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp45_co2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP45_emissions.csv -luc_emissions=csv:emissions/RCP45_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -Ca_constrain=csv:constraints/rcp45_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_4.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP45_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP45_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP45_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP45_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP45_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP45_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP45_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP45_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP45_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP45_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP45_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP45_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP45_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP45_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP45_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP45_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP45_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP45_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP45_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP45_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP45_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP45_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP45_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCF22_halocarbon] -tau=12.0 -rho=0.0002 -HCF22_emissions=csv:emissions/RCP45_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCF141b_halocarbon] -tau=9.3 -rho=0.00014 -HCF141b_emissions=csv:emissions/RCP45_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCF142b_halocarbon] -tau=17.9 -rho=0.0002 -HCF142b_emissions=csv:emissions/RCP45_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP45_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP45_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/hector_rcp60.ini b/inst/shinyApp/www/input/hector_rcp60.ini deleted file mode 100644 index c06ec6b..0000000 --- a/inst/shinyApp/www/input/hector_rcp60.ini +++ /dev/null @@ -1,388 +0,0 @@ -; Config file for hector model: RCP6 -;------------------------------------------------------------------------ -[core] -run_name=rcp60 -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP6_emissions.csv -luc_emissions=csv:emissions/RCP6_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -;Ca_constrain=csv:constraints/RCP6_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP6_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP6_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP6_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP6_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP6_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP6_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP6_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP6_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP6_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP6_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP6_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP6_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP6_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP6_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP6_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP6_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP6_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP6_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP6_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP6_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP6_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP6_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP6_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP6_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP6_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP6_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP6_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP6_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP6_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP6_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP6_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP6_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/hector_rcp60_constrained.ini b/inst/shinyApp/www/input/hector_rcp60_constrained.ini deleted file mode 100644 index 557fe75..0000000 --- a/inst/shinyApp/www/input/hector_rcp60_constrained.ini +++ /dev/null @@ -1,389 +0,0 @@ -; Config file for hector model: that uses RCP60 concentrations to drive Hector. -; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp60_co2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP6_emissions.csv -luc_emissions=csv:emissions/RCP6_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -Ca_constrain=csv:constraints/rcp60_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP6_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP6_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP6_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP6_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP6_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP6_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP6_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP6_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP6_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP6_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP6_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP6_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP6_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP6_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP6_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP6_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP6_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP6_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP6_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP6_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP6_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP6_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP6_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP6_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP6_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP6_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP6_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCF22_halocarbon] -tau=12.0 -rho=0.0002 -HCF22_emissions=csv:emissions/RCP6_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCF141b_halocarbon] -tau=9.3 -rho=0.00014 -HCF141b_emissions=csv:emissions/RCP6_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCF142b_halocarbon] -tau=17.9 -rho=0.0002 -HCF142b_emissions=csv:emissions/RCP6_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP6_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP6_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP6_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/hector_rcp85.ini b/inst/shinyApp/www/input/hector_rcp85.ini deleted file mode 100644 index a55e64d..0000000 --- a/inst/shinyApp/www/input/hector_rcp85.ini +++ /dev/null @@ -1,388 +0,0 @@ -; Config file for hector model: RCP85 -;------------------------------------------------------------------------ -[core] -run_name=rcp85 -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP85_emissions.csv -luc_emissions=csv:emissions/RCP85_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -;Ca_constrain=csv:constraints/RCP85_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP85_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP85_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP85_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP85_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP85_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP85_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP85_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP85_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP85_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP85_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP85_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP85_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP85_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP85_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP85_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP85_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP85_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP85_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP85_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP85_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP85_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP85_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP85_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP85_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP85_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP85_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP85_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP85_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/hector_rcp85_constrained.ini b/inst/shinyApp/www/input/hector_rcp85_constrained.ini deleted file mode 100644 index a90fb50..0000000 --- a/inst/shinyApp/www/input/hector_rcp85_constrained.ini +++ /dev/null @@ -1,389 +0,0 @@ -; Config file for hector model: that uses RCP85 concentrations to drive Hector. -; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp85_co2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -luc_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -Ca_constrain=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series -SV=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series -CO_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series -CO_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCF22_halocarbon] -tau=12.0 -rho=0.0002 -HCF22_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCF141b_halocarbon] -tau=9.3 -rho=0.00014 -HCF141b_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCF142b_halocarbon] -tau=17.9 -rho=0.0002 -HCF142b_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/RCP85_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/input/hector_rcp85_constrained2.ini b/inst/shinyApp/www/input/hector_rcp85_constrained2.ini deleted file mode 100644 index f45cbd2..0000000 --- a/inst/shinyApp/www/input/hector_rcp85_constrained2.ini +++ /dev/null @@ -1,389 +0,0 @@ -; Config file for hector model: that uses RCP85 concentrations to drive Hector. -; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp85_co2constrain -startDate=1950 -endDate=2100 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[onelineocean] -enabled=0 ; 'enabled=0' will disable any component -;output=0 ; 'output=0' will disable any component's output -ocean_c=38000 ; Pg C - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -luc_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -Ca_constrain=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/constraints/rcp85_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series -SV=csv:E:/Repos/github/hector-ui/inst/shinyApp/www/input/emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series -CO_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series -CO_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1951 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCF22_halocarbon] -tau=12.0 -rho=0.0002 -HCF22_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCF141b_halocarbon] -tau=9.3 -rho=0.00014 -HCF141b_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCF142b_halocarbon] -tau=17.9 -rho=0.0002 -HCF142b_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:E:\Repos\github\hector-ui\inst\shinyApp\www\input\emissions\RCP85_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/shinyApp/www/inputs/ssp119_emissions.csv b/inst/shinyApp/www/inputs/ssp119_emissions.csv new file mode 100644 index 0000000..95a4849 --- /dev/null +++ b/inst/shinyApp/www/inputs/ssp119_emissions.csv @@ -0,0 +1,562 @@ +; ssp119 from rcmip,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; hectordata 0.0.0.9000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; commit dab9aad8750535b,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; date Fri Nov 4 11:35:30 2022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; UNITS:,Pg C/yr,Pg C/yr,Pg C/yr,Pg C/yr,Tg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg CH4,Tg CO,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg N,Tg,Tg NMVOC,Tg N,Tg,Gg,Gg S,Gg,Gg,Gg +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_emissions,CCl4_emissions,CF4_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CFC11_emissions,CFC12_emissions,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_emissions,CH4_emissions,CO_emissions,HCFC141b_emissions,HCFC142b_emissions,HCFC22_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC23_emissions,HFC245fa_emissions,HFC32_emissions,HFC4310_emissions,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,SF6_emissions,SO2_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions +1745,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1746,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1747,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1748,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1749,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1750,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1751,0.002594106,0.08266927,0,0,2.072925926,0,0.024856862,0.010071225,0,0,0,0,0,105.1072,0,4276.7685,18.91510887,343.9263672,0,0,0,0,0,0,0,0,0,0,0,0.055785796,6.860142185,59.08812628,3.833772936,15.18871674,0,1206.06818,0.007723273,0,0 +1752,0.002595208,0.084190146,0,0,2.064311933,0,0.024856862,0.010071225,0,0,0,0,0,105.12502,0,4277.7049,18.88971181,341.8090339,0,0,0,0,0,0,0,0,0,0,0,0.056839716,6.819482037,58.63199703,3.834371851,15.03447574,0,1200.427847,0.007723273,0,0 +1753,0.002595302,0.085739002,0,0,2.071950564,0,0.024856862,0.010071225,0,0,0,0,0,105.10373,0,4276.586,19.12137723,343.6754562,0,0,0,0,0,0,0,0,0,0,0,0.057913547,6.881438529,59.0263494,3.817794323,15.18254515,0,1207.227099,0.007723273,0,0 +1754,0.002596404,0.087316353,0,0,2.099349783,0,0.024856862,0.010071225,0,0,0,0,0,105.07356,0,4274.9998,19.50906107,349.8156252,0,0,0,0,0,0,0,0,0,0,0,0.059007665,7.015189224,60.26994517,3.847331337,15.55877305,0,1232.953114,0.007723273,0,0 +1755,0.002597506,0.088922722,0,0,2.099173165,0,0.024856862,0.010071225,0,0,0,0,0,105.09182,0,4275.9598,19.50045493,348.144668,0,0,0,0,0,0,0,0,0,0,0,0.060122454,6.943989043,59.82493372,3.886652888,15.35818253,0,1223.082685,0.007723273,0,0 +1756,0.00277509,0.090558644,0,0,2.068915407,0,0.024856862,0.010071225,0,0,0,0,0,105.08556,0,4275.6306,19.4625366,343.3231517,0,0,0,0,0,0,0,0,0,0,0,0.061258303,6.922711557,58.94682931,3.780146274,15.19577663,0,1211.479202,0.007723273,0,0 +1757,0.002776193,0.092224663,0,0,2.147923676,0,0.024856862,0.010071225,0,0,0,0,0,105.09137,0,4275.9361,20.02354066,355.9418923,0,0,0,0,0,0,0,0,0,0,0,0.062415611,7.047674129,61.263693,3.998436266,15.70481912,0,1255.688247,0.007723273,0,0 +1758,0.002777295,0.093921331,0,0,2.12061141,0,0.024856862,0.010071225,0,0,0,0,0,105.09662,0,4276.2118,19.93400533,351.839749,0,0,0,0,0,0,0,0,0,0,0,0.063594783,6.995459768,60.43461244,3.95160932,15.51461163,0,1241.80619,0.007723273,0,0 +1759,0.002778397,0.095649213,0,0,2.117267431,0,0.024856862,0.010071225,0,0,0,0,0,105.08372,0,4275.5338,20.14146621,351.5077627,0,0,0,0,0,0,0,0,0,0,0,0.064796232,7.045958325,60.44526305,3.882559461,15.57401349,0,1238.693446,0.007723273,0,0 +1760,0.002778491,0.097408883,0,0,2.127804105,0,0.024856862,0.010071225,0,0,0,0,0,105.04022,0,4273.2473,20.41679714,354.4182853,0,0,0,0,0,0,0,0,0,0,0,0.06602038,7.128048286,61.05172479,3.870426966,15.81906393,0,1250.820917,0.007723273,0,0 +1761,0.0030418,0.099200926,0,0,2.137756989,0,0.024856862,0.010071225,0,0,0,0,0,105.09143,0,4275.9395,20.45599017,354.7079679,0,0,0,0,0,0,0,0,0,0,0,0.067267654,7.080969808,60.9842272,3.947785545,15.69191588,0,1256.548122,0.007723273,0,0 +1762,0.003042907,0.101025937,0,0,2.101748109,0,0.024856862,0.010071225,0,0,0,0,0,105.08127,0,4275.4052,20.45168738,349.2496972,0,0,0,0,0,0,8.32E-08,0,0,1.51E-06,0,0.068538493,7.072547337,60.02708933,3.805606722,15.52593531,0,1235.176016,0.007723273,0,0 +1763,0.003044015,0.102884523,0,0,2.107029758,0,0.024856862,0.010071225,0,0,0,0,0,105.09332,0,4276.0386,20.54517934,350.0593349,0,0,0,0,0,0,6.68E-07,0,0,1.24E-05,0,0.06983334,7.067982584,60.12706627,3.846149431,15.52676249,0,1242.431334,0.007723273,0,0 +1764,0.003045122,0.104777302,0,0,2.071549227,0,0.024856862,0.010071225,0,0,0,0,0,105.1104,0,4276.9364,20.26091721,342.0446107,0,0,0,0,0,0,1.27E-06,0,0,2.50E-05,0,0.07115265,6.89874574,58.43835717,3.829003368,14.95869898,0,1212.823098,0.007723273,0,0 +1765,0.003046229,0.106704903,0,0,2.123600022,0,0.024856862,0.010071225,0,0,0,0,0,105.07293,0,4274.9668,20.919155,352.9327258,0,0,0,0,0,0,1.39E-06,0,0,3.03E-05,0,0.072496884,7.112382325,60.62945786,3.878155223,15.67992411,0,1250.725203,0.007723273,0,0 +1766,0.003396267,0.108667966,0,0,2.110459977,0,0.024856862,0.010071225,0,0,0,0,0,105.07758,0,4275.2111,20.8535919,349.380645,0,0,0,0,0,0,1.42E-06,0,0,3.44E-05,0,0.073866514,7.036296531,59.85878463,3.884852898,15.35883081,0,1244.142077,0.007723273,0,0 +1767,0.003397374,0.110667143,0,0,2.112460701,0,0.024856862,0.010071225,0,0,0,0,0,105.08566,0,4275.6359,20.99917946,349.616099,0,0,0,0,0,0,1.46E-06,0,0,3.84E-05,0,0.07526202,7.045382427,59.8910269,3.880476349,15.4005645,0,1243.308056,0.007723273,0,0 +1768,0.003398482,0.1127031,0,0,2.18313204,0,0.024856862,0.010071225,0,0,0,0,0,105.04673,0,4273.5893,21.65945211,362.6536848,0,0,0,0,0,0,1.49E-06,0,0,4.25E-05,0,0.07668389,7.223617821,62.36582555,4.039005154,16.0637302,0,1294.705423,0.007723273,0,0 +1769,0.003399589,0.114776512,0,0,2.137633742,0,0.024856862,0.010071225,0,0,0,0,0,105.0767,0,4275.165,21.49633535,355.0254185,0,0,0,0,0,0,1.53E-06,0,0,4.65E-05,0,0.078132622,7.157863703,60.95040361,3.914619863,15.73509479,0,1273.362221,0.007723273,0,0 +1770,0.003400696,0.116888069,0,0,2.139364739,0,0.024856862,0.010071225,0,0,0,0,0,105.04544,0,4273.5216,21.63439757,355.3605476,0,0,0,0,0,0,1.57E-06,0,0,5.06E-05,0,0.079608724,7.155978284,60.96602721,3.927122991,15.74271509,0,1277.49221,0.007723273,0,0 +1771,0.003768892,0.119038473,0,0,2.100909701,0,0.024856862,0.010071225,0,0,0,0,0,105.07227,0,4274.9318,21.4289211,347.8619883,0,0,0,0,0,0,1.60E-06,0,0,5.47E-05,0,0.081112713,7.069218405,59.42424033,3.843192573,15.32197739,0,1230.128239,0.007723273,0,0 +1772,0.003770005,0.121228438,0,0,2.087077541,0,0.024856862,0.010071225,0,0,0,0,0,105.08887,0,4275.8046,21.39461572,344.6134738,0,0,0,0,0,0,1.64E-06,0,0,5.87E-05,0,0.082645116,7.043230562,58.72495295,3.812980037,15.11418329,0,1217.836348,0.007723273,0,0 +1773,0.003771118,0.123458692,0,0,2.092755603,0,0.024856862,0.010071225,0,0,0,0,0,105.06952,0,4274.7874,21.59523139,345.7768091,0,0,0,0,0,0,1.67E-06,0,0,6.28E-05,0,0.084206469,7.104503735,58.91656885,3.795742519,15.20466379,0,1220.686645,0.007723273,0,0 +1774,0.003772231,0.125729977,0,0,2.154900741,0,0.024856862,0.010071225,0,0,0,0,0,105.0265,0,4272.5262,22.25970773,358.103585,0,0,0,0,0,0,1.71E-06,0,0,6.68E-05,0,0.08579732,7.347701469,61.31335787,3.892106055,15.87559318,0,1266.428616,0.007723273,0,0 +1775,0.003773344,0.128043046,0,0,2.148996597,0,0.024856862,0.010071225,0,0,0,0,0,105.05246,0,4273.8905,22.20096329,355.0471729,0,0,0,0,0,0,1.75E-06,0,0,7.09E-05,0,0.087418226,7.26964482,60.54083046,3.918102925,15.5891357,0,1250.604504,0.007723273,0,0 +1776,0.004161709,0.13039867,0,0,2.112143132,0,0.024856862,0.010071225,0,0,0,0,0,105.03944,0,4273.2061,22.14194213,348.8985525,0,0,0,0,0,0,1.78E-06,0,0,7.49E-05,0,0.089069754,7.261469977,59.3811448,3.777483547,15.37007702,0,1235.260121,0.007723273,0,0 +1777,0.004162822,0.132797629,0,0,2.170244784,0,0.024856862,0.010071225,0,0,0,0,0,105.05273,0,4273.9048,22.56871006,357.545361,0,0,0,0,0,0,1.82E-06,0,0,7.90E-05,0,0.090752483,7.355973763,60.89349007,3.937981414,15.67345753,0,1262.643552,0.007723273,0,0 +1778,0.004163935,0.135240723,0,0,2.198001402,0,0.024856862,0.010071225,0,0,0,0,0,105.04465,0,4273.48,22.85608093,362.7554135,0,0,0,0,0,0,1.85E-06,0,0,8.30E-05,0,0.092467003,7.434606067,61.78348695,4.021077007,15.89945625,0,1282.280293,0.007723273,0,0 +1779,0.004165048,0.137728763,0,0,2.159615777,0,0.024856862,0.010071225,0,0,0,0,0,105.03691,0,4273.0734,22.82063569,355.9261715,0,0,0,0,0,0,1.89E-06,0,0,8.71E-05,0,0.094213914,7.418773457,60.50081488,3.865645204,15.62745786,0,1253.809198,0.007723273,0,0 +1780,0.00416717,0.140262576,0,0,2.189267588,0,0.024856862,0.010071225,0,0,0,0,0,104.98817,0,4270.511,23.24616665,361.6140422,0,0,0,0,0,0,1.92E-06,0,0,9.10E-05,0,0.095993828,7.569429121,61.61859566,3.871147964,16.0183808,0,1274.797709,0.007723273,0,0 +1781,0.004659413,0.142843003,0,0,2.1894412,0,0.024856862,0.010071225,0,0,0,0,0,105.04236,0,4273.3596,23.24965548,360.0900539,0,0,0,0,0,0,1.96E-06,0,0,9.52E-05,0,0.097807369,7.505783353,61.19330647,3.920723923,15.80695227,0,1277.536252,0.007723273,0,0 +1782,0.004660532,0.145470903,0,0,2.160522701,0,0.024856862,0.010071225,0,0,0,0,0,105.03125,0,4272.7759,23.34175812,356.0465546,0,0,0,0,0,0,2.00E-06,0,0,9.92E-05,0,0.099655171,7.519625788,60.48572145,3.793838185,15.71282083,0,1261.050876,0.007723273,0,0 +1783,0.004662661,0.148147149,0,0,2.15072559,0,0.024856862,0.010071225,0,0,0,0,0,105.0436,0,4273.4248,23.37991679,354.2869243,0,0,0,0,0,0,2.03E-06,0,0,1.03E-04,0,0.101537883,7.496232273,60.10171272,3.788738178,15.60726047,0,1258.691216,0.007723273,0,0 +1784,0.00466378,0.150872629,0,0,2.140542212,0,0.024856862,0.010071225,0,0,0,0,0,105.05531,0,4274.0405,23.2940423,350.5694963,0,0,0,0,0,0,2.07E-06,0,0,1.07E-04,0,0.103456163,7.3811564,59.21225989,3.835360348,15.22814126,0,1241.091384,0.007723273,0,0 +1785,0.004666993,0.153648251,0,0,2.165839691,0,0.024856862,0.010071225,0,0,0,0,0,105.02817,0,4272.6136,23.80210554,356.8051254,0,0,0,0,0,0,2.10E-06,0,0,1.11E-04,0,0.105410684,7.538152323,60.49447936,3.821649192,15.73271148,0,1266.56815,0.007723273,0,0 +1786,0.00529538,0.156474937,0,0,2.158683485,0,0.024856862,0.010071225,0,0,0,0,0,105.02684,0,4272.5442,23.831995,354.2058773,0,0,0,0,0,0,2.14E-06,0,0,1.15E-04,0,0.107402131,7.491084254,59.91468241,3.826316215,15.46715712,0,1263.905903,0.007723273,0,0 +1787,0.005297508,0.159353625,0,0,2.185179294,0,0.024856862,0.010071225,0,0,0,0,0,105.03415,0,4272.9283,24.17652818,358.7933683,0,0,0,0,0,0,2.18E-06,0,0,1.19E-04,0,0.1094312,7.55517197,60.75335708,3.885107996,15.71033146,0,1281.331419,0.007723273,0,0 +1788,0.005298627,0.162285272,0,0,2.255223484,0,0.024856862,0.010071225,0,0,0,0,0,104.9922,0,4270.7227,24.85592892,371.3570923,0,0,0,0,0,0,2.21E-06,0,0,1.23E-04,0,0.111498603,7.730934741,63.12433047,4.038519355,16.34335434,0,1326.080725,0.007723273,0,0 +1789,0.005300755,0.165270854,0,0,2.207664632,0,0.024856862,0.010071225,0,0,0,0,0,105.0242,0,4272.405,24.71707284,363.4416446,0,0,0,0,0,0,2.25E-06,0,0,1.28E-04,0,0.113605064,7.663516243,61.63229238,3.911091424,16.00040861,0,1300.935055,0.007723273,0,0 +1790,0.005302883,0.168311362,0,0,2.216436996,0,0.024856862,0.010071225,0,0,0,0,0,104.99139,0,4270.6805,24.94220857,364.8802164,0,0,0,0,0,0,2.28E-06,0,0,1.32E-04,0,0.115751321,7.680254371,61.84599181,3.937203207,16.05674391,0,1304.800481,0.007723273,0,0 +1791,0.005920183,0.171407806,0,0,2.172583556,0,0.024856862,0.010071225,0,0,0,0,0,105.02128,0,4272.2515,24.77843217,356.6583862,0,0,0,0,0,0,2.32E-06,0,0,1.36E-04,0,0.117938125,7.556943543,60.2187392,3.848117366,15.61644988,0,1284.768804,0.007723273,0,0 +1792,0.006098811,0.174561216,0,0,2.161650793,0,0.024856862,0.010071225,0,0,0,0,0,105.04466,0,4273.4807,24.81889294,354.2515376,0,0,0,0,0,0,2.36E-06,0,0,1.40E-04,0,0.120166243,7.499155045,59.70568574,3.852168551,15.44666919,0,1279.936623,0.007723273,0,0 +1793,0.006105082,0.17777264,0,0,2.153273834,0,0.024856862,0.010071225,0,0,0,0,0,105.02605,0,4272.5025,25.03153141,353.3723093,0,0,0,0,0,0,2.39E-06,0,0,1.44E-04,0,0.122436456,7.518120739,59.5849395,3.798134648,15.47797954,0,1276.675891,0.007723273,0,0 +1794,0.006092419,0.181043144,0,0,2.213843116,0,0.024856862,0.010071225,0,0,0,0,0,104.98417,0,4270.301,25.76753778,365.721914,0,0,0,0,0,0,2.43E-06,0,0,1.48E-04,0,0.124749558,7.731535991,62.03822453,3.901984421,16.16525997,0,1323.391544,0.007723273,0,0 +1795,0.006095933,0.184373817,0,0,2.202692273,0,0.024856862,0.010071225,0,0,0,0,0,105.01093,0,4271.7076,25.77334281,362.1921227,0,0,0,0,0,0,2.46E-06,0,0,1.52E-04,0,0.127106359,7.626169221,61.24273214,3.919106621,15.88313195,0,1307.117791,0.007723273,0,0 +1796,0.006396386,0.187765764,0,0,2.153154616,0,0.024856862,0.010071225,0,0,0,0,0,104.99978,0,4271.1214,25.74058407,354.4783029,0,0,0,0,0,0,2.50E-06,0,0,1.56E-04,0,0.129507686,7.581863097,59.86424243,3.749609514,15.6283698,0,1286.414837,0.007723273,0,0 +1797,0.006712627,0.191220113,0,0,2.213475036,0,0.024856862,0.010071225,0,0,0,0,0,105.01623,0,4271.986,26.23006226,363.5482372,0,0,0,0,0,0,2.54E-06,0,0,1.60E-04,0,0.131954379,7.636302582,61.47137695,3.940974102,15.93865305,0,1322.1792,0.007723273,0,0 +1798,0.006990649,0.194738012,0,0,2.234056283,0,0.024856862,0.010070485,0,0,0,0,0,105.0081,0,4271.559,26.54644012,367.6501028,0,0,0,0,0,0,2.57E-06,0,0,1.64E-04,0,0.134447296,7.671017716,62.19763903,4.015700361,16.12667274,0,1344.494311,0.007723273,0,0 +1799,0.007363034,0.198320631,0,0,2.207292165,0,0.024856862,0.010071964,0,0,0,0,0,104.99068,0,4270.6431,26.70648817,363.4860469,0,0,0,0,0,0,2.61E-06,0,0,1.68E-04,0,0.13698731,7.67446285,61.4962302,3.882903388,16.03734279,0,1332.732765,0.007723273,0,0 +1800,0.007853248,0.201969159,0,0,2.215974055,0,0.024856862,0.010071225,0,0,0,0,0,104.95838,0,4268.9449,27.05634308,365.8466368,0,0,0,0,0,0,2.64E-06,0,0,1.72E-04,0,0.13957531,7.740645322,62.00320914,3.867691465,16.2421417,0,1351.401885,0.007723273,0,0 +1801,0.007792363,0.20568481,0,0,2.21940169,0,0.024856862,0.010071225,0,0,0,0,0,105.01099,0,4271.7107,27.12488718,364.9170684,0,0,0,0,0,0,2.68E-06,0,0,1.76E-04,0,0.142212204,7.701186978,61.66564779,3.921843763,16.06373322,0,1346.312669,0.007723273,0,0 +1802,0.010116776,0.209468818,0,0,2.202692661,0,0.024856862,0.010071225,0,0,0,0,0,104.99468,0,4270.8532,27.33978432,362.9627075,0,0,0,0,0,0,2.72E-06,0,0,1.80E-04,0,0.144898914,7.763054085,61.32615659,3.814905719,16.07582361,0,1365.792459,0.007723273,0,0 +1803,0.008763958,0.213322441,0,0,2.180015828,0,0.024856862,0.010071225,0,0,0,0,0,105.0108,0,4271.7009,27.32049985,358.65078,0,0,0,0,0,0,2.75E-06,0,0,1.84E-04,0,0.147636382,7.720863757,60.40434182,3.773697199,15.83103088,0,1340.023262,0.007723273,0,0 +1804,0.00956559,0.21724696,0,0,2.197298087,0,0.024856862,0.010071225,0,0,0,0,0,105.0121,0,4271.7691,27.46474997,359.528696,0,0,0,0,0,0,2.79E-06,0,0,1.88E-04,0,0.150425568,7.68708673,60.36470275,3.871473305,15.67624811,0,1347.990682,0.007723273,0,0 +1805,0.009351564,0.221243678,0,0,2.215042398,0,0.024856862,0.010071225,0,0,0,0,0,104.98963,0,4270.588,27.9507982,364.3037043,0,0,0,0,0,0,2.82E-06,0,0,1.92E-04,0,0.153267447,7.835162209,61.31991146,3.843518327,16.0941548,0,1367.021932,0.007723273,0,0 +1806,0.009786482,0.225313924,0,0,2.222822585,0,0.024856862,0.010071225,0,0,0,0,0,104.98239,0,4270.2074,28.13437245,364.3432293,0,0,0,0,0,0,2.86E-06,0,0,1.96E-04,0,0.156163016,7.843541453,61.22344968,3.877012285,15.95144317,0,1370.297233,0.007723273,0,0 +1807,0.010470139,0.229459052,0,0,2.239871982,0,0.024856862,0.010071225,0,0,0,0,0,104.99423,0,4270.8298,28.45865603,367.2349328,0,0,0,0,0,0,2.90E-06,0,0,2.00E-04,0,0.159113289,7.906227329,61.70646914,3.906741383,16.11756408,0,1389.725529,0.007723273,0,0 +1808,0.009785087,0.233680437,0,0,2.311936484,0,0.024856862,0.010071225,0,0,0,0,0,104.95199,0,4268.6094,29.18524117,380.035272,0,0,0,0,0,0,2.93E-06,0,0,2.04E-04,0,0.162119299,8.095303457,64.08195973,4.070358273,16.7315469,0,1425.575123,0.007723273,0,0 +1809,0.009793704,0.237979484,0,0,2.26744264,0,0.024856862,0.010071225,0,0,0,0,0,104.979,0,4270.0292,29.12865813,372.8486855,0,0,0,0,0,0,2.97E-06,0,0,2.08E-04,0,0.1651821,8.062766978,62.71002213,3.940068496,16.44016599,0,1403.131587,0.007723273,0,0 +1810,0.010412685,0.242357621,0,0,2.279523716,0,0.024856862,0.010071225,0,0,0,0,0,104.93988,0,4267.9729,29.42453242,374.7180119,0,0,0,0,0,0,3.00E-06,0,0,2.12E-04,0,0.168302763,8.107079152,62.97351665,3.9615916,16.52538808,0,1414.194561,0.007723273,0,0 +1811,0.011014901,0.246816304,0,0,2.252530236,0,0.024856862,0.010071225,0,0,0,0,0,104.96903,0,4269.505,29.40578756,369.2694863,0,0,0,0,0,0,3.04E-06,0,0,2.17E-04,0,0.171482384,8.026948341,61.829606,3.9187457,16.18886557,0,1403.686743,0.007723273,0,0 +1812,0.011395912,0.251357013,0,0,2.228006935,0,0.024856862,0.010071225,0,0,0,0,0,104.99029,0,4270.6225,29.4202985,364.5806875,0,0,0,0,0,0,3.07E-06,0,0,2.21E-04,0,0.174722074,7.965169636,60.85746997,3.875988658,15.92905063,0,1394.884132,0.007723273,0,0 +1813,0.011449081,0.255981258,0,0,2.231996859,0,0.024856862,0.010071225,0,0,0,0,0,104.97005,0,4269.5589,29.77847603,365.9138874,0,0,0,0,0,0,3.11E-06,0,0,2.25E-04,0,0.178022969,8.032995952,61.1361302,3.844088557,16.06491504,0,1400.325553,0.007723273,0,0 +1814,0.011703716,0.260690576,0,0,2.291579691,0,0.024856862,0.010071225,0,0,0,0,0,104.93884,0,4267.9182,30.54785186,377.9855417,0,0,0,0,0,0,3.14E-06,0,0,2.29E-04,0,0.181386226,8.255365792,63.49192823,3.946873452,16.71992349,0,1449.11988,0.007723273,0,0 +1815,0.012094117,0.265486531,0,0,2.287324694,0,0.024856862,0.010071225,0,0,0,0,0,104.94955,0,4268.4808,30.64433954,375.5806648,0,0,0,0,0,0,3.18E-06,0,0,2.33E-04,0,0.184813022,8.178894558,62.8715757,3.977998266,16.48749688,0,1442.834604,0.007723273,0,0 +1816,0.013382563,0.270370719,0,0,2.261022,0,0.024856862,0.010071225,0,0,0,0,0,104.93504,0,4267.7184,30.79985622,371.6298228,0,0,0,0,0,0,3.22E-06,0,0,2.37E-04,0,0.188304559,8.188247477,62.14643252,3.866008445,16.39503385,0,1449.517631,0.007723273,0,0 +1817,0.013970106,0.275344761,0,0,2.296180569,0,0.024856862,0.010071225,0,0,0,0,0,104.95336,0,4268.6815,31.19839541,376.4429441,0,0,0,0,0,0,3.25E-06,0,0,2.41E-04,0,0.191862058,8.220825384,62.94153101,3.981202576,16.51722865,0,1472.005827,0.007723273,0,0 +1818,0.014054847,0.280410312,0,0,2.335490105,0,0.024856862,0.010071225,0,0,0,0,0,104.94012,0,4267.9855,31.68760832,383.9142096,0,0,0,0,0,0,3.29E-06,0,0,2.45E-04,0,0.195486767,8.306817108,64.26768049,4.109295846,16.84964888,0,1503.330753,0.007723273,0,0 +1819,0.01412101,0.285569054,0,0,2.304129482,0,0.024856862,0.010071225,0,0,0,0,0,104.92235,0,4267.0511,31.84544135,378.3325838,0,0,0,0,0,0,3.32E-06,0,0,2.49E-04,0,0.199179954,8.302878859,63.25758927,3.96351919,16.66519821,0,1480.397209,0.007723273,0,0 +1820,0.014336733,0.290822702,0,0,2.321048766,0,0.024856862,0.010071225,0,0,0,0,0,104.88909,0,4265.3029,32.33339467,382.4197483,0,0,0,0,0,0,3.36E-06,0,0,2.53E-04,0,0.202942914,8.416077975,64.0766433,3.958562233,16.96356441,0,1500.127423,0.007723273,0,0 +1821,0.014562069,0.296173002,0,0,2.333483777,0,0.024856862,0.010071225,0,0,0,0,0,104.93899,0,4267.9261,32.52138863,382.8975341,0,0,0,0,0,0,3.40E-06,0,0,2.57E-04,0,0.206776965,8.396299171,63.98744909,4.029731628,16.86010032,0,1506.00016,0.007723273,0,0 +1822,0.015133379,0.301621733,0,0,2.302515118,0,0.024856862,0.010071225,0,0,0,0,0,104.92104,0,4266.9822,32.73451052,378.6708004,0,0,0,0,0,0,3.43E-06,0,0,2.61E-04,0,0.21068345,8.447852069,63.22724653,3.871133523,16.79629808,0,1499.477254,0.007723273,0,0 +1823,0.016038149,0.307170704,0,0,2.282471765,0,0.024856862,0.010071225,0,0,0,0,0,104.94096,0,4268.0293,32.75571509,374.3931813,0,0,0,0,0,0,3.47E-06,0,0,2.65E-04,0,0.214663737,8.395261064,62.26076437,3.846052063,16.53271228,0,1499.604752,0.007723273,0,0 +1824,0.016501009,0.31282176,0,0,2.310947811,0,0.024856862,0.010071225,0,0,0,0,0,104.93425,0,4267.6765,33.0519787,377.0407114,0,0,0,0,0,0,3.50E-06,0,0,2.69E-04,0,0.218719221,8.395833943,62.5634338,3.956577313,16.47072526,0,1512.912552,0.007723273,0,0 +1825,0.017222663,0.318576779,0,0,2.322703112,0,0.024856862,0.010071225,0,0,0,0,0,104.91652,0,4266.7449,33.52533882,380.3167498,0,0,0,0,0,0,3.54E-06,0,0,2.73E-04,0,0.222851322,8.516236489,63.18578955,3.919068065,16.80867752,0,1538.203336,0.007723273,0,0 +1826,0.01738223,0.324437675,0,0,2.320968834,0,0.024856862,0.010071225,0,0,0,0,0,104.90841,0,4266.3186,33.7481029,378.8222655,0,0,0,0,0,0,3.57E-06,0,0,2.77E-04,0,0.227061488,8.523620414,62.81594151,3.911604483,16.62077908,0,1531.982813,0.007723273,0,0 +1827,0.018639877,0.330406393,0,0,2.346337782,0,0.024856862,0.010071225,0,0,0,0,0,104.91515,0,4266.6729,34.15505001,382.4773392,0,0,0,0,0,0,3.61E-06,0,0,2.81E-04,0,0.231351194,8.585850324,63.38999011,3.962793591,16.79991923,0,1566.092214,0.007723273,0,0 +1828,0.018824746,0.336484919,0,0,2.420774153,0,0.024856862,0.010071225,0,0,0,0,0,104.87222,0,4264.4159,34.99912851,395.9754325,0,0,0,0,0,0,3.64E-06,0,0,2.85E-04,0,0.235721941,8.801495947,65.90535949,4.116354977,17.4805645,0,1618.020723,0.007723273,0,0 +1829,0.018664196,0.342675273,0,0,2.379376332,0,0.024856862,0.010071225,0,0,0,0,0,104.90025,0,4265.8895,35.01640513,389.1746282,0,0,0,0,0,0,3.68E-06,0,0,2.89E-04,0,0.240175262,8.767229394,64.57289824,4.000350816,17.19408165,0,1597.238302,0.007723273,0,0 +1830,0.024933734,0.348979511,0,0,2.403159831,0,0.024856862,0.010071225,0,0,0,0,0,104.8667,0,4264.1256,35.40215534,392.1065329,0,0,0,0,0,0,3.72E-06,0,0,2.93E-04,0,0.244712716,8.818806446,64.94076179,4.03843029,17.31425157,0,1705.903254,0.007723273,0,0 +1831,0.023660178,0.355399729,0,0,2.361347125,0,0.024856862,0.010071225,0,0,0,0,0,104.89174,0,4265.442,35.37418705,384.2012507,0,0,0,0,0,0,3.75E-06,0,0,2.97E-04,0,0.249335894,8.731507392,63.33682174,3.947409453,16.87772867,0,1661.03313,0.007723273,0,0 +1832,0.023685925,0.36193806,0,0,2.353863299,0,0.024856862,0.010071225,0,0,0,0,0,104.90924,0,4266.362,35.56272349,382.363398,0,0,0,0,0,0,3.79E-06,0,0,3.01E-04,0,0.254046413,8.712430009,62.87089656,3.946175053,16.73898675,0,1660.610583,0.007723273,0,0 +1833,0.024226693,0.368596678,0,0,2.356959381,0,0.024856862,0.010070485,0,0,0,0,0,104.89175,0,4265.4426,35.98083111,383.4537928,0,0,0,0,0,0,3.82E-06,0,0,3.05E-04,0,0.258845925,8.790922957,63.0695837,3.905335594,16.86449692,0,1673.874936,0.007723273,0,0 +1834,0.024702586,0.375377795,0,0,2.412445466,0,0.024856862,0.010071964,0,0,0,0,0,104.854,0,4263.4584,36.76106097,394.1429023,0,0,0,0,0,0,3.86E-06,0,0,3.09E-04,0,0.26373611,9.001420472,65.10499264,3.989061294,17.45428534,0,1721.269347,0.007723273,0,0 +1835,0.025273638,0.382283665,0,0,2.405456375,0,0.024856862,0.010071225,0,0,0,0,0,104.8698,0,4264.2887,36.88278973,390.5551392,0,0,0,0,0,0,3.90E-06,0,0,3.13E-04,0,0.268718682,8.925548286,64.23544317,3.998558037,17.17048679,0,1718.222125,0.007723273,0,0 +1836,0.029221069,0.389316584,0,0,2.404187956,0,0.024856862,0.010071225,0,0,0,0,0,104.84901,0,4263.1961,37.24729235,389.9786644,0,0,0,0,0,0,3.93E-06,0,0,3.17E-04,0,0.273795386,8.993015086,64.08016333,3.917445996,17.23500429,0,1783.083419,0.007723273,0,0 +1837,0.029260399,0.396478888,0,0,2.440210174,0,0.024856862,0.010071225,0,0,0,0,0,104.86946,0,4264.2707,37.69980678,394.7565038,0,0,0,0,0,0,3.97E-06,0,0,3.21E-04,0,0.278968001,9.027059824,64.82242714,4.040217213,17.35383524,0,1798.088197,0.007723273,0,0 +1838,0.030288693,0.403772957,0,0,2.477311746,0,0.024856862,0.010071225,0,0,0,0,0,104.85548,0,4263.5362,38.24210962,401.296187,0,0,0,0,0,0,4.00E-06,0,0,3.25E-04,0,0.284238338,9.122535895,65.94724657,4.142172855,17.64153847,0,1841.543139,0.007723273,0,0 +1839,0.031310557,0.411201217,0,0,2.452638138,0,0.024856862,0.010071225,0,0,0,0,0,104.83788,0,4262.6108,38.51117556,396.9116369,0,0,0,0,0,0,4.04E-06,0,0,3.29E-04,0,0.289608243,9.139608329,65.11131218,4.015311872,17.50517633,0,1843.080824,0.007723273,0,0 +1840,0.033542974,0.418766135,0,0,2.443877522,0,0.024856862,0.010071225,0,0,0,0,0,104.80755,0,4261.0163,38.88776194,395.8809162,0,0,0,0,0,0,4.07E-06,0,0,3.33E-04,0,0.295079598,9.211326299,64.92298176,3.92426914,17.57513248,0,1874.141828,0.007723273,0,0 +1841,0.034601229,0.426470225,0,0,2.490489852,0,0.024856862,0.010071225,0,0,0,0,0,104.84789,0,4263.137,39.38162317,402.3727418,0,0,0,0,0,0,4.11E-06,0,0,3.37E-04,0,0.30065432,9.249453202,65.94544518,4.089445548,17.74554357,0,1916.264207,0.007723273,0,0 +1842,0.03663998,0.434316049,0,0,2.449170469,0,0.024856862,0.010070485,0,0,0,0,0,104.84034,0,4262.7403,39.61872888,396.9951221,0,0,0,0,0,0,4.14E-06,0,0,3.41E-04,0,0.30633436,9.261381852,64.92167359,3.936168061,17.59096172,0,1931.462508,0.007723273,0,0 +1843,0.037450386,0.442306214,0,0,2.411136271,0,0.024856862,0.010071964,0,0,0,0,0,104.85726,0,4263.6297,39.65326382,389.7367809,0,0,0,0,0,0,4.18E-06,0,0,3.45E-04,0,0.31212171,9.185852612,63.42406091,3.846066212,17.21821832,0,1929.660398,0.007723273,0,0 +1844,0.039846973,0.450443374,0,0,2.443825896,0,0.024856862,0.010071225,0,0,0,0,0,104.85117,0,4263.3094,40.04426499,392.7074417,0,0,0,0,0,0,4.22E-06,0,0,3.49E-04,0,0.318018395,9.178913526,63.7624543,3.965309781,17.1801219,0,1991.445647,0.007723273,0,0 +1845,0.043792129,0.458730235,0,0,2.471371875,0,0.024856862,0.010071225,0,0,0,0,0,104.83257,0,4262.3319,40.66967667,397.850056,0,0,0,0,0,0,4.25E-06,0,0,3.53E-04,0,0.324026483,9.307905911,64.68556723,3.957876345,17.5993633,0,2080.381092,0.007723273,0,0 +1846,0.044197374,0.46716955,0,0,2.471198742,0,0.024856862,0.010071225,0,0,0,0,0,104.82423,0,4261.8933,40.97519975,395.9082622,0,0,0,0,0,0,4.29E-06,0,0,3.57E-04,0,0.330148076,9.302498358,64.24405153,3.94954154,17.39887857,0,2072.290434,0.007723273,0,0 +1847,0.047464619,0.475764124,0,0,2.521115228,0,0.024856862,0.010071225,0,0,0,0,0,104.82758,0,4262.0693,41.61647168,402.9851575,0,0,0,0,0,0,4.32E-06,0,0,3.61E-04,0,0.336385321,9.401962019,65.44362075,4.0405661,17.76051419,0,2154.230603,0.007723273,0,0 +1848,0.047117807,0.484516814,0,0,2.5773718,1.49E-05,0.024856862,0.010070485,0,0,0,0,0,104.78829,0,4260.004,42.44947063,413.5582929,0,0,0,0,0,0,4.36E-06,0,0,3.65E-04,0,0.342740401,9.573238567,67.39824375,4.1550565,18.30069373,0,2204.416735,0.007723273,0,0 +1849,0.048851442,0.493430528,0,0,2.552394089,1.20E-04,0.024856862,0.010071964,0,0,0,0,0,104.81678,0,4261.5016,42.63396461,408.9399341,0,0,0,0,0,0,4.39E-06,0,0,3.69E-04,0,0.349215542,9.543358834,66.42707154,4.087020956,18.07478627,0,2224.89572,0.007723273,0,0 +1850,0.051384895,0.502508228,0,0,2.571124479,2.25E-04,0.024856862,0.010071225,0,0,0,0,0,104.93295,0,4267.6083,43.14236365,411.4628743,0,0,0,0,0,0,4.44E-06,0,0,3.74E-04,0,0.355813014,9.604162557,66.78304875,4.096904208,18.22682479,0,2275.776711,0.007723273,0,0 +1851,0.051562308,0.494656367,0,0,2.526692589,2.41E-04,0.024856862,0.010071225,0,0,0,0,0,104.96457,0,4269.2706,43.15191371,402.2448153,0,0,0,0,0,0,4.48E-06,0,0,3.78E-04,0,0.363793441,9.478471328,64.95004659,4.010397678,17.72630049,0,2256.815147,0.007723273,0,0 +1852,0.05364238,0.550685869,0,0,2.50763416,2.42E-04,0.024856862,0.010071225,0,0,0,0,0,104.98199,0,4270.1861,43.34412933,397.49852,0,0,0,0,0,0,4.51E-06,0,0,3.83E-04,0,0.372424224,9.424520247,63.95789986,3.958451611,17.47926155,0,2277.634405,0.007723273,0,0 +1853,0.055952349,0.548631086,0,0,2.527811743,2.43E-04,0.024856862,0.010071225,0,0,0,0,0,104.9693,0,4269.5191,43.88435963,400.3388041,0,0,0,0,0,0,4.55E-06,0,0,3.87E-04,0,0.380109709,9.493187126,64.44555418,3.968326235,17.65848988,0,2326.420616,0.007723273,0,0 +1854,0.065895655,0.546739774,0,0,2.610048543,2.44E-04,0.024856862,0.010071225,0,0,0,0,0,104.9226,0,4267.0641,44.80907906,413.3991315,0,0,0,0,0,0,4.58E-06,0,0,3.90E-04,0,0.388118038,9.708926054,66.79469522,4.086374133,18.34043133,0,2535.158195,0.007723273,0,0 +1855,0.066560595,0.543758287,0,0,2.593264313,2.45E-04,0.024856862,0.010070485,0,0,0,0,0,104.95064,0,4268.5385,44.9570539,408.1104539,0,0,0,0,0,0,4.62E-06,0,0,3.95E-04,0,0.395154931,9.60821845,65.65156398,4.071657216,17.9916486,0,2531.882071,0.007723273,0,0 +1856,0.071195717,0.549725266,0,0,2.573430007,2.47E-04,0.024856862,0.010071964,0,0,0,0,0,104.92886,0,4267.3934,45.32147323,404.8549167,0,0,0,0,0,0,4.65E-06,0,0,3.98E-04,0,0.401213616,9.648967408,65.0425347,3.941501863,17.95411805,0,2598.32335,0.007723273,0,0 +1857,0.071893947,0.555060913,0,0,2.636452577,2.49E-04,0.024856862,0.010071225,0,0,0,0,0,104.94976,0,4268.4922,46.01300694,414.6731918,0,0,0,0,0,0,4.69E-06,0,0,4.03E-04,0,0.40752619,9.717987449,66.72779877,4.159141007,18.29156565,0,2646.996287,0.007723273,0,0 +1858,0.07302816,0.55973691,0,0,2.660122642,2.51E-04,0.024856862,0.010071225,0,0,0,0,0,104.93987,0,4267.9722,46.54057729,419.0140236,0,0,0,0,0,0,4.73E-06,0,0,4.07E-04,0,0.412517456,9.773872717,67.47060376,4.240872485,18.4792763,0,2684.853418,0.007723273,0,0 +1859,0.077852113,0.567385369,0,0,2.64820325,2.53E-04,0.024856862,0.010071225,0,0,0,0,0,104.91443,0,4266.635,46.94962615,416.2997485,0,0,0,0,0,0,4.76E-06,0,0,4.10E-04,0,0.416997408,9.815633788,66.95694734,4.119710729,18.44950598,0,2765.351504,0.007723273,0,0 +1860,0.08580579,0.57190571,0,0,2.648404731,2.55E-04,0.024856862,0.010810676,0,0,0,0,0,104.89112,0,4265.4096,47.37614023,416.0639966,0,0,0,0,0,0,4.79E-06,0,0,4.14E-04,0,0.420752578,9.868462594,66.84953493,4.060976263,18.520468,0,2898.377784,0.007723273,0,0 +1861,0.090437572,0.583095346,0,0,2.670268663,2.57E-04,0.024856862,0.010810691,0,0,0,0,0,104.94268,0,4268.1198,48.2346867,417.2441372,0,0,0,0,0,0,4.83E-06,0,0,4.19E-04,0,0.42335986,9.857135646,66.88575551,4.161212988,18.43711983,0,2971.278843,0.007723273,0,0 +1862,0.091865591,0.522956563,0,0,2.648564983,2.60E-04,0.024856862,0.010071254,0,0,0,0,0,104.93302,0,4267.612,49.13056212,414.1628066,0,0,0,0,0,0,4.87E-06,0,0,4.23E-04,0,0.425968395,9.918881972,66.35896016,4.042449359,18.41589321,0,2976.388043,0.007723273,0,0 +1863,0.097488554,0.523134297,0,0,2.629269514,2.62E-04,0.024856862,0.010071254,0,0,0,0,0,104.9509,0,4268.552,49.71022253,408.1224194,0,0,0,0,0,0,4.91E-06,0,0,4.27E-04,0,0.428432683,9.868665854,65.0096354,3.971519356,18.09141101,0,3064.446907,0.007723273,0,0 +1864,0.104725139,0.523481383,0,0,2.667755634,2.65E-04,0.024856862,0.010071254,0,0,0,0,0,104.94467,0,4268.2247,50.66032473,411.3310643,0,0,0,0,0,0,4.94E-06,0,0,4.31E-04,0,0.431014196,9.887134077,65.39906664,4.087458726,18.0938173,0,3193.218259,0.007723273,0,0 +1865,0.110936319,0.524250384,0,0,2.720201066,2.68E-04,0.024856862,0.010810706,0,0,0,0,0,104.93017,0,4267.4623,51.9800751,420.489005,0,0,0,0,0,0,4.98E-06,0,0,4.35E-04,0,0.433438772,10.07353478,67.10347351,4.157661467,18.66656838,0,3327.080176,0.007723273,0,0 +1866,0.114738508,0.524386363,0,0,2.710298337,2.71E-04,0.024856862,0.01081072,0,0,0,0,0,104.92398,0,4267.1368,52.74699293,417.1011849,0,0,0,0,0,0,5.01E-06,0,0,4.39E-04,0,0.435744776,10.06454912,66.37528156,4.133671178,18.39468019,0,3388.258078,0.007723273,0,0 +1867,0.12258204,0.522876455,0,0,2.761022671,2.74E-04,0.024856862,0.010070544,0,0,0,0,0,104.93094,0,4267.5026,53.94102178,424.2969753,0,0,0,0,0,0,5.05E-06,0,0,4.43E-04,0,0.438210649,10.1891331,67.66026449,4.231180961,18.76835617,0,3565.435535,0.007723273,0,0 +1868,0.125609442,0.521415398,0,0,2.825140562,2.77E-04,0.024856862,0.010072023,0,0,0,0,0,104.89186,0,4265.4483,55.28767356,434.9302283,0,0,0,0,0,0,5.08E-06,0,0,4.47E-04,0,0.441434256,10.37220092,69.64729381,4.363304735,19.30124757,0,3668.308732,0.007723273,0,0 +1869,0.133291522,0.519770898,0,0,2.785004317,2.81E-04,0.024856862,0.010810735,0,0,0,0,0,104.93014,0,4267.4609,55.83359728,426.4036167,0,0,0,0,0,0,5.12E-06,0,0,4.51E-04,0,0.443908266,10.31106127,67.92949559,4.245329954,18.88882504,0,3791.462745,0.007723273,0,0 +1870,0.136674384,0.51867186,0,0,2.831200782,2.84E-04,0.024856862,0.01081075,0,0,0,0,0,104.89317,0,4265.5174,56.99659231,433.2287624,0,0,0,0,0,0,5.15E-06,0,0,4.55E-04,0,0.446639961,10.44102397,69.12187694,4.32346865,19.25812075,0,3887.529335,0.007723273,0,0 +1871,0.145249161,0.538815215,0,0,2.797830347,2.88E-04,0.024856862,0.010071314,0,0,0,0,0,104.92871,0,4267.3856,57.57401422,425.1606513,0,0,0,0,0,0,5.19E-06,0,0,4.59E-04,0,0.454335934,10.3694977,67.42862358,4.269404037,18.76177377,0,4016.032279,0.007723273,0,0 +1872,0.160346513,0.624237802,0,0,2.771292694,2.92E-04,0.024856862,0.010810765,0,0,0,0,0,104.95075,0,4268.5441,58.18710545,417.7442734,0,0,0,0,0,0,5.23E-06,0,0,4.63E-04,0,0.470862622,10.33038424,65.84553711,4.178709817,18.36534165,0,4250.256916,0.007723273,0,0 +1873,0.170095482,0.635197776,0,0,2.841633848,2.96E-04,0.024856862,0.01081078,0,0,0,0,0,104.93223,0,4267.5705,59.62016165,429.280289,0,0,0,0,0,0,5.26E-06,0,0,4.67E-04,0,0.49389425,10.56453512,67.99437045,4.309987324,18.9372989,0,4473.449628,0.007723273,0,0 +1874,0.161012643,0.642458922,0,0,2.86805891,3.00E-04,0.024856862,0.010810794,0,0,0,0,0,104.88493,0,4265.0843,60.88850035,435.80418,0,0,0,0,0,0,5.30E-06,0,0,4.71E-04,0,0.521735812,10.75161101,69.34908007,4.369596918,19.30481072,0,4382.176552,0.007723273,0,0 +1875,0.173259068,0.650321509,0,0,2.833489105,3.05E-04,0.024856862,0.010810809,0,0,0,0,0,104.93101,0,4267.5065,61.4471703,426.8934955,0,0,0,0,0,0,5.33E-06,0,0,4.75E-04,0,0.552163614,10.66354523,67.4820886,4.311546236,18.75387609,0,4552.510356,0.007723273,0,0 +1876,0.175938232,0.65804039,0,0,2.843125267,3.09E-04,0.024856862,0.010810824,0,0,0,0,0,104.90175,0,4265.968,62.60294811,429.4805477,0,0,0,0,0,0,5.37E-06,0,0,4.79E-04,0,0.58288316,10.83189303,68.07266489,4.273649915,19.00214066,0,4640.322706,0.007723273,0,0 +1877,0.179825348,0.664694086,0,0,2.881579173,3.14E-04,0.024856862,0.010810839,0,0,0,0,0,104.92824,0,4267.3608,63.64524259,434.060346,0,0,0,0,0,0,5.41E-06,0,0,4.83E-04,0,0.612226706,10.8970216,68.77838073,4.413505724,19.0890591,0,4762.604755,0.007723273,0,0 +1878,0.180776983,0.671585762,0,0,2.905036494,3.19E-04,0.024856862,0.010810853,0,0,0,0,0,104.92472,0,4267.1759,64.71120383,437.9599498,0,0,0,0,0,0,5.44E-06,0,0,4.87E-04,0,0.637718424,10.99894534,69.46979574,4.503130841,19.22817131,0,4806.316495,0.007723273,0,0 +1879,0.193175438,0.678615294,0,0,2.92925864,3.23E-04,0.024856862,0.010810868,0,0,0,0,0,104.88028,0,4264.8396,65.90279841,440.8517591,0,0,0,0,0,0,5.47E-06,0,0,4.91E-04,0,0.658926777,11.18150569,70.08572002,4.447158396,19.48731539,0,5054.634873,0.007723273,0,0 +1880,0.219340005,0.684857424,0,0,2.921172062,3.29E-04,0.024856862,0.010810144,0,0,0,0,0,104.88174,0,4264.9162,66.6649843,437.3657275,0,0,0,0,0,0,5.51E-06,0,0,4.95E-04,0,0.672777776,11.21057035,69.18788119,4.386751757,19.32682128,0,5476.691841,0.007723273,0,0 +1881,0.22522318,0.722626203,0,0,2.962877226,3.34E-04,0.024856862,0.011551088,0,0,0,0,0,104.92914,0,4267.4079,67.70670095,440.9737248,0,0,0,0,0,0,5.55E-06,0,0,4.99E-04,0,0.680636704,11.27474846,69.70896889,4.531822011,19.32716624,0,5655.562653,0.007723273,0,0 +1882,0.236948997,0.674378608,0,0,2.944345851,3.39E-04,0.024856862,0.011550379,0,0,0,0,0,104.92759,0,4267.3266,68.57787524,436.0786301,0,0,0,0,0,0,5.59E-06,0,0,5.04E-04,0,0.689255681,11.34322096,68.75016749,4.409841205,19.15816229,0,5878.580768,0.007723273,0,0 +1883,0.250894677,0.681454028,0,0,2.918084088,3.45E-04,0.024856862,0.010810957,0,0,0,0,0,104.95902,0,4268.979,69.1859791,428.2212034,0,0,0,0,0,0,5.62E-06,0,0,5.08E-04,0,0.695872552,11.30107278,67.06254476,4.344707595,18.70936137,0,6136.750815,0.007723273,0,0 +1884,0.252849902,0.684683542,0,0,2.97815874,3.50E-04,0.024856862,0.010810972,0,0,0,0,0,104.93535,0,4267.7345,70.48060515,436.5183492,0,0,0,0,0,0,5.66E-06,0,0,5.12E-04,0,0.70169045,11.46377857,68.59402326,4.507763748,19.00988998,0,6243.347605,0.007723273,0,0 +1885,0.254442991,0.690863781,0,0,2.987658653,3.56E-04,0.024856862,0.011550438,0,0,0,0,0,104.93798,0,4267.8727,71.60546241,438.1415385,0,0,0,0,0,0,5.69E-06,0,0,5.16E-04,0,0.707890871,11.60315357,68.94977818,4.492846371,19.20686906,0,6294.938313,0.007723273,0,0 +1886,0.258326127,0.691934912,0,0,3.000148376,3.62E-04,0.024856862,0.011550467,0,0,0,0,0,104.9357,0,4267.7531,72.58254388,437.7333269,0,0,0,0,0,0,5.73E-06,0,0,5.20E-04,0,0.712632779,11.67579747,68.86926284,4.534738954,19.06781958,0,6353.027294,0.007723273,0,0 +1887,0.270973326,0.691885463,0,0,3.044590075,3.68E-04,0.024856862,0.011550497,0,0,0,0,0,104.94903,0,4268.4538,73.77743063,443.1077381,0,0,0,0,0,0,5.77E-06,0,0,5.24E-04,0,0.71821666,11.82565523,69.79403942,4.618994874,19.32845364,0,6605.766965,0.007723273,0,0 +1888,0.299024069,0.691539784,0,0,3.123484052,3.74E-04,0.024856862,0.011550526,0,0,0,0,0,104.91459,0,4266.6433,75.11035553,452.502308,0,0,0,0,0,0,5.80E-06,0,0,5.28E-04,0,0.724224235,12.04162329,71.42723744,4.741896917,19.78574643,0,7182.264809,0.007723273,0,0 +1889,0.29939589,0.691049208,0,0,3.104668338,3.81E-04,0.024856862,0.011550556,0,0,0,0,0,104.95877,0,4268.9657,75.92960019,448.6908696,0,0,0,0,0,0,5.84E-06,0,0,5.32E-04,0,0.730764112,12.07532791,70.65718772,4.727164288,19.55277705,0,7178.592239,0.007723273,0,0 +1890,0.32528597,0.68776294,0,0,3.159194949,3.87E-04,0.024856862,0.011550586,0,0,0,0,0,104.9317,0,4267.5425,77.07862319,453.8990323,0,0,0,0,0,0,5.87E-06,0,0,5.36E-04,0,0.755661554,12.22188071,71.47659717,4.807916688,19.77806486,0,7728.431301,0.007723273,0,0 +1891,0.340453909,0.684411407,0,0,3.125180696,3.94E-04,0.024856862,0.011550615,0,0,0,0,0,104.97344,0,4269.7366,77.68229292,444.3827318,0,0,0,0,0,0,5.91E-06,0,0,5.40E-04,0,0.766996007,12.1596402,69.53172191,4.743306066,19.19967303,0,8025.900173,0.007723273,0,0 +1892,0.342946092,0.69893132,0,0,3.110528365,4.01E-04,0.024856862,0.011550645,0,0,0,0,0,104.99082,0,4270.6504,78.54558089,439.808659,0,0,0,0,0,0,5.95E-06,0,0,5.45E-04,0,0.778272468,12.19914652,68.66391959,4.695682305,18.94952176,0,8166.143155,0.007723273,0,0 +1893,0.33787039,0.699713125,0,0,3.125430895,4.08E-04,0.024856862,0.012290126,0,0,0,0,0,104.97994,0,4270.0783,79.81501329,443.3506558,0,0,0,0,0,0,5.99E-06,0,0,5.49E-04,0,0.789729823,12.37945386,69.48705802,4.715239733,19.1784562,0,8120.644735,0.007723273,0,0 +1894,0.351124504,0.715581396,0,0,3.205110618,4.15E-04,0.024856862,0.01229017,0,0,0,0,0,104.93101,0,4267.5063,81.38345626,456.6960325,0,0,0,0,0,0,6.02E-06,0,0,5.52E-04,0,0.802004637,12.66238559,71.90804381,4.888948538,19.83612848,0,8411.388473,0.007723273,0,0 +1895,0.371712037,0.720945096,0,0,3.216163845,4.22E-04,0.024856862,0.011550763,0,0,0,0,0,104.96751,0,4269.4251,82.23116014,453.551885,0,0,0,0,0,0,6.06E-06,0,0,5.57E-04,0,0.812887633,12.67244423,71.15178658,4.919171254,19.52250048,0,8846.66701,0.007723273,0,0 +1896,0.383674818,0.723440788,0,0,3.170768747,4.30E-04,0.024856862,0.012290244,0,0,0,0,0,104.96751,0,4269.4252,83.00005426,444.0944278,0,0,0,0,0,0,6.09E-06,0,0,5.61E-04,0,0.824102858,12.72059369,69.42267706,4.733994615,19.17728772,0,9089.598433,0.007723273,0,0 +1897,0.401981164,0.725878271,0,0,3.268702112,4.37E-04,0.024856862,0.012290288,0,0,0,0,0,104.99693,0,4270.9718,84.39253635,456.4122055,0,0,0,0,0,0,6.13E-06,0,0,5.65E-04,0,0.834637127,12.8902171,71.5467325,5.026760132,19.58218288,0,9520.393854,0.007723273,0,0 +1898,0.42330421,0.72837657,0,0,3.296870259,4.45E-04,0.02485618,0.012290333,0,0,0,0,0,105.01512,0,4271.9281,85.36127162,456.6037674,0,0,0,0,0,0,6.17E-06,0,0,5.69E-04,0,0.844305316,12.95906823,71.45665952,5.098029535,19.50168111,0,10010.09583,0.007723236,0,0 +1899,0.463317192,0.728556158,0,0,3.355831345,4.86E-04,0.024857703,0.012290377,0,0,0,0,0,104.97653,0,4269.8993,86.70543387,462.1035994,0,0,0,0,0,0,6.20E-06,0,0,5.73E-04,0,0.853783366,13.20706844,72.46072256,5.094979384,19.86870993,0,10838.11345,0.007723233,0,0 +1900,0.488155862,0.73057236,0,0,3.361821037,0.002392668,0.024856437,0.028558348,0,0,0,0,0,104.98481,0,4270.3344,87.61328845,459.5444669,0,0,0,0,0,0,6.24E-06,0,0,5.77E-04,0,0.863169654,13.27666955,71.90656631,5.089168388,19.75078793,0,11348.7275,0.007723268,0,0 +1901,0.504485719,0.796906313,0,0,3.382952935,0.004820097,0.024857442,0.047784449,0,0,0,0,0,105.04131,0,4273.3046,88.39116711,457.6168305,0,0,0,0,0,0,6.28E-06,0,0,5.82E-04,0,0.871405959,13.3014099,71.63263161,5.202144138,19.48762217,0,11775.2552,0.007723268,0,0 +1902,0.519345117,0.800278636,0,0,3.38154147,0.005778122,0.024856062,0.050743008,0,0,0,0,0,105.04898,0,4273.708,89.26282464,455.0261768,0,0,0,0,0,0,6.32E-06,0,0,5.86E-04,0,0.881215447,13.41248803,71.24149846,5.179688037,19.3580615,0,12100.54877,0.007723268,0,0 +1903,0.566454621,0.829571146,0,0,3.389386332,0.006957613,0.024857979,0.05591998,0,0,0,0,0,105.09555,0,4276.1561,89.89074057,449.9625304,0,0,0,0,0,0,6.36E-06,0,0,5.90E-04,0,0.890660734,13.43752052,70.25376393,5.190103458,19.03059788,0,13044.15816,0.007723268,0,0 +1904,0.575152133,0.856100074,0,0,3.4640583,0.009436339,0.024855289,0.068491568,0,0,0,0,0,105.07939,0,4275.3063,91.35674943,462.621765,0,0,0,0,0,0,6.39E-06,0,0,5.94E-04,0,0.900998672,13.7314717,72.88437625,5.400226563,19.65611973,0,13274.43719,0.007723268,0,0 +1905,0.612296247,0.883090418,0,0,3.525334738,0.013412831,0.024859105,0.087718467,0,0,0,0,0,105.08907,0,4275.8152,92.40132432,467.4401288,0,0,0,0,0,0,6.43E-06,0,0,5.99E-04,0,0.911796751,13.85510547,73.70973522,5.570897784,19.75296716,0,14100.97838,0.007723268,0,0 +1906,0.644276357,0.913945895,0,0,3.54932448,0.018196454,0.024853655,0.11138246,0,0,0,0,0,105.10645,0,4276.7286,93.24998316,466.4356479,0,0,0,0,0,0,6.47E-06,0,0,6.03E-04,0,0.922864309,13.95964537,73.46173851,5.607842107,19.60693136,0,14766.45012,0.007723268,0,0 +1907,0.726915977,0.922997028,0,0,3.674457368,0.016966195,0.025812945,0.10398923,0,0,0,0,0,105.14627,0,4278.822,94.56080194,480.3174564,0,0,0,0,0,0,6.51E-06,0,0,6.07E-04,0,0.933557019,14.21677499,76.00444514,5.92575152,20.14449075,0,16264.98721,0.007723268,0,0 +1908,0.703232591,0.932378464,0,0,3.67587664,0.021404879,0.029231937,0.12765503,0,0,0,0,0,105.12414,0,4277.6586,95.71237193,482.582634,0,0,0,0,0,0,6.54E-06,0,0,6.11E-04,0,0.943978146,14.40742286,76.856238,5.975251674,20.34218955,0,15590.71312,0.007723268,0,0 +1909,0.7293531,0.939463987,0,0,3.690048662,0.036714367,0.765086,0.21121463,0,0,0,0,0,105.16533,0,4279.824,96.4666946,480.6894688,0,0,0,0,0,0,6.58E-06,0,0,6.16E-04,0,0.954146693,14.46573428,76.4408771,6.041715332,20.10967131,0,16371.00547,0.007723268,0,0 +1910,0.765726395,0.945592087,0,0,3.767608107,0.042342327,1.0366888,0.24301505,0,0,0,0,0,105.14442,0,4278.7248,97.77187103,491.4713622,0,0,0,0,0,0,6.62E-06,0,0,6.20E-04,0,0.964867509,14.73060447,78.48124343,6.225241543,20.6023284,0,17123.07052,0.007723268,0,0 +1911,0.781014654,0.887403675,0,0,3.725917532,0.047217079,0.55672031,0.27037941,0,0,0,0,0,105.20214,0,4281.7592,98.42938116,482.3736484,0,0,0,0,0,0,6.66E-06,0,0,6.24E-04,0,0.976172007,14.67937454,76.73370569,6.205453711,20.00760743,0,17244.18549,0.007723268,0,0 +1912,0.819966191,0.85083987,0,0,3.709100468,0.055977137,1.3372385,0.31844894,0,0,0,0,0,105.23472,0,4283.4718,99.26614632,477.9889215,0,0,0,0,0,0,6.70E-06,0,0,6.29E-04,0,0.99242033,14.7136648,75.83160819,6.219463911,19.68089243,0,17989.19691,0.007723268,0,0 +1913,0.88953397,0.82034848,0,0,3.787939036,0.05934571,2.7874772,0.33694139,0,0,0,0,0,105.25437,0,4284.5046,100.6125584,488.2676035,0,0,0,0,0,0,6.74E-06,0,0,6.33E-04,0,1.011440097,14.92180765,77.5799616,6.45387962,20.00732869,0,19072.75319,0.007723268,0,0 +1914,0.811491369,0.809204505,0,0,3.764418792,0.064801984,4.5655912,0.36726542,0,0,0,0,0,105.19867,0,4281.5767,102.2840587,494.4978826,0,0,0,0,0,0,6.77E-06,0,0,6.36E-04,0,1.032129514,15.24149746,79.77807343,6.499176733,20.59248109,0,17594.43406,0.007723268,0,0 +1915,0.802991659,0.797401958,0,0,3.722337783,0.084000629,6.2098372,0.47153519,0,0,0,0,0,105.2716,0,4285.4105,103.0579197,484.2476849,0,0,0,0,0,0,6.81E-06,0,0,6.41E-04,0,1.054619583,15.23213103,78.35040062,6.482772073,20.06142458,0,17573.11604,0.007723268,0,0 +1916,0.86533079,0.799710226,0,0,3.744207069,0.10465075,5.9968917,0.58467971,0,0,0,0,0,105.29863,0,4286.831,104.0889435,482.954266,0,0,0,0,0,0,6.85E-06,0,0,6.46E-04,0,1.077791382,15.34284718,78.27985155,6.601680858,19.90829861,0,19065.48428,0.007723268,0,0 +1917,0.896621585,0.802745574,0,0,3.826396856,0.11034348,5.1585271,0.61870744,0,0,0,0,0,105.37275,0,4290.7275,105.4397415,492.9600448,0,0,0,0,0,0,6.89E-06,0,0,6.51E-04,0,1.100255613,15.500365,80.45481807,7.003710361,20.17756104,0,19906.99893,0.007723268,0,0 +1918,0.887395559,0.80603585,0,0,3.83059738,0.10461425,4.2721672,0.58914082,0,0,0,0,0,105.37311,0,4290.7462,106.7459316,496.2420731,0,0,0,0,0,0,6.93E-06,0,0,6.55E-04,0,1.121226709,15.70439103,81.61294814,7.118191256,20.36895158,0,19743.24497,0.007723268,0,0 +1919,0.780860402,0.811159148,0,0,3.722641135,0.10155164,3.196035,0.57214502,0,0,0,0,0,105.33647,0,4288.8202,108.095107,490.9794171,0,0,0,0,0,0,6.96E-06,0,0,6.59E-04,0,1.140233478,15.91565271,81.67724386,6.926922673,20.36863821,0,16994.78687,0.007723268,0,0 +1920,0.903060101,0.813518455,0,0,3.813010121,0.071874804,4.0059497,0.41169313,0,0,0,0,0,105.40157,0,4292.2427,109.1336385,498.8745999,0,0,0,0,0,0,7.01E-06,0,0,6.64E-04,0,1.157633765,16.03665614,82.96992111,7.318815146,20.4023951,0,18802.69892,0.007723268,0,0 +1921,0.793835864,0.861299333,0,0,3.661222702,0.05599481,6.3575755,0.32444592,0,0,0,0,0,105.42979,0,4293.7261,109.809348,486.6136242,0,0,0,0,0,0,7.05E-06,0,0,6.68E-04,0,1.173417685,16.0101613,81.18725519,7.146950074,19.84610877,0,16049.70593,0.007723268,0,0 +1922,0.843896663,0.853369204,0,0,3.658333723,0.10093674,7.5196689,0.56921203,0,0,0,0,0,105.47367,0,4296.0327,110.4858104,484.8273418,0,0,0,0,0,0,7.09E-06,0,0,6.73E-04,0,1.188779372,16.07300912,80.53069431,7.252038815,19.4742784,0,16950.896,0.007723268,0,0 +1923,0.959559001,0.86148441,0,0,3.88124621,0.13753371,8.1995609,0.77479139,0,0,0,0,0,105.54539,0,4299.8026,112.2535641,514.2343951,0,0,0,0,0,0,7.13E-06,0,0,6.78E-04,0,1.205120978,16.4693053,86.27583424,8.013836332,20.41782521,0,19723.67202,0.007723268,0,0 +1924,0.970359441,0.867663331,0,0,3.774809016,0.14595489,10.064032,0.82730698,0,0,0,0,0,105.55899,0,4300.5175,112.633506,499.0974144,0,0,0,0,0,0,7.17E-06,0,0,6.82E-04,0,1.222219042,16.41564777,83.21123114,7.790296572,19.77882376,0,19521.89407,0.007723268,0,0 +1925,0.983699121,0.870847171,0,0,3.790606982,0.15281139,9.887985,0.86947278,0,0,0,0,0,105.60265,0,4302.8128,113.6704269,502.6957688,0,0,0,0,0,0,7.21E-06,0,0,6.87E-04,0,1.237791101,16.84168156,84.06174423,7.983263812,19.75345484,0,19738.88984,0.007723268,0,0 +1926,0.971193664,0.875288161,0,0,3.724383638,0.16877181,10.020584,0.96266008,0,0,0,0,0,105.65209,0,4305.4116,114.5456303,499.0418204,0,0,0,0,0,0,7.25E-06,0,0,6.92E-04,0,1.252612106,17.14732508,84.16877083,8.057166102,19.57302011,0,19808.91323,0.007723268,0,0 +1927,1.071982298,0.914815243,0,0,3.850357382,0.19366311,13.691728,1.1076116,0,0,0,0,0,105.65063,0,4305.3352,115.74748,515.0910884,0,0,0,0,0,0,7.29E-06,0.004945027,0,6.96E-04,0,1.266765284,17.43232174,86.52753525,8.499773807,19.87550986,0,21139.78229,0.007723268,0,0 +1928,1.076174298,0.918261907,0,0,3.828134932,0.2132805,16.914307,1.2252077,0.020814729,0,0,0,0,105.59392,0,4302.3537,116.7958666,515.8400889,0,0,0,0,0,0,7.32E-06,0.030139896,0,6.99E-04,0,1.279785085,17.62700285,87.11586337,8.569023695,19.91593076,0,21065.04746,0.007723269,0,0 +1929,1.156951387,0.945536477,0,0,3.890215994,0.20802541,19.38339,1.2037865,0.33502494,0,0,0,0,105.60372,0,4297.9849,118.0199977,527.0535755,0,0,0,0,0,0,7.35E-06,0.003329301,0,7.02E-04,0,1.290827582,17.86727278,89.37670247,8.894481948,20.27497394,0,22402.21952,0.007723266,0,0 +1930,1.072886478,1.022800884,0,0,3.907622806,0.17035764,20.571834,0.99750344,1.1701026,0,0,0,0,105.91829,0,4287.8382,119.6701788,535.0349028,0,0,0,0,0,0,7.36E-06,-0.026051043,0,7.03E-04,0,1.300370355,18.10997615,91.59573863,8.841770878,20.95238859,0,20792.33986,0.007723273,0,0 +1931,0.968671726,1.033130291,0,0,3.699193086,0.11326202,21.232329,0.6766021,1.6600329,0,0,0,0,106.6887,0,4282.6938,119.9075078,504.8981345,0,0,0,0,0,0,7.38E-06,-0.003829208,0,7.06E-04,0,1.307318192,17.9582942,86.48531867,8.206316153,19.78298346,0,18348.146,0.007723259,0,0 +1932,0.880274393,0.934985061,0,0,3.701120519,0.085847633,23.837144,0.51911084,1.6167368,0,0,0,0,107.41813,0,4276.7559,121.4219873,510.1823315,0,0,0.005764349,0,0,0,7.40E-06,7.43E-04,0,7.08E-04,0,1.314106352,18.10001304,87.90725373,8.142484302,20.16181555,0,16151.1052,0.007723289,0,0 +1933,0.923452608,0.931801343,0,0,3.673991696,0.1016274,28.120028,0.61081444,1.6336582,0,0,0,0,108.09758,0,4271.2585,122.3437659,508.1160121,0,0,0.14482802,0,0,0,7.43E-06,8.08E-04,0,7.11E-04,0,1.319777787,18.14058312,87.73926442,8.102332977,20.01961331,0,16995.04081,0.007723222,0,0 +1934,1.000687974,0.920029755,0,0,3.817622407,0.15202423,34.519287,0.91252255,1.6505883,0,0,0,0,108.91202,0,4272.3774,123.9532999,528.033166,0,0,0.60639434,0,0,0,7.47E-06,8.78E-04,0,7.15E-04,0,1.326062979,18.32411359,91.49703968,8.603675585,20.70261784,0,18679.91277,0.007723374,0,0 +1935,1.050596869,0.918684315,0,0,3.826763235,0.22028466,40.132859,1.3303298,1.6675173,0,0,0,0,109.70014,0,4272.1486,124.8946044,529.4409406,0,0,0.97427321,0,0,0,7.50E-06,9.54E-04,0,7.19E-04,0,1.33245233,18.31731965,91.90214074,8.779424673,20.54319704,0,20077.94332,0.007723023,0,0 +1936,1.150366722,0.927069389,0,0,3.972008023,0.28820401,42.33712,1.7570203,1.6844464,0,0,0,0,110.56758,0,4275.9063,126.4647048,550.0398549,0,0,1.0455299,0,0,0,7.55E-06,0.001037276,0,7.24E-04,0,1.338689989,18.65286964,95.83484543,9.362043925,21.16418654,0,21597.57179,0.007723846,0,0 +1937,1.231103105,0.904516492,0,0,3.977215074,0.34372195,44.188471,2.1186454,1.7013755,0.006390022,0,0,0,111.3625,0,4275.9946,127.1823371,550.6109419,0,0,1.1131878,0,0,0,7.58E-06,0.001127477,0,7.28E-04,0,1.346525353,18.735883,95.84567433,9.575630542,20.85060471,0,23231.71203,0.00772185,0,0 +1938,1.161421971,0.907321542,0,0,3.879546431,0.39883954,49.06474,2.4891541,1.7183047,0.1328808,0,0,0,112.0603,0,4271.2734,127.905393,535.4268485,0,0,1.185033,0,0,0,7.61E-06,0.001225424,0,7.31E-04,0,1.355126677,18.72062801,93.23706062,9.133612085,20.283818,0,21542.97587,0.007728553,0,0 +1939,1.232613704,0.905880028,0,0,4.010820601,0.43390074,56.683054,2.745053,1.7352338,0.68779311,0,0,0,112.8293,0,4270.1197,129.5013568,554.5379171,0,0,1.2571398,0,0,0,7.64E-06,0.001332062,0,7.35E-04,0,1.366829172,18.98792969,97.34535423,9.632984019,21.02085333,0,23010.26881,0.11813875,0,0 +1940,1.332494478,0.893463629,0,0,4.026253626,0.50172554,67.980741,3.2190952,1.7521629,1.4928916,0,0,0,113.75015,0,4276.3916,130.1349943,550.4654056,0,0,1.3304594,0,0,0,7.69E-06,0.001448183,0,7.41E-04,0,1.379589207,18.93380648,96.49612887,9.961368881,20.56627575,0,25159.07412,0.21814961,0,0 +1941,1.35733239,0.876081403,0,0,4.050294267,0.64957282,81.740279,4.2240743,1.769092,2.2339929,0,0,0,114.54353,0,4282.9257,132.2180939,552.9500651,0,0,1.4028748,0,0,0,7.73E-06,0.00157415,0,7.45E-04,0,1.427063176,19.03403078,97.09407345,10.19371174,20.46203137,0,26113.9497,0.1951164,0,0 +1942,1.359049319,0.897314522,0,0,4.114193284,0.84353078,95.021136,5.585489,1.7860212,2.976471,0,0,0.19841173,115.26991,0,4303.7401,134.7060241,560.1841861,0,0,1.4745564,0,0,0,7.76E-06,0.001710955,0,7.48E-04,0,1.529818545,19.21018323,98.65719695,10.34548378,21.01419377,0,26702.04279,0.16898031,0,0 +1943,1.402945825,0.892124843,0,0,4.114085782,0.80476688,89.521615,5.4576739,1.8029502,3.7199961,0,0.056451758,4.3053247,116.04761,0,4331.4951,136.6296869,561.0185503,0,0,1.5467027,0,0,0,7.79E-06,0.001859737,0,7.52E-04,0,1.677793207,19.22648995,99.48634644,10.64406286,20.76469901,0,27110.34859,0.14684461,0,0 +1944,1.387913119,0.898318952,0,0,4.111269896,0.41764093,72.694302,2.9606569,1.8198794,4.4638059,0,0.97266311,16.545617,116.85265,0,4354.745,138.9310562,569.4275578,0,0,1.6191675,0,0,0,7.83E-06,0.002021507,0,7.56E-04,0,1.853743997,19.45467137,102.0083052,10.97214997,20.91812228,0,26578.15151,0.11439264,0,0 +1945,1.180916482,0.898822172,0,0,3.970406317,0.20111842,68.369262,1.5076942,1.8368084,5.2077233,0,3.4593405,24.846154,117.6118,0,4376.5008,141.022964,562.3881403,0,0,1.69101,0,0,0,7.86E-06,0.002197258,0,7.60E-04,0,2.046836624,19.53099873,102.3868629,10.81105837,20.63041519,0,23414.92286,0.080798572,0,0 +1946,1.294211066,0.982947007,0,0,3.971696435,0.27970458,74.717234,2.0726649,1.8537378,5.9856104,0,4.9404679,24.839378,118.39896,0,4399.6117,142.7064022,555.289963,0,0,1.7631908,0,0,0,7.89E-06,0.002388349,0,7.64E-04,0,2.242235208,19.68948842,102.6581835,10.80993836,20.3059335,0,23137.29124,0.064300427,0,0 +1947,1.449894938,1.013635265,0,0,4.004289599,0.34838359,84.081746,2.6369074,1.8706665,6.4443541,0,4.8390374,24.982371,119.2973,0,4428.0553,144.7944965,563.4037754,0,0,1.8372679,0,0,0,7.94E-06,0.002596315,0,7.69E-04,0,2.428654505,19.91609513,104.1573676,11.48967842,20.19099947,0.003372839,25978.58013,0.046731228,0,0 +1948,1.541746758,1.021788966,0,0,4.123520873,0.33316898,90.670686,2.6243892,1.8875961,6.6649072,0,4.8563661,24.987103,120.08364,0,4451.0369,147.2720295,586.53608,0,0,1.966277,0,0,0,7.98E-06,0.003327672,0,7.73E-04,0,2.589644896,20.34906056,108.0964174,12.19576499,20.65035706,0.023611977,27162.31675,0.020169381,0,0 +1949,1.51503408,1.032229109,0,0,4.095746551,0.31424196,91.962416,2.5926444,1.8955033,7.1640705,0,5.561141,27.295461,120.70601,0,4466.7618,150.2157149,588.4410387,0,0,1.6426278,0,0,0,7.99E-06,0.02463759,0,7.75E-04,0,2.714013981,20.9091959,109.1544258,11.86397123,21.08117938,0.063741035,26198.85137,-0.001578436,0,0 +1950,1.695680787,1.04543439,0,0,4.331260791,0.32876887,78.580053,2.8441101,1.9897329,7.4706053,0,8.1460574,32.673745,121.62274,0,4499.2896,152.2010084,619.9439709,0,0,1.0661465,0,0,0,8.05E-06,0.10531435,0,7.81E-04,0,2.786823806,21.60140457,113.8598472,13.13214183,22.10581056,0.16053368,29148.54682,2.43E-04,0,0 +1951,1.817356704,1.263788462,0,0,4.212336067,0.33222262,70.47669,3.0430784,2.1685287,7.5542237,0,12.050138,36.815853,122.51807,0.014330518,4529.1876,155.2719352,593.1994506,0,0,1.0527789,0,0,0,8.09E-06,0.2343219,0,7.85E-04,0,2.830792646,21.71096706,109.0909544,13.15219389,20.39818818,0.23983988,30378.93497,0.001166432,0,0 +1952,1.85187593,1.291508658,0,0,4.278249967,0.32854487,76.508762,3.2228257,2.4120426,7.6734014,0,16.078842,40.441283,123.26435,0.21725302,4558.7052,160.5733576,606.95634,0,0,1.4414744,0,0,0,8.10E-06,0.3628351,0,7.87E-04,0,2.873469224,22.39378605,112.6182109,13.48661504,20.95793435,0.24565292,30772.87938,-0.002030065,0,0 +1953,1.905887196,1.288662579,0,0,4.400134891,0.31999622,81.681224,3.3863087,2.8478934,7.7034458,0,20.201055,45.581432,124.06078,1.3575508,4600.7084,165.6818323,623.9750548,0,0,2.100408,0,0,0,8.12E-06,0.48047903,0,7.90E-04,0,2.918473221,23.08627653,116.7765378,14.05062035,21.60093971,0.24572915,31392.44296,-2.28E-04,0,0 +1954,1.955325831,1.342683244,0,0,4.475107773,0.29457384,86.86347,3.4048632,3.2763156,7.760213,0,25.212381,51.892411,124.75392,3.6198833,4629.2231,170.3710079,628.9096635,0,0,2.8888848,0,0,0,8.14E-06,0.59576061,0,7.91E-04,0,2.965305231,23.5182693,118.7896929,14.35262782,21.65473895,0.24580572,31601.64062,-0.004070821,0,0 +1955,2.138786817,1.387820683,0,0,4.585745112,0.26311875,91.980019,3.3346824,3.6788015,7.6370702,0,30.727319,59.871881,125.74327,6.4848679,4666.3367,174.7404471,641.3267253,0,0,3.5564777,0,0,0,8.18E-06,0.70910415,0,7.96E-04,0,3.016004168,23.78869162,122.5425815,15.35988489,21.61194057,0.24588273,34555.40272,0.001049355,0,0 +1956,2.291039468,1.446283643,0,0,4.844401489,0.22075982,97.008491,3.0796375,4.2759912,7.5430316,0,33.546756,66.950489,126.58168,9.1561662,4699.2729,180.6711175,673.806229,0,0,4.5322658,0,0,0,8.21E-06,0.82044371,0,8.00E-04,0,3.06769313,24.39548109,129.82302,16.40773077,22.72448276,0.24595899,37118.77109,0.006640162,0,0 +1957,2.384773,1.477494579,0,0,5.084522572,0.18587639,102.11597,2.8571248,4.9612019,7.3765313,0,32.871446,72.204141,127.41838,11.488509,4733.2024,186.0555677,695.9496131,0,0,5.9875108,0,0,0,8.25E-06,0.92977447,0,8.03E-04,0,3.122765936,25.10938271,135.5915206,17.20228851,23.82634945,0.24603635,38873.75431,0.004342369,0,0 +1958,2.467095469,1.528597347,0,0,5.060488043,0.17928487,107.206,2.9954591,5.6330503,6.9087313,0,34.746284,80.925329,128.42262,14.781202,4771.3965,188.3855399,661.2854858,0,0,7.120204,0,0,0,8.29E-06,1.0371306,0,8.08E-04,0,3.184188319,25.26871426,129.2085836,17.04310474,22.2466504,0.2461131,39341.99136,0.002605294,1.53E-05,1.55E-04 +1959,2.603672914,1.473668289,0,0,5.186762349,0.18081021,112.29185,3.2476716,6.3880226,6.8760458,0,43.506257,93.983467,129.47587,18.063698,4808.726,192.6867573,665.4367222,0,0,8.0253807,0,0,0,8.33E-06,1.1424694,0,8.12E-04,0,3.250322629,25.78456832,131.2104974,17.51526633,22.13695045,0.30755864,41319.47351,8.68E-04,1.22E-04,0.001246036 +1960,2.728446849,1.461519532,0,0,5.288213084,0.17259465,117.2597,3.3209398,7.3201718,7.2392631,0,56.281481,107.5417,130.53321,21.750437,4847.0424,197.2611005,668.565663,0,0,9.5885732,0,0,0,8.37E-06,1.2458107,0,8.17E-04,0,3.323928526,26.12794679,133.3368149,18.13798676,22.06866314,0.4304021,42970.73471,-8.68E-04,2.31E-04,0.002375087 +1961,2.75210185,1.531158202,0,0,5.280187775,0.16861102,121.58986,3.4304351,8.4287849,7.4514735,0.001861801,70.618557,123.80387,131.26152,27.278298,4864.0212,205.1383413,701.0053453,0,0,11.884386,0,0,0,8.37E-06,1.346892,0,8.17E-04,0,3.545375735,26.8897385,143.5652635,18.73899699,23.37357314,0.55328481,48370.7476,-0.002605324,2.49E-04,0.003546415 +1962,2.868392579,1.520724684,0,0,5.268371109,0.17112099,125.71015,3.6249821,9.6127678,7.5805279,0.045181371,86.214551,144.89716,132.4011,32.049021,4895.6486,207.2122992,678.8492234,0,0,14.500089,0,0,0,8.41E-06,1.4460951,0,8.21E-04,0,3.678783292,27.3913443,140.105892,19.33292939,22.55009464,0.61483924,49373.46267,-0.004342521,2.53E-04,0.004920676 +1963,3.036186161,1.527209311,0,0,5.437875743,0.18314033,128.88013,3.9881367,10.949721,7.9110854,0.24720738,101.83231,167.67883,132.99126,37.52532,4904.2354,216.1922656,741.3196016,0,0,17.280228,0,0,0,8.39E-06,1.5429261,0,8.19E-04,0,3.803776307,28.74464761,156.130954,20.52084737,24.60921093,0.55366285,50918.54792,-0.007869931,3.52E-04,0.005972759 +1964,3.193585727,1.518253087,0,0,5.259909465,0.20130699,129.76929,4.4326257,12.657214,8.4778946,0.46848862,116.30072,189.8766,134.07707,49.914046,4933.087,216.556163,689.11146,0,0,20.771971,0,0,0,8.44E-06,1.6379776,0,8.24E-04,0,3.945754292,28.60741633,146.4547756,21.25062666,22.37762398,0.49245891,52831.63767,-7.60E-04,0.001030371,0.033580017 +1965,3.342046615,1.549410355,0,0,5.270010253,0.2250418,129.69213,4.9089192,14.528257,9.0358315,0.58010695,130.83984,213.3919,135.19804,70.507935,4953.0596,222.6664157,709.3122963,0,0,25.0603,0,0,0,8.46E-06,1.7308461,0,8.27E-04,0,4.115195266,29.97215368,153.4053912,22.08301054,22.64997293,0.4926084,54063.80178,0.015948649,0.002140689,0.11324642 +1966,3.50172055,1.551765281,0,0,5.285174796,0.26721734,129.70542,5.6248074,16.547774,9.5008952,0.77191369,147.99606,240.15802,136.46754,94.258765,4976.4474,226.3106958,710.9414665,0,0,30.477075,0,0,0,8.51E-06,1.8217969,0,8.32E-04,0,4.311197356,31.55306755,156.4949809,22.8477914,22.43429714,0.61550021,55269.31676,0.069786165,0.003103097,0.20275693 +1967,3.625966014,1.595865386,0,0,5.390458849,0.32052973,129.68847,6.3547572,18.918172,9.9208119,1.0373,169.42177,269.58286,137.66763,116.32544,4995.4184,232.3331465,746.2098209,0,0,36.036945,1.25E-05,0,6.90E-05,8.54E-06,1.9105949,0,8.37E-04,0,4.481777635,33.16777605,164.7753162,24.19623738,23.58529354,0.7384486,54762.8971,0.24404072,0.003754249,0.26151045 +1968,3.834595266,1.546993091,0,0,5.370373092,0.40423022,129.73308,7.3324415,21.713594,10.295172,1.3673824,195.13757,299.71437,139.24379,133.08156,5029.5667,235.3354027,740.4824182,0,0.009237978,40.359034,8.80E-05,0,4.86E-04,8.63E-06,1.9976935,0,8.46E-04,0,4.618299686,34.38157284,165.0957088,25.41081254,22.82579691,0.67731523,56868.37887,0.44305972,0.005543179,0.29037411 +1969,4.061567727,1.543708902,0,0,5.404091613,0.5206411,129.76058,8.4831718,24.938178,10.638634,1.7120901,220.72612,327.55328,140.05867,146.61896,5026.2804,239.1848516,747.0297315,0,0.18322115,44.144508,9.37E-05,0,5.04E-04,0.009824818,2.0817369,0,8.45E-04,0,4.732615323,34.96181251,169.6815713,26.06506901,22.10048951,0.67751619,58467.8108,0.55613635,0.03648951,0.30862539 +1970,4.323514044,1.531929069,0,0,5.549708797,0.6581692,129.69302,9.5318801,28.576904,11.00827,1.8909658,245.38621,354.60102,141.52757,173.56366,5048.3132,244.4183955,781.0375523,0,0.60795801,49.037394,2.47E-05,0,1.09E-04,0.036330653,2.1644992,0,8.52E-04,0,4.714190308,37.46957853,179.6859547,27.82408407,22.78022432,0.80047128,61529.77979,0.64373178,0.11813403,0.34789664 +1971,4.510244869,1.405554242,0,0,5.703748992,0.82992065,129.60227,10.711494,32.729139,11.452529,2.1402118,276.44309,387.53989,143.1196,217.72405,5067.5026,249.2895331,796.2029425,0,0.8564576,55.790888,1.33E-05,0,4.26E-05,0.064586906,2.2451174,0,8.59E-04,0,4.663522046,38.13342516,183.5355579,28.61726398,23.19511601,0.86210262,61716.79563,0.78786166,0.2232129,0.40686343 +1972,4.706494312,1.326937135,0,0,5.971153375,1.0559029,129.65777,12.24311,37.465523,11.97792,2.5517628,314.22879,427.68026,144.52172,267.60333,5079.1924,257.2102054,868.4735708,0,0.87667663,61.456633,1.35E-05,0,4.30E-05,0.082580189,2.3233295,0,8.64E-04,0,4.93074212,39.56446297,196.6655247,30.23622151,25.52743454,0.86237286,63465.10424,1.0951867,0.31882408,0.4721474 +1973,4.975651786,1.318385656,0,0,5.895831576,1.330787,129.79157,14.085332,42.979262,12.585161,2.92937,338.0693,454.71123,146.54158,301.85553,5118.3195,260.294725,826.0293132,0,0.82240702,65.420113,1.38E-05,0,5.50E-05,0.090214925,2.4006492,0,8.77E-04,0,5.050826137,39.95714271,186.5259319,31.24009688,23.45564811,0.92401065,66317.71189,1.5930673,0.39726303,0.54390644 +1974,4.948149198,1.290549,0,0,5.971643938,1.4191691,129.76026,14.311146,49.247959,13.447442,3.5184015,340.6055,453.22872,147.80664,327.35544,5113.8208,261.8082771,824.6214022,0,0.76119143,71.666995,1.40E-05,0,0.052416219,0.087063163,2.474116,0,8.78E-04,0,5.034419125,40.69211664,183.6005251,31.07740605,23.59962462,1.0394718,65371.62667,2.1806547,0.67241083,0.65809554 +1975,4.9286224,1.303204964,0,0,5.998431374,1.4004084,129.65616,14.321042,57.565811,14.538442,4.2176868,337.71465,440.16522,148.91662,384.99818,5104.4298,263.0585486,816.9194859,0,0.80304672,79.153904,1.42E-05,0,0.19213674,0.072875586,2.545125,0,8.78E-04,0,5.206812767,41.4767259,177.5130673,30.76637271,23.12965379,1.1646458,64182.76882,2.8018363,1.2682709,0.8287437 +1976,5.194661022,1.320205358,0,0,6.237496532,1.5554771,129.63321,16.011714,57.24638,15.386466,4.743647,329.27602,426.10768,150.23158,475.43135,5104.2152,269.9482097,856.0634915,0,0.82394648,92.664426,1.44E-05,0,0.33759564,0.047412585,2.614347,0,8.80E-04,0,5.352361697,42.52135697,186.2474273,32.28663209,24.40571792,1.4235416,67153.40876,3.4107057,1.8435573,0.98712807 +1977,5.36442864,1.352097971,0,0,6.353178768,1.692355,129.63647,16.762577,55.875241,15.71703,5.1782548,306.11158,404.2283,152.04264,533.0325,5117.6518,274.0301524,868.4313097,0,0.93269902,109.06413,2.14E-06,0,0.42456315,0.022180513,3.5323931,0,8.87E-04,0,5.499463795,43.27485688,189.2255323,33.05929028,24.38724427,2.1583469,67777.19082,3.8826089,2.1420878,1.0852977 +1978,5.581802903,1.2993019,0,0,6.579044818,1.7691766,130.48849,16.898235,72.245349,15.529417,5.5214166,278.45958,383.9896,153.91731,529.79652,5132.0601,276.3333545,897.4051484,0,1.277913,112.78031,-6.25E-05,0,0.45249588,-0.059867027,4.661461,0,8.95E-04,0,5.625120896,44.24089207,192.9347955,34.2691933,25.01974419,2.8286901,68023.04188,4.2701212,2.1599238,1.1209157 +1979,5.73073214,1.252317648,0,0,6.677231649,1.9203395,128.37989,17.898313,94.634628,14.991238,6.1020639,271.13342,394.80033,155.58904,518.50501,5138.651,281.6000656,900.4664227,0,1.7595655,113.22088,-2.04E-06,0,0.42017076,-0.17766763,5.0937882,0,9.00E-04,0,5.807081799,45.13478108,196.0169029,35.01398718,25.21247986,2.8296177,69119.86371,4.6513697,2.0579417,1.1328091 +1980,5.650947967,1.244135794,0,0,6.618387125,1.9633226,125.08456,17.664267,120.23426,14.760861,7.2362595,276.09356,398.43779,157.04196,513.02719,5131.8984,283.3464702,890.5114952,0,2.0330453,118.29604,7.94E-05,0,0.35605477,-0.12485274,5.1732709,0,9.02E-04,8.17E-05,5.872959052,45.97852705,194.391242,34.76440147,25.23254566,2.8304823,68783.84557,5.1129913,2.1545661,1.1562096 +1981,5.539335981,1.252813549,0,0,6.57778223,1.7391266,126.52811,16.187192,128.45086,13.920115,8.6372447,271.00597,403.07178,158.51506,516.86109,5123.4643,279.7894207,875.7816094,0,1.96562,122.37567,1.71E-05,0,0.32601335,0.11779446,4.4274361,0,9.03E-04,6.97E-04,5.805407446,46.37436562,189.1686139,34.11541673,24.87329597,2.9541119,66688.82722,6.0090215,2.4863888,1.1742814 +1982,5.477249508,1.258145478,0,0,6.915258578,1.6205522,129.38621,15.97381,128.57689,13.885459,9.2748324,277.72577,391.79861,159.18065,532.93449,5083.3728,287.6693154,967.4292983,0,1.6573364,125.26367,-8.23E-05,0,0.33083911,0.22216908,3.5575865,0,8.94E-04,0.001578501,6.043062728,47.66689068,206.8844648,34.15609141,28.27220571,2.9550432,65532.30175,6.4693449,3.0131287,1.352411 +1983,5.483062193,1.433024176,0,0,6.625402214,1.8456854,130.75989,16.384525,150.74703,15.564841,9.057039,353.29433,385.70972,160.09109,547.19948,5047.3484,281.6176584,862.0214943,0,1.3378778,129.4055,-2.71E-05,0,0.33559498,0.09748991,3.8040369,0,8.87E-04,0.002017846,6.06583408,47.6454021,183.8358223,33.28512898,24.45951343,3.2014371,64552.41617,6.0034055,3.8198142,1.378774 +1984,5.619005091,1.461224853,0,0,6.815018955,1.954181,134.9934,14.927399,167.86607,17.177696,10.537606,352.61795,438.30954,162.15076,546.6524,5054.1956,285.0030452,889.7020107,0,1.2391705,137.14097,8.66E-05,0,0.48356263,0.027417786,4.8805395,0,8.93E-04,0.004307161,5.996375963,48.69349353,189.3335257,34.32486538,25.32627636,3.570683,65309.89915,6.3412338,4.7987259,1.1329507 +1985,5.678895003,1.499743779,0,0,6.922761989,1.930951,138.44665,13.863624,191.20489,18.042992,12.093107,321.80334,487.46531,164.43684,559.24581,5072.7864,285.6752697,906.9368199,0,1.4290266,148.48134,2.16E-04,0,0.56320674,0.085787554,5.2553933,0,9.02E-04,0.012966035,5.996554239,49.41563613,190.4568857,34.8615092,25.83243998,3.6945657,65474.08715,7.6862714,5.5359652,1.1864916 +1986,5.784334368,1.530113569,0,0,7.013703662,2.0447892,134.66824,14.595216,226.48099,17.343175,11.156209,363.19165,561.19711,166.53505,605.54478,5079.9439,290.8084488,914.5218093,0,2.1480617,163.26271,2.16E-04,6.84E-04,0.57273931,0.044305139,5.6896951,0,9.08E-04,0.028102657,6.123193923,50.21167874,195.6652235,35.24652923,25.91211685,3.9411958,65479.27148,8.6199267,5.6626388,1.453026 +1987,5.942054872,1.515689335,0,0,7.200139154,2.1868179,140.05915,15.122737,234.71551,15.986362,11.176584,377.17492,543.59326,168.70781,636.85035,5087.8651,295.0485147,952.0611492,0.001157823,3.2631248,177.25124,5.82E-05,0.004878587,0.79616882,-0.099665792,6.5386064,0,9.14E-04,0.044783508,6.350228642,51.33101366,203.5851701,36.43815818,27.25186717,4.3106697,66721.094,9.1692428,5.2412687,1.7364871 +1988,6.133362797,1.515094775,0,0,7.39663506,2.2384091,134.89421,15.295333,225.34631,14.052169,12.063592,324.40759,433.01446,171.54521,645.54402,5119.7697,298.6854951,950.4151874,0.34924766,5.2661192,185.3279,0.021115007,0.06849384,0.88192316,-0.073662439,6.6278139,0,9.28E-04,0.060567348,6.188309996,51.72677742,203.5322276,37.79778929,27.18506613,4.6802608,67287.4839,10.094657,4.7030971,1.770198 +1989,6.211121149,1.53212989,0,0,7.320233668,2.2075539,105.50252,15.212081,212.83728,10.119863,11.292045,246.46809,357.7641,174.22363,713.52261,5139.3872,302.1641744,930.8467755,0.72136249,10.730464,189.56819,0.31476996,0.67304705,0.82629641,0.054397397,6.6572182,0,0.006065534,0.076147787,6.264529715,52.06403696,200.3165052,38.13825088,26.33140677,5.0499664,67312.93275,10.904862,4.3864096,1.6702493 +1990,6.186811699,1.445096887,0,0,7.508271532,2.1076967,86.426532,14.407865,176.8456,7.0905085,10.591201,208.25652,333.97703,176.36773,658.40311,5137.248,305.2725547,940.5626313,1.5203264,17.768055,192.30881,0.96053501,1.7208698,0.69729352,0.18589003,6.6838429,0,0.02696988,0.091767095,6.277152283,52.52170068,203.021231,38.25721546,27.36536835,5.1743108,67094.07179,10.051338,4.2741531,1.7373255 +1991,6.190131152,1.63686011,0,0,8.011536269,1.982897,85.142226,12.924815,120.64491,6.9542228,10.775591,159.81289,286.27307,177.30503,474.47964,5089.9323,318.7311921,1129.983883,6.9394223,22.06288,185.52075,1.727734,2.7251313,0.70613627,0.24819351,7.0572566,0,0.058141591,0.10715402,6.344945592,54.26130892,244.4286341,39.69249193,34.39493833,5.29866,66472.31502,9.6580528,4.1585749,1.6735462 +1992,6.145912973,1.683057085,0,0,7.364888993,1.9500444,85.437279,11.907588,74.361852,5.3089984,10.120439,106.91739,227.43518,179.3441,361.04368,5056.1355,299.4017955,913.3754186,22.26499,24.233416,194.061,2.4767485,4.0250116,1.0018637,0.18194194,7.9102615,0,0.088755914,0.12273589,6.358476439,52.37759099,198.238473,38.71717596,26.64897689,5.4230636,64223.92565,10.784362,3.8127392,1.4631107 +1993,6.193394815,1.54672743,0,0,7.531122847,1.9984803,84.458339,11.381334,50.567396,3.463778,8.6771649,84.3251,231.9618,179.76429,256.33383,5078.4684,299.4425141,941.8816353,34.33223,22.551362,208.33854,3.0949997,11.967198,1.5166355,0.157163,8.3534838,0,0.1188094,0.13825367,6.310752017,52.78275226,203.7757832,39.74372709,28.11499626,5.424762,63195.55052,11.612337,3.3180441,1.2514505 +1994,6.240067755,1.503716685,0,0,7.895732734,2.1430557,86.05046,11.006658,37.565451,4.6095776,8.163643,85.893495,238.58315,178.03958,159.08791,5003.2837,310.2518368,1060.282744,45.287421,24.423112,237.88968,3.5515518,24.558229,2.3253155,0.20390529,8.737968,0,0.14808425,0.15358509,6.441827,54.21042307,231.0503543,40.27137016,33.14335063,5.5491826,61820.50124,11.303115,2.9604627,1.1962062 +1995,6.377386454,1.486080505,0,0,7.813189501,2.3880707,80.480245,10.682998,23.473127,5.7076242,7.6747577,86.264975,210.72453,180.13151,95.783763,5016.3948,305.4095889,955.0363062,51.095458,27.59918,230.3453,3.8771223,36.211193,3.4395305,0.29614801,9.315257,0,0.17780027,0.16982122,6.504076136,53.41671788,206.4742485,40.45040793,29.71540754,5.6736625,60635.50707,11.011358,2.8923304,1.0842597 +1996,6.511379279,1.470193985,0,0,7.686339551,2.6638414,75.256035,10.505743,13.005309,4.6522227,5.5242189,85.278741,170.78176,183.444,59.514335,5297.7083,307.2912075,930.0218807,53.568363,26.00128,224.86947,4.0579149,48.538296,4.5014521,0.39044285,9.7707047,0,0.20547879,0.23841137,6.542220103,53.42127729,200.8724208,40.45019229,28.71419152,5.5527008,59650.01603,10.510994,2.8654227,0.84755661 +1997,6.574573879,2.18331399,0,0,8.269788743,2.8728437,75.489912,10.417958,10.398164,3.7691062,3.4559389,86.341446,160.63531,180.149,29.550907,5288.9251,331.2889198,1204.992305,55.763481,29.370536,240.5221,4.6266327,58.758537,5.5717023,0.427562,9.7952259,4.96E-05,0.25820595,0.31501343,6.740456045,56.11803189,264.6751503,41.89315592,38.34138232,5.7834259,59868.27682,9.8242768,2.8566852,0.76826308 +1998,6.590459871,1.541245282,0,0,8.412226876,2.9899069,72.916263,10.335348,12.992477,3.9615346,2.9318362,86.348141,156.67666,176.1082,23.412636,5175.5355,315.3326212,1085.430599,55.956781,28.471196,234.46613,6.9049469,70.049792,6.8917397,0.54029666,10.02529,3.58E-04,0.60512272,0.38665542,6.446521521,56.58934432,232.3180182,42.33468434,37.8122783,5.6031107,58604.36759,10.323837,2.701239,0.76943857 +1999,6.661329053,1.303430472,0,0,7.698162125,2.9607505,72.96355,10.216505,14.054175,3.9749853,3.1538842,82.703538,140.42544,168.37661,18.420173,5112.4264,309.4083709,940.700678,58.338707,25.741051,252.31636,8.6848445,91.978363,7.9486502,0.7424207,10.07373,0.003108151,1.0699013,0.49435229,6.281150807,54.7693723,205.1118782,40.94720104,30.44917133,5.1676463,55523.54474,10.262658,2.1509855,0.7706312 +2000,6.893167303,1.201338049,0,0,7.457347232,2.8153943,72.651408,9.9231457,9.4043884,3.9867142,2.3476518,76.330076,122.76605,165.25876,19.471227,5074.2696,310.1868098,886.5647302,56.341686,25.730152,263.60627,10.640667,99.657424,8.5987563,0.86319988,9.2978389,0.034006926,1.411492,0.57423278,6.112229814,54.50959652,195.3241582,41.26362178,27.9819784,5.2735332,55661.00151,9.4801348,1.9694412,0.77151922 +2001,6.957086928,0.961802096,0,0,7.591758769,3.0480682,70.656969,10.593275,5.9590471,3.2771364,1.1600545,68.271466,111.64066,165.599,19.806901,5094.2258,312.8963787,881.6703956,56.368781,24.490463,261.60586,11.075295,96.243251,9.8521252,0.94275566,8.9840003,0.80619906,1.6540309,0.63867332,6.188009183,54.70989639,196.1877828,41.37717554,27.87799844,5.3282102,56049.16643,8.8337936,2.3248261,0.74608572 +2002,7.097947295,1.070652511,0,0,8.046474187,3.4534372,70.456674,11.982167,3.1513602,2.420559,0.95011524,63.484809,101.90454,161.14055,12.302716,5096.5932,322.2788312,970.7244172,50.843174,25.156097,270.32175,12.214474,102.73275,11.617585,1.2107813,9.7208997,2.9170651,2.8037817,0.73327062,6.359556248,57.07665954,218.4604141,41.89878327,33.80824329,5.4976481,55687.52236,8.3685909,2.2797577,0.67660085 +2003,7.424688348,0.901041903,0,0,8.241697598,3.16329,69.839024,12.579882,5.7693016,1.7336337,0.74505988,62.277955,97.844828,158.92828,10.122917,5113.7538,328.1242242,944.7470786,44.441172,25.070909,287.30923,15.640539,117.40605,13.114832,1.560512,11.005369,5.226518,4.7856897,0.85366012,6.428305305,57.69037488,214.4033914,42.68216556,34.36218135,5.5417194,57641.7237,8.0831154,2.0262772,0.60195554 +2004,7.812644316,1.038213168,0,0,8.542465507,2.2029533,66.998563,12.194883,9.216749,1.4729969,0.75667708,60.966802,87.654103,156.21655,9.7469995,5141.4447,338.9417722,945.5469501,49.135801,28.554887,307.57676,15.758879,125.65071,13.097501,2.0510461,12.712613,6.6512131,5.4873038,0.97410928,6.590470047,58.11358477,216.6872834,44.5568559,32.33033041,5.6480085,60340.85189,7.5267646,2.1192661,0.55294607 +2005,8.093491316,1.025657164,0,0,8.840128386,1.9480504,63.195607,11.060838,4.6297025,1.8139658,0.58070615,60.331179,71.956593,154.12291,7.5405195,5209.9819,346.3955546,950.5924444,53.955471,33.447493,329.52471,16.143675,126.49199,12.434284,2.365528,14.626529,7.0791974,6.3606922,1.0845927,6.693579484,58.88341048,218.7880648,45.62238086,32.72399071,6.2799143,62587.82672,6.9433284,1.8947828,0.46971744 +2006,8.35813441,1.092642828,0,0,8.92564815,2.045423,60.048081,10.21735,0.6450641,1.7510311,0.58710647,63.037203,65.575271,152.41471,9.3190485,5272.2746,356.4696896,986.1510089,51.911598,36.489809,346.30497,19.891066,133.41048,14.118518,2.3531588,12.639849,6.8754044,8.3862482,1.1852524,6.875606953,60.37974253,229.8954395,46.63913374,34.3551466,6.9409178,63046.34515,6.3118449,1.5902358,0.43579597 +2007,8.681148087,0.966211967,0,0,9.284494092,1.7666158,57.257154,9.3272415,4.5089203,1.5545493,0.78280059,64.737513,61.623755,147.28895,9.6981304,5250.6823,355.0225755,945.8695944,49.953532,37.109679,357.26506,26.595246,127.25708,16.399738,2.4154053,9.3262891,6.6980995,8.4029745,1.2649376,6.596141361,60.96582609,219.7058707,48.13085999,33.27729799,6.9754073,62641.3592,5.7707437,1.7021554,0.59162888 +2008,8.733139806,0.668337987,0,0,9.091850914,1.746034,56.837697,9.0353429,8.3395339,1.9164483,0.45696793,63.060877,57.108479,144.47281,6.337645,5191.6855,360.4917105,912.5104843,54.881457,33.091627,362.72449,30.815622,138.28669,17.544095,2.6196596,8.8123411,7.076053,10.669375,1.3164863,6.638276368,61.31644175,214.695495,48.0350761,31.61901151,6.8835341,61275.77058,5.5737514,1.6171325,0.63840472 +2009,8.584990107,0.754863283,0,0,9.109514002,1.7995507,55.355253,9.6854874,5.7877004,1.6755174,0.3835494,60.065148,54.788238,144.24254,3.7694324,5145.2658,364.2003634,917.7292309,61.506343,32.081369,366.5558,33.926872,160.10848,21.142804,2.9666725,9.9336003,7.8522494,16.223306,1.4335012,6.712782947,61.3779593,218.7581143,46.48309573,31.77247637,7.159861,58721.16171,5.2570896,1.7272846,0.47723148 +2010,8.975543684,0.885110055,0,0,9.665129376,1.7742176,56.090865,10.48947,4.4070317,1.4644148,0.65896445,58.86009,52.271203,142.6745,2.4614781,5179.9719,370.8962528,953.2286303,65.209531,29.851794,361.74691,35.069515,165.044,20.460881,3.1827017,11.247607,8.7778712,15.914528,1.3375544,6.708375368,62.44447212,224.6021121,47.31829704,34.61053251,7.2759031,58249.45527,4.8975548,1.8511656,0.39655186 +2011,9.25596626,0.91365454,0,0,9.478876566,1.8467555,57.565927,11.056837,4.6237938,2.0468287,0.85601742,62.415615,52.120722,140.42156,3.0036158,5252.9333,372.6576832,906.7673675,67.690592,28.645628,366.94427,43.330418,190.47655,22.158614,3.410604,12.498165,9.4654578,20.415233,1.1291345,6.648935415,62.39874927,218.628754,48.49222156,32.51825927,7.4656928,58834.52202,4.3361773,2.096153,0.39105944 +2012,9.386649745,0.970689078,0,0,9.705285171,1.794986,59.464919,9.6609456,5.4529267,2.0520518,0.7168607,70.235225,53.35878,136.71475,3.0096674,5232.3317,380.8097666,949.6022184,63.311547,25.468261,356.29002,45.81505,205.00564,21.423,3.2771162,12.591587,9.054248,24.0671,0.98551995,6.742796632,63.84845417,229.1069362,48.17674509,35.82690196,7.7062836,57925.01408,3.8379813,1.7328717,0.41594871 +2013,9.659396496,0.91865757,0,0,9.560553735,1.6324652,62.512861,8.3027436,6.5167934,1.9408617,0.61330322,75.740842,54.819887,133.39273,1.8384424,5231.2321,381.5943928,901.2387566,59.817791,19.467118,342.89828,38.8888,202.01825,23.8069,2.9986006,11.604213,9.7859,21.452891,0.87225171,6.847910646,63.65097665,219.3811793,47.50620674,33.24556583,7.686158,57413.51787,3.5745493,0.96258078,0.44442215 +2014,9.719224641,1.095764818,0,0,9.744379658,1.6517,53.5475,9.8735,2.8024,1.6696,1.114899,54.9365,28.9612,133.6791,1.2625,5358.4982,387.8735392,964.0476182,59.82,22.47,358.8813,57.1243,200.0249,25.2487,3.5393,12.991,10.1025,30.4858,1.1516,6.916164551,65.03685366,233.525518,47.38523786,36.14582139,7.8784,57093.26142,3.481,1.2299,0.3854 +2015,9.724603237,0.959883081,0,0,9.727423577,1.57,47.5476,10.8699,0.8742,1.6696,1.6714,43.5734,14.6096,133.823,0,5404.8069,388.0727957,934.3498847,59.82,22.47,358.8813,78.7906,201.9534,32.381,3.6633,14.4857,11.7285,38.5792,1.1516,6.937624392,65.27970313,227.2448193,47.34877178,34.74602423,8.02,50464.18814,3.2933,1.3378,0.3481 +2016,9.77278747,0.941225828,0,0,9.346808649,1.64646,45.01716,11.191977,0.78156,1.515231454,1.61422146,41.88082,12.88774,135.22242,0,5438.2612,382.2397875,906.3534659,60.8428786,21.9901556,351.625206,96.0355,211.47616,37.92486,3.99074446,12.09188,13.4206016,32.20384,1.16567266,6.912977982,65.25142025,219.9155267,46.73538488,33.62606204,7.73546,48338.67641,3.07158,1.29166,0.33428 +2017,9.820971703,0.922568574,0,0,8.96619372,1.72292,42.48672,11.514054,0.68892,1.360862908,1.55704292,40.18824,11.16588,136.62184,0,5471.7155,376.4067793,878.357047,61.8657572,21.5103112,344.369112,113.2804,220.99892,43.46872,4.31818892,9.69806,15.1127032,25.82848,1.17974532,6.888331572,65.22313737,212.5862341,46.12199798,32.50609986,7.45092,46213.16468,2.84986,1.24552,0.32046 +2018,9.869155936,0.90391132,0,0,8.585578792,1.79938,39.95628,11.836131,0.59628,1.206494362,1.49986438,38.49566,9.44402,138.02126,0,5505.1698,370.5737711,850.3606282,62.8886358,21.0304668,337.113018,130.5253,230.52168,49.01258,4.64563338,7.30424,16.8048048,19.45312,1.19381798,6.863685161,65.19485449,205.2569415,45.50861108,31.38613767,7.16638,44087.65295,2.62814,1.19938,0.30664 +2019,9.917340169,0.885254067,0,0,8.204963864,1.87584,37.42584,12.158208,0.50364,1.052125816,1.44268584,36.80308,7.72216,139.42068,0,5538.6241,364.7407629,822.3642094,63.9115144,20.5506224,329.856924,147.7702,240.04444,54.55644,4.97307784,4.91042,18.4969064,13.07776,1.20789064,6.839038751,65.1665716,197.9276489,44.89522418,30.26617549,6.88184,41962.14121,2.40642,1.15324,0.29282 +2020,9.965524402,0.866596813,0,0,7.824348936,1.9523,34.8954,12.480285,0.411,0.89775727,1.3855073,35.1105,6.0003,140.8201,0,5572.0784,358.9077547,794.3677906,64.934393,20.070778,322.60083,165.0151,249.5672,60.1003,5.3005223,2.5166,20.189008,6.7024,1.2219633,6.814392341,65.13828872,190.5983563,44.28183728,29.1462133,6.5973,39836.62948,2.1847,1.1071,0.279 +2021,9.582296378,0.790097659,0,0,7.48533686,1.80312,33.28538,11.64406271,0.37899,0.833926213,1.342148655,33.87909,5.50149,138.0897,0,5485.21957,347.3196813,767.5769376,63.8401921,19.2265454,304.67177,151.8476522,227.73617,55.28513,4.850124236,2.27322,18.56624278,6.05421,1.111101229,6.6671985,65.11029536,183.2158847,42.49273829,28.31322752,6.24666,37678.60531,2.06237,1.07222,0.26903 +2022,9.199068354,0.713598505,0,0,7.146324785,1.65394,31.67536,10.80784042,0.34698,0.770095156,1.29879001,32.64768,5.00268,135.3593,0,5398.36074,335.7316079,740.7860846,62.7459912,18.3823128,286.74271,138.6802044,205.90514,50.46996,4.399726172,2.02984,16.94347756,5.40602,1.000239158,6.520004658,65.08230199,175.8334132,40.7036393,27.48024174,5.89602,35520.58115,1.94004,1.03734,0.25906 +2023,8.815840331,0.637099351,0,0,6.807312709,1.50476,30.06534,9.97161813,0.31497,0.706264099,1.255431365,31.41627,4.50387,132.6289,0,5311.50191,324.1435344,713.9952316,61.6517903,17.5380802,268.81365,125.5127566,184.07411,45.65479,3.949328108,1.78646,15.32071234,4.75783,0.889377087,6.372810817,65.05430863,168.4509416,38.91454031,26.64725596,5.54538,33362.55698,1.81771,1.00246,0.24909 +2024,8.432612307,0.560600197,0,0,6.468300633,1.35558,28.45532,9.13539584,0.28296,0.642433042,1.21207272,30.18486,4.00506,129.8985,0,5224.64308,312.555461,687.2043785,60.5575894,16.6938476,250.88459,112.3453088,162.24308,40.83962,3.498930044,1.54308,13.69794712,4.10964,0.778515016,6.225616976,65.02631527,161.0684701,37.12544132,25.81427018,5.19474,31204.53281,1.69538,0.96758,0.23912 +2025,8.049384283,0.484101043,0,0,6.129288558,1.2064,26.8453,8.29917355,0.25095,0.578601985,1.168714075,28.95345,3.50625,127.1681,0,5137.78425,300.9673876,660.4135255,59.4633885,15.849615,232.95553,99.177861,140.41205,36.02445,3.04853198,1.2997,12.0751819,3.46145,0.667652945,6.078423134,64.99832191,153.6859985,35.33634233,24.9812844,4.8441,29046.50865,1.57305,0.9327,0.22915 +2026,7.666156259,0.407601889,0,0,5.790276482,1.05722,25.23528,7.46295126,0.21894,0.514770928,1.12535543,27.72204,3.00744,124.4377,0,5050.92542,289.3793141,633.6226725,58.3691876,15.0053824,215.02647,86.0104132,118.58102,31.20928,2.598133916,1.05632,10.45241668,2.81326,0.556790874,5.931229293,64.97032854,146.303527,33.54724334,24.14829862,4.49346,26888.48448,1.45072,0.89782,0.21918 +2027,7.282928236,0.331102735,0,0,5.451264407,0.90804,23.62526,6.62672897,0.18693,0.450939871,1.081996785,26.49063,2.50863,121.7073,0,4964.06659,277.7912407,606.8318195,57.2749867,14.1611498,197.09741,72.8429654,96.74999,26.39411,2.147735852,0.81294,8.82965146,2.16507,0.445928803,5.784035452,64.94233518,138.9210555,31.75814435,23.31531284,4.14282,24730.46031,1.32839,0.86294,0.20921 +2028,6.899700212,0.254603581,0,0,5.112252331,0.75886,22.01524,5.79050668,0.15492,0.387108814,1.03863814,25.25922,2.00982,118.9769,0,4877.20776,266.2031673,580.0409665,56.1807858,13.3169172,179.16835,59.6755176,74.91896,21.57894,1.697337788,0.56956,7.20688624,1.51688,0.335066732,5.63684161,64.91434182,131.5385839,29.96904536,22.48232706,3.79218,22572.43615,1.20606,0.82806,0.19924 +2029,6.516472188,0.178104427,0,0,4.773240256,0.60968,20.40522,4.95428439,0.12291,0.323277757,0.995279495,24.02781,1.51101,116.2465,0,4790.34893,254.6150939,553.2501135,55.0865849,12.4726846,161.23929,46.5080698,53.08793,16.76377,1.246939724,0.32618,5.58412102,0.86869,0.224204661,5.489647769,64.88634846,124.1561124,28.17994637,21.64934128,3.44154,20414.41198,1.08373,0.79318,0.18927 +2030,6.133244164,0.101605272,0,0,4.43422818,0.4605,18.7952,4.1180621,0.0909,0.2594467,0.95192085,22.7964,1.0122,113.5161,0,4703.4901,243.0270204,526.4592605,53.992384,11.628452,143.31023,33.340622,31.2569,11.9486,0.79654166,0.0828,3.9613558,0.2205,0.11334259,5.342453928,64.85835509,116.7736408,26.39084738,20.8163555,3.0909,18256.38781,0.9614,0.7583,0.1793 +2031,5.768018359,0.129203477,0,0,4.345371325,0.44271,17.92802,4.02317297,0.08382,0.241007612,0.922171126,21.99688,0.92805,113.1905,0,4693.63392,238.7856046,525.3744959,51.7698,10.82562094,131.008084,31.8304178,29.52312,11.43154,0.753686015,0.07682,3.79240023,0.20458,0.106171184,5.341360111,64.89423802,116.1071637,25.71331796,20.7988716,3.05227,17613.72162,0.90757,0.7344,0.1729 +2032,5.402792553,0.156801683,0,0,4.25651447,0.42492,17.06084,3.92828384,0.07674,0.222568525,0.892421402,21.19736,0.8439,112.8649,0,4683.77774,234.5441887,524.2897313,49.547216,10.02278988,118.705938,30.3202136,27.78934,10.91448,0.71083037,0.07084,3.62344466,0.18866,0.098999779,5.340266294,64.93012094,115.4406866,25.03578855,20.78138771,3.01364,16971.05544,0.85374,0.7105,0.1665 +2033,5.037566748,0.184399888,0,0,4.167657615,0.40713,16.19366,3.83339471,0.06966,0.204129437,0.862671678,20.39784,0.75975,112.5393,0,4673.92156,230.3027729,523.2049668,47.324632,9.21995882,106.403792,28.8100094,26.05556,10.39742,0.667974725,0.06486,3.45448909,0.17274,0.091828373,5.339172477,64.96600387,114.7742095,24.35825913,20.76390382,2.97501,16328.38925,0.79991,0.6866,0.1601 +2034,4.672340942,0.211998093,0,0,4.07880076,0.38934,15.32648,3.73850558,0.06258,0.18569035,0.832921954,19.59832,0.6756,112.2137,0,4664.06538,226.061357,522.1202022,45.102048,8.41712776,94.101646,27.2998052,24.32178,9.88036,0.62511908,0.05888,3.28553352,0.15682,0.084656968,5.33807866,65.00188679,114.1077323,23.68072972,20.74641993,2.93638,15685.72306,0.74608,0.6627,0.1537 +2035,4.307115136,0.239596298,0,0,3.989943905,0.37155,14.4593,3.64361645,0.0555,0.167251262,0.80317223,18.7988,0.59145,111.8881,0,4654.2092,221.8199412,521.0354376,42.879464,7.6142967,81.7995,25.789601,22.588,9.3633,0.582263435,0.0529,3.11657795,0.1409,0.077485563,5.336984843,65.03776971,113.4412552,23.0032003,20.72893604,2.89775,15043.05687,0.69225,0.6388,0.1473 +2036,3.941889331,0.267194503,0,0,3.90108705,0.35376,13.59212,3.54872732,0.04842,0.148812174,0.773422506,17.99928,0.5073,111.5625,0,4644.35302,217.5785253,519.950673,40.65688,6.81146564,69.497354,24.2793968,20.85422,8.84624,0.53940779,0.04692,2.94762238,0.12498,0.070314157,5.335891027,65.07365264,112.7747781,22.32567089,20.71145215,2.85912,14400.39068,0.63842,0.6149,0.1409 +2037,3.576663525,0.294792708,0,0,3.812230195,0.33597,12.72494,3.45383819,0.04134,0.130373087,0.743672782,17.19976,0.42315,111.2369,0,4634.49684,213.3371095,518.8659084,38.434296,6.00863458,57.195208,22.7691926,19.12044,8.32918,0.496552145,0.04094,2.77866681,0.10906,0.063142752,5.33479721,65.10953556,112.1083009,21.64814147,20.69396826,2.82049,13757.72449,0.58459,0.591,0.1345 +2038,3.21143772,0.322390913,0,0,3.72337334,0.31818,11.85776,3.35894906,0.03426,0.111933999,0.713923058,16.40024,0.339,110.9113,0,4624.64066,209.0956936,517.7811439,36.211712,5.20580352,44.893062,21.2589884,17.38666,7.81212,0.4536965,0.03496,2.60971124,0.09314,0.055971346,5.333703393,65.14541848,111.4418238,20.97061206,20.67648436,2.78186,13115.0583,0.53076,0.5671,0.1281 +2039,2.846211914,0.349989118,0,0,3.634516485,0.30039,10.99058,3.26405993,0.02718,0.093494912,0.684173334,15.60072,0.25485,110.5857,0,4614.78448,204.8542778,516.6963793,33.989128,4.40297246,32.590916,19.7487842,15.65288,7.29506,0.410840855,0.02898,2.44075567,0.07722,0.04879994,5.332609576,65.18130141,110.7753467,20.29308264,20.65900047,2.74323,12472.39211,0.47693,0.5432,0.1217 +2040,2.480986108,0.377587323,0,0,3.54565963,0.2826,10.1234,3.1691708,0.0201,0.075055824,0.65442361,14.8012,0.1707,110.2601,0,4604.9283,200.6128619,515.6116147,31.766544,3.6001414,20.28877,18.23858,13.9191,6.778,0.36798521,0.023,2.2718001,0.0613,0.041628535,5.331515759,65.21718433,110.1088696,19.61555323,20.64151658,2.7046,11829.72593,0.4231,0.5193,0.1153 +2041,2.311083469,0.317585454,0,0,3.470846458,0.27091,9.65632,3.0823316,0.01853,0.0697235,0.633957487,14.28209,0.15651,110.04614,0,4595.90827,197.5712619,508.7014891,30.4061322,3.34120265,18.44822429,18.4835108,14.00241,6.8843,0.369580453,0.02188,2.31540641,0.05831,0.041358379,5.31223117,65.16868015,108.4058469,19.14743367,20.31657319,2.65612,11729.85903,0.39941,0.50294,0.11118 +2042,2.141180829,0.257583585,0,0,3.396033286,0.25922,9.18924,2.9954924,0.01696,0.064391176,0.613491364,13.76298,0.14232,109.83218,0,4586.88824,194.5296619,501.7913636,29.0457204,3.0822639,16.60767858,18.7284416,14.08572,6.9906,0.371175696,0.02076,2.35901272,0.05532,0.041088224,5.292946582,65.12017597,106.7028243,18.67931412,19.9916298,2.60764,11629.99213,0.37572,0.48658,0.10706 +2043,1.971278189,0.197581716,0,0,3.321220114,0.24753,8.72216,2.9086532,0.01539,0.059058851,0.593025241,13.24387,0.12813,109.61822,0,4577.86821,191.4880619,494.881238,27.6853086,2.82332515,14.76713287,18.9733724,14.16903,7.0969,0.372770939,0.01964,2.40261903,0.05233,0.040818068,5.273661993,65.07167179,104.9998017,18.21119457,19.66668642,2.55916,11530.12523,0.35203,0.47022,0.10294 +2044,1.801375549,0.137579847,0,0,3.246406942,0.23584,8.25508,2.821814,0.01382,0.053726527,0.572559118,12.72476,0.11394,109.40426,0,4568.84818,188.4464619,487.9711124,26.3248968,2.5643864,12.92658716,19.2183032,14.25234,7.2032,0.374366182,0.01852,2.44622534,0.04934,0.040547912,5.254377404,65.02316761,103.2967791,17.74307501,19.34174303,2.51068,11430.25833,0.32834,0.45386,0.09882 +2045,1.631472909,0.077577978,0,0,3.171593769,0.22415,7.788,2.7349748,0.01225,0.048394203,0.552092995,12.20565,0.09975,109.1903,0,4559.82815,185.4048619,481.0609868,24.964485,2.30544765,11.08604145,19.463234,14.33565,7.3095,0.375961425,0.0174,2.48983165,0.04635,0.040277757,5.235092815,64.97466343,101.5937564,17.27495546,19.01679964,2.4622,11330.39143,0.30465,0.4375,0.0947 +2046,1.461570269,0.017576109,0,0,3.096780597,0.21246,7.32092,2.6481356,0.01068,0.043061879,0.531626872,11.68654,0.08556,108.97634,0,4550.80812,182.3632619,474.1508612,23.6040732,2.0465089,9.24549574,19.7081648,14.41896,7.4158,0.377556668,0.01628,2.53343796,0.04336,0.040007601,5.215808227,64.92615925,99.89073382,16.80683591,18.69185625,2.41372,11230.52453,0.28096,0.42114,0.09058 +2047,1.291667629,0,0,0.04242576,3.021967425,0.20077,6.85384,2.5612964,0.00911,0.037729555,0.511160749,11.16743,0.07137,108.76238,0,4541.78809,179.3216619,467.2407357,22.2436614,1.78757015,7.40495003,19.9530956,14.50227,7.5221,0.379151911,0.01516,2.57704427,0.04037,0.039737445,5.196523638,64.87765507,98.1877112,16.33871635,18.36691286,2.36524,11130.65763,0.25727,0.40478,0.08646 +2048,1.121764989,0,0,0.102427629,2.947154253,0.18908,6.38676,2.4744572,0.00754,0.03239723,0.490694626,10.64832,0.05718,108.54842,0,4532.76806,176.2800619,460.3306101,20.8832496,1.5286314,5.56440432,20.1980264,14.58558,7.6284,0.380747154,0.01404,2.62065058,0.03738,0.039467289,5.177239049,64.82915089,96.48468857,15.8705968,18.04196947,2.31676,11030.79073,0.23358,0.38842,0.08234 +2049,0.951862349,0,0,0.162429498,2.87234108,0.17739,5.91968,2.387618,0.00597,0.027064906,0.470228503,10.12921,0.04299,108.33446,0,4523.74803,173.2384619,453.4204845,19.5228378,1.26969265,3.72385861,20.4429572,14.66889,7.7347,0.382342397,0.01292,2.66425689,0.03439,0.039197134,5.15795446,64.78064671,94.78166595,15.40247725,17.71702608,2.26828,10930.92383,0.20989,0.37206,0.07822 +2050,0.781959709,0,0,0.222431367,2.797527908,0.1657,5.4526,2.3007788,0.0044,0.021732582,0.44976238,9.6101,0.0288,108.1205,0,4514.728,170.1968619,446.5103589,18.162426,1.0107539,1.8833129,20.687888,14.7522,7.841,0.38393764,0.0118,2.7078632,0.0314,0.038926978,5.138669871,64.73214252,93.07864333,14.93435769,17.39208269,2.2198,10831.05693,0.1862,0.3557,0.0741 +2051,0.702795976,0,0,0.240863276,2.769658553,0.15926,5.20103,2.25611921,0.00406,0.020186656,0.435696317,9.27305,0.02641,108.00263,0,4510.08918,168.9330654,443.4129189,17.3846094,0.938056143,1.712466056,20.8506632,14.79238,7.90757,0.381718694,0.01125,2.74131772,0.02994,0.038656822,5.130270036,64.6691932,92.15430194,14.79499158,17.27486599,2.19113,10783.06111,0.17577,0.34449,0.07145 +2052,0.623632243,0,0,0.259295185,2.741789198,0.15282,4.94946,2.21145962,0.00372,0.01864073,0.421630254,8.936,0.02402,107.88476,0,4505.45036,167.669269,440.3154788,16.6067928,0.865358386,1.541619212,21.0134384,14.83256,7.97414,0.379499748,0.0107,2.77477224,0.02848,0.038386667,5.1218702,64.60624388,91.22996055,14.65562546,17.15764929,2.16246,10735.0653,0.16534,0.33328,0.0688 +2053,0.54446851,0,0,0.277727094,2.713919842,0.14638,4.69789,2.16680003,0.00338,0.017094804,0.407564191,8.59895,0.02163,107.76689,0,4500.81154,166.4054725,437.2180388,15.8289762,0.792660629,1.370772368,21.1762136,14.87274,8.04071,0.377280802,0.01015,2.80822676,0.02702,0.038116511,5.113470364,64.54329456,90.30561915,14.51625934,17.04043259,2.13379,10687.06948,0.15491,0.32207,0.06615 +2054,0.465304778,0,0,0.296159003,2.686050487,0.13994,4.44632,2.12214044,0.00304,0.015548878,0.393498128,8.2619,0.01924,107.64902,0,4496.17272,165.141676,434.1205987,15.0511596,0.719962872,1.199925524,21.3389888,14.91292,8.10728,0.375061856,0.0096,2.84168128,0.02556,0.037846355,5.105070528,64.48034524,89.38127776,14.37689323,16.92321589,2.10512,10639.07366,0.14448,0.31086,0.0635 +2055,0.386141045,0,0,0.314590912,2.658181132,0.1335,4.19475,2.07748085,0.0027,0.014002952,0.379432065,7.92485,0.01685,107.53115,0,4491.5339,163.8778796,431.0231586,14.273343,0.647265115,1.02907868,21.501764,14.9531,8.17385,0.37284291,0.00905,2.8751358,0.0241,0.0375762,5.096670692,64.41739592,88.45693637,14.23752711,16.80599919,2.07645,10591.07784,0.13405,0.29965,0.06085 +2056,0.306977312,0,0,0.33302282,2.630311776,0.12706,3.94318,2.03282126,0.00236,0.012457026,0.365366002,7.5878,0.01446,107.41328,0,4486.89508,162.6140831,427.9257186,13.4955264,0.574567358,0.858231836,21.6645392,14.99328,8.24042,0.370623964,0.0085,2.90859032,0.02264,0.037306044,5.088270856,64.3544466,87.53259498,14.098161,16.68878249,2.04778,10543.08202,0.12362,0.28844,0.0582 +2057,0.227813579,0,0,0.351454729,2.602442421,0.12062,3.69161,1.98816167,0.00202,0.0109111,0.351299939,7.25075,0.01207,107.29541,0,4482.25626,161.3502866,424.8282785,12.7177098,0.501869601,0.687384992,21.8273144,15.03346,8.30699,0.368405018,0.00795,2.94204484,0.02118,0.037035888,5.079871021,64.29149728,86.60825359,13.95879488,16.57156578,2.01911,10495.08621,0.11319,0.27723,0.05555 +2058,0.148649846,0,0,0.369886638,2.574573066,0.11418,3.44004,1.94350208,0.00168,0.009365174,0.337233876,6.9137,0.00968,107.17754,0,4477.61744,160.0864902,421.7308385,11.9398932,0.429171844,0.516538148,21.9900896,15.07364,8.37356,0.366186072,0.0074,2.97549936,0.01972,0.036765732,5.071471185,64.22854796,85.6839122,13.81942876,16.45434908,1.99044,10447.09039,0.10276,0.26602,0.0529 +2059,0.069486113,0,0,0.388318547,2.546703711,0.10774,3.18847,1.89884249,0.00134,0.007819249,0.323167813,6.57665,0.00729,107.05967,0,4472.97862,158.8226937,418.6333984,11.1620766,0.356474087,0.345691304,22.1528648,15.11382,8.44013,0.363967126,0.00685,3.00895388,0.01826,0.036495577,5.063071349,64.16559864,84.75957081,13.68006265,16.33713238,1.96177,10399.09457,0.09233,0.25481,0.05025 +2060,0,0,0.00967762,0.406750456,2.518834355,0.1013,2.9369,1.8541829,0.001,0.006273323,0.30910175,6.2396,0.0049,106.9418,0,4468.3398,157.5588972,415.5359583,10.38426,0.28377633,0.17484446,22.31564,15.154,8.5067,0.36174818,0.0063,3.0424084,0.0168,0.036225421,5.054671513,64.10264931,83.83522942,13.54069653,16.21991568,1.9331,10351.09875,0.0819,0.2436,0.0476 +2061,0,0,0.08088151,0.416076926,2.503980586,0.09776,2.80139,1.83071312,9.20E-04,0.005825228,0.299431331,6.02076,0.00449,106.87701,0,4465.90198,156.4489779,413.6047311,9.93955833,0.263361767,0.158985329,22.4885729,15.2452,8.58795,0.36010496,0.006,3.07806373,0.016,0.036102623,5.055724248,64.07984602,82.97654152,13.48302973,16.15481901,1.9059,10237.74341,0.07732,0.23592,0.0459 +2062,0,0,0.152085401,0.425403397,2.489126817,0.09422,2.66588,1.80724334,8.40E-04,0.005377134,0.289760912,5.80192,0.00408,106.81222,0,4463.46416,155.3390585,411.6735038,9.49485666,0.242947203,0.143126197,22.6615058,15.3364,8.6692,0.35846174,0.0057,3.11371906,0.0152,0.035979825,5.056776983,64.05704273,82.11785362,13.42536294,16.08972235,1.8787,10124.38807,0.07274,0.22824,0.0442 +2063,0,0,0.223289292,0.434729867,2.474273047,0.09068,2.53037,1.78377356,7.60E-04,0.004929039,0.280090493,5.58308,0.00367,106.74743,0,4461.02634,154.2291391,409.7422766,9.05015499,0.22253264,0.127267066,22.8344387,15.4276,8.75045,0.35681852,0.0054,3.14937439,0.0144,0.035857027,5.057829718,64.03423944,81.25916572,13.36769614,16.02462569,1.8515,10011.03273,0.06816,0.22056,0.0425 +2064,0,0,0.294493182,0.444056337,2.459419278,0.08714,2.39486,1.76030378,6.80E-04,0.004480945,0.270420074,5.36424,0.00326,106.68264,0,4458.58852,153.1192197,407.8110493,8.60545332,0.202118076,0.111407935,23.0073716,15.5188,8.8317,0.3551753,0.0051,3.18502972,0.0136,0.035734229,5.058882452,64.01143615,80.40047782,13.31002934,15.95952902,1.8243,9897.677396,0.06358,0.21288,0.0408 +2065,0,0,0.365697073,0.453382808,2.444565509,0.0836,2.25935,1.736834,6.00E-04,0.00403285,0.260749655,5.1454,0.00285,106.61785,0,4456.1507,152.0093004,405.8798221,8.16075165,0.181703513,0.095548804,23.1803045,15.61,8.91295,0.35353208,0.0048,3.22068505,0.0128,0.035611431,5.059935187,63.98863286,79.54178992,13.25236254,15.89443236,1.7971,9784.322057,0.059,0.2052,0.0391 +2066,0,0,0.436900964,0.462709278,2.42971174,0.08006,2.12384,1.71336422,5.20E-04,0.003584756,0.251079236,4.92656,0.00244,106.55306,0,4453.71288,150.899381,403.9485948,7.71604998,0.16128895,0.079689672,23.3532374,15.7012,8.9942,0.35188886,0.0045,3.25634038,0.012,0.035488633,5.060987922,63.96582957,78.68310203,13.19469575,15.82933569,1.7699,9670.966718,0.05442,0.19752,0.0374 +2067,0,0,0.508104854,0.472035748,2.41485797,0.07652,1.98833,1.68989444,4.40E-04,0.003136661,0.241408817,4.70772,0.00203,106.48827,0,4451.27506,149.7894616,402.0173675,7.27134831,0.140874386,0.063830541,23.5261703,15.7924,9.07545,0.35024564,0.0042,3.29199571,0.0112,0.035365835,5.062040657,63.94302627,77.82441413,13.13702895,15.76423903,1.7427,9557.611379,0.04984,0.18984,0.0357 +2068,0,0,0.579308745,0.481362219,2.400004201,0.07298,1.85282,1.66642466,3.60E-04,0.002688567,0.231738398,4.48888,0.00162,106.42348,0,4448.83724,148.6795423,400.0861403,6.82664664,0.120459823,0.04797141,23.6991032,15.8836,9.1567,0.34860242,0.0039,3.32765104,0.0104,0.035243037,5.063093392,63.92022298,76.96572623,13.07936215,15.69914236,1.7155,9444.25604,0.04526,0.18216,0.034 +2069,0,0,0.650512636,0.490688689,2.385150432,0.06944,1.71731,1.64295488,2.80E-04,0.002240472,0.222067979,4.27004,0.00121,106.35869,0,4446.39942,147.5696229,398.154913,6.38194497,0.100045259,0.032112278,23.8720361,15.9748,9.23795,0.3469592,0.0036,3.36330637,0.0096,0.035120239,5.064146126,63.89741969,76.10703833,13.02169535,15.6340457,1.6883,9330.900701,0.04068,0.17448,0.0323 +2070,0,0,0.721716526,0.50001516,2.370296662,0.0659,1.5818,1.6194851,2.00E-04,0.001792378,0.21239756,4.0512,8.00E-04,106.2939,0,4443.9616,146.4597035,396.2236858,5.9372433,0.079630696,0.016253147,24.044969,16.066,9.3192,0.34531598,0.0033,3.3989617,0.0088,0.034997441,5.065198861,63.8746164,75.24835043,12.96402856,15.56894903,1.6611,9217.545362,0.0361,0.1668,0.0306 +2071,0,0,0.791088843,0.507920887,2.357638554,0.06381,1.50882,1.60008528,1.80E-04,0.00165795,0.205751345,3.90912,7.30E-04,106.25564,0,4441.94653,145.0384729,394.0068208,5.68298413,0.073907751,0.014775588,24.1927635,16.20012,9.38695,0.344260481,0.00314,3.43151,0.00837,0.034985161,5.066520971,63.84864504,74.36779354,12.89475135,15.46525571,1.63254,9072.206772,0.03408,0.16155,0.02951 +2072,0,0,0.860461161,0.515826614,2.344980446,0.06172,1.43584,1.58068546,1.60E-04,0.001523521,0.19910513,3.76704,6.60E-04,106.21738,0,4439.93146,143.6172423,391.7899558,5.42872496,0.068184805,0.013298029,24.340558,16.33424,9.4547,0.343204982,0.00298,3.4640583,0.00794,0.034972881,5.06784308,63.82267367,73.48723665,12.82547415,15.36156238,1.60398,8926.868183,0.03206,0.1563,0.02842 +2073,0,0,0.929833478,0.523732341,2.332322338,0.05963,1.36286,1.56128564,1.40E-04,0.001389093,0.192458915,3.62496,5.90E-04,106.17912,0,4437.91639,142.1960116,389.5730908,5.17446579,0.06246186,0.011820471,24.4883525,16.46836,9.52245,0.342149483,0.00282,3.4966066,0.00751,0.034960602,5.06916519,63.79670231,72.60667976,12.75619694,15.25786905,1.57542,8781.529594,0.03004,0.15105,0.02733 +2074,0,0,0.999205795,0.531638068,2.31966423,0.05754,1.28988,1.54188582,1.20E-04,0.001254665,0.1858127,3.48288,5.20E-04,106.14086,0,4435.90132,140.774781,387.3562259,4.92020662,0.056738915,0.010342912,24.636147,16.60248,9.5902,0.341093984,0.00266,3.5291549,0.00708,0.034948322,5.070487299,63.77073094,71.72612287,12.68691973,15.15417572,1.54686,8636.191005,0.02802,0.1458,0.02624 +2075,0,0,1.068578112,0.539543795,2.307006121,0.05545,1.2169,1.522486,1.00E-04,0.001120236,0.179166485,3.3408,4.50E-04,106.1026,0,4433.88625,139.3535504,385.1393609,4.66594745,0.05101597,0.008865353,24.7839415,16.7366,9.65795,0.340038485,0.0025,3.5617032,0.00665,0.034936042,5.071809409,63.74475958,70.84556598,12.61764253,15.05048239,1.5183,8490.852416,0.026,0.14055,0.02515 +2076,0,0,1.13795043,0.547449522,2.294348013,0.05336,1.14392,1.50308618,8.00E-05,9.86E-04,0.17252027,3.19872,3.80E-04,106.06434,0,4431.87118,137.9323198,382.9224959,4.41168828,0.045293024,0.007387794,24.931736,16.87072,9.7257,0.338982986,0.00234,3.5942515,0.00622,0.034923762,5.073131518,63.71878821,69.9650091,12.54836532,14.94678907,1.48974,8345.513827,0.02398,0.1353,0.02406 +2077,0,0,1.207322747,0.555355249,2.281689905,0.05127,1.07094,1.48368636,6.00E-05,8.51E-04,0.165874055,3.05664,3.10E-04,106.02608,0,4429.85611,136.5110892,380.7056309,4.15742911,0.039570079,0.005910235,25.0795305,17.00484,9.79345,0.337927487,0.00218,3.6267998,0.00579,0.034911482,5.074453628,63.69281685,69.08445221,12.47908812,14.84309574,1.46118,8200.175238,0.02196,0.13005,0.02297 +2078,0,0,1.276695064,0.563260976,2.269031797,0.04918,0.99796,1.46428654,4.00E-05,7.17E-04,0.15922784,2.91456,2.40E-04,105.98782,0,4427.84104,135.0898585,378.488766,3.90316994,0.033847134,0.004432676,25.227325,17.13896,9.8612,0.336871988,0.00202,3.6593481,0.00536,0.034899203,5.075775737,63.66684548,68.20389532,12.40981091,14.73940241,1.43262,8054.836649,0.01994,0.1248,0.02188 +2079,0,0,1.346067381,0.571166703,2.256373688,0.04709,0.92498,1.44488672,2.00E-05,5.83E-04,0.152581625,2.77248,1.70E-04,105.94956,0,4425.82597,133.6686279,376.271901,3.64891077,0.028124188,0.002955118,25.3751195,17.27308,9.92895,0.335816489,0.00186,3.6918964,0.00493,0.034886923,5.077097847,63.64087412,67.32333843,12.34053371,14.63570908,1.40406,7909.49806,0.01792,0.11955,0.02079 +2080,0,0,1.415439698,0.57907243,2.24371558,0.045,0.852,1.4254869,0,4.48E-04,0.14593541,2.6304,1.00E-04,105.9113,0,4423.8109,132.2473973,374.055036,3.3946516,0.022401243,0.001477559,25.522914,17.4072,9.9967,0.33476099,0.0017,3.7244447,0.0045,0.034874643,5.078419957,63.61490275,66.44278154,12.2712565,14.53201576,1.3755,7764.159471,0.0159,0.1143,0.0197 +2081,0,0,1.501544315,0.581828176,2.23708432,0.04323,0.81269,1.40044713,0,4.26E-04,0.141363939,2.53814,9.00E-05,105.87891,0,4421.21001,131.0990882,372.9234536,3.24927085,0.020790643,0.00134622,25.5794786,17.52036,10.01798,0.333261703,0.00161,3.74492089,0.00426,0.034837804,5.092792441,63.6052374,66.07687072,12.21521751,14.47550487,1.35195,7619.826502,0.01501,0.1107,0.01899 +2082,0,0,1.587648931,0.584583922,2.230453061,0.04146,0.77338,1.37540736,0,4.03E-04,0.136792468,2.44588,8.00E-05,105.84652,0,4418.60912,129.9507791,371.7918711,3.1038901,0.019180042,0.001214882,25.6360432,17.63352,10.03926,0.331762416,0.00152,3.76539708,0.00402,0.034800964,5.107164926,63.59557205,65.7109599,12.15917851,14.41899399,1.3284,7475.493533,0.01412,0.1071,0.01828 +2083,0,0,1.673753547,0.587339668,2.223821801,0.03969,0.73407,1.35036759,0,3.81E-04,0.132220997,2.35362,7.00E-05,105.81413,0,4416.00823,128.8024699,370.6602887,2.95850935,0.017569442,0.001083543,25.6926078,17.74668,10.06054,0.330263129,0.00143,3.78587327,0.00378,0.034764125,5.121537411,63.5859067,65.34504908,12.10313952,14.3624831,1.30485,7331.160565,0.01323,0.1035,0.01757 +2084,0,0,1.759858163,0.590095414,2.217190541,0.03792,0.69476,1.32532782,0,3.58E-04,0.127649526,2.26136,6.00E-05,105.78174,0,4413.40734,127.6541608,369.5287063,2.8131286,0.015958842,9.52E-04,25.7491724,17.85984,10.08182,0.328763842,0.00134,3.80634946,0.00354,0.034727285,5.135909896,63.57624135,64.97913826,12.04710052,14.30597221,1.2813,7186.827596,0.01234,0.0999,0.01686 +2085,0,0,1.845962779,0.59285116,2.210559282,0.03615,0.65545,1.30028805,0,3.36E-04,0.123078055,2.1691,5.00E-05,105.74935,0,4410.80645,126.5058517,368.3971238,2.66774785,0.014348241,8.21E-04,25.805737,17.973,10.1031,0.327264555,0.00125,3.82682565,0.0033,0.034690446,5.150282381,63.56657599,64.61322744,11.99106153,14.24946133,1.25775,7042.494627,0.01145,0.0963,0.01615 +2086,0,0,1.932067395,0.595606906,2.203928022,0.03438,0.61614,1.27524828,0,3.14E-04,0.118506584,2.07684,4.00E-05,105.71696,0,4408.20556,125.3575426,367.2655414,2.5223671,0.012737641,6.90E-04,25.8623016,18.08616,10.12438,0.325765268,0.00116,3.84730184,0.00306,0.034653607,5.164654866,63.55691064,64.24731662,11.93502253,14.19295044,1.2342,6898.161659,0.01056,0.0927,0.01544 +2087,0,0,2.018172011,0.598362652,2.197296762,0.03261,0.57683,1.25020851,0,2.91E-04,0.113935113,1.98458,3.00E-05,105.68457,0,4405.60467,124.2092335,366.133959,2.37698635,0.011127041,5.58E-04,25.9188662,18.19932,10.14566,0.324265981,0.00107,3.86777803,0.00282,0.034616767,5.179027351,63.54724529,63.8814058,11.87898354,14.13643956,1.21065,6753.82869,0.00967,0.0891,0.01473 +2088,0,0,2.104276628,0.601118399,2.190665503,0.03084,0.53752,1.22516874,0,2.69E-04,0.109363642,1.89232,2.00E-05,105.65218,0,4403.00378,123.0609243,365.0023765,2.2316056,0.00951644,4.27E-04,25.9754308,18.31248,10.16694,0.322766694,9.80E-04,3.88825422,0.00258,0.034579928,5.193399836,63.53757994,63.51549498,11.82294454,14.07992867,1.1871,6609.495721,0.00878,0.0855,0.01402 +2089,0,0,2.190381244,0.603874145,2.184034243,0.02907,0.49821,1.20012897,0,2.46E-04,0.104792171,1.80006,1.00E-05,105.61979,0,4400.40289,121.9126152,363.8707941,2.08622485,0.00790584,2.96E-04,26.0319954,18.42564,10.18822,0.321267407,8.90E-04,3.90873041,0.00234,0.034543088,5.207772321,63.52791458,63.14958416,11.76690555,14.02341779,1.16355,6465.162753,0.00789,0.0819,0.01331 +2090,0,0,2.27648586,0.606629891,2.177402983,0.0273,0.4589,1.1750892,0,2.24E-04,0.1002207,1.7078,0,105.5874,0,4397.802,120.7643061,362.7392117,1.9408441,0.00629524,1.64E-04,26.08856,18.5388,10.2095,0.31976812,8.00E-04,3.9292066,0.0021,0.034506249,5.222144806,63.51824923,62.78367333,11.71086656,13.9669069,1.14,6320.829784,0.007,0.0783,0.0126 +2091,0,0,2.362891651,0.610954444,2.167120797,0.02553,0.43762,1.150049429,0,2.02E-04,0.097055836,1.64769,0.0012,105.555,0,4395.20111,119.8600001,361.0794621,1.86679494,0.007758679,0.001050708,25.9699291,18.52154,10.16304,0.316577635,7.20E-04,3.9201768,0.00189,0.034272933,5.230694992,63.4846377,62.35687968,11.67746978,13.86418626,1.11568,6162.555262,0.0071,0.07583,0.01215 +2092,0,0,2.449297441,0.615278997,2.15683861,0.02376,0.41634,1.125009658,0,1.79E-04,0.093890972,1.58758,0.0024,105.5226,0,4392.60022,118.9556941,359.4197125,1.79274578,0.009222117,0.001937244,25.8512982,18.50428,10.11658,0.31338715,6.40E-04,3.911147,0.00168,0.034039616,5.239245179,63.45102617,61.93008603,11.64407299,13.76146563,1.09136,6004.280739,0.0072,0.07336,0.0117 +2093,0,0,2.535703232,0.61960355,2.146556424,0.02199,0.39506,1.099969887,0,1.57E-04,0.090726108,1.52747,0.0036,105.4902,0,4389.99933,118.0513881,357.7599629,1.71869662,0.010685556,0.002823779,25.7326673,18.48702,10.07012,0.310196665,5.60E-04,3.9021172,0.00147,0.0338063,5.247795366,63.41741464,61.50329237,11.61067621,13.65874499,1.06704,5846.006217,0.0073,0.07089,0.01125 +2094,0,0,2.622109023,0.623928103,2.136274237,0.02022,0.37378,1.074930116,0,1.34E-04,0.087561244,1.46736,0.0048,105.4578,0,4387.39844,117.1470821,356.1002134,1.64464746,0.012148995,0.003710314,25.6140364,18.46976,10.02366,0.30700618,4.80E-04,3.8930874,0.00126,0.033572984,5.256345552,63.38380311,61.07649872,11.57727943,13.55602435,1.04272,5687.731695,0.0074,0.06842,0.0108 +2095,0,0,2.708514814,0.628252655,2.125992051,0.01845,0.3525,1.049890345,0,1.12E-04,0.08439638,1.40725,0.006,105.4254,0,4384.79755,116.2427761,354.4404638,1.5705983,0.013612434,0.00459685,25.4954055,18.4525,9.9772,0.303815695,4.00E-04,3.8840576,0.00105,0.033339668,5.264895739,63.35019158,60.64970507,11.54388265,13.45330371,1.0184,5529.457172,0.0075,0.06595,0.01035 +2096,0,0,2.794920604,0.632577208,2.115709864,0.01668,0.33122,1.024850574,0,8.96E-05,0.081231515,1.34714,0.0072,105.393,0,4382.19666,115.3384701,352.7807142,1.49654914,0.015075873,0.005483385,25.3767746,18.43524,9.93074,0.30062521,3.20E-04,3.8750278,8.40E-04,0.033106351,5.273445925,63.31658005,60.22291141,11.51048587,13.35058307,0.99408,5371.18265,0.0076,0.06348,0.0099 +2097,0,0,2.881326395,0.636901761,2.105427678,0.01491,0.30994,0.999810803,0,6.72E-05,0.078066651,1.28703,0.0084,105.3606,0,4379.59577,114.4341641,351.1209646,1.42249998,0.016539312,0.00636992,25.2581437,18.41798,9.88428,0.297434725,2.40E-04,3.865998,6.30E-04,0.032873035,5.281996112,63.28296852,59.79611776,11.47708909,13.24786243,0.96976,5212.908128,0.0077,0.06101,0.00945 +2098,0,0,2.967732186,0.641226314,2.095145491,0.01314,0.28866,0.974771032,0,4.48E-05,0.074901787,1.22692,0.0096,105.3282,0,4376.99488,113.5298581,349.461215,1.34845082,0.01800275,0.007256455,25.1395128,18.40072,9.83782,0.29424424,1.60E-04,3.8569682,4.20E-04,0.032639719,5.290546299,63.24935699,59.36932411,11.44369231,13.14514179,0.94544,5054.633605,0.0078,0.05854,0.009 +2099,0,0,3.054137976,0.645550867,2.084863305,0.01137,0.26738,0.949731261,0,2.24E-05,0.071736923,1.16681,0.0108,105.2958,0,4374.39399,112.6255521,347.8014654,1.27440166,0.019466189,0.008142991,25.0208819,18.38346,9.79136,0.291053755,8.00E-05,3.8479384,2.10E-04,0.032406402,5.299096485,63.21574547,58.94253045,11.41029553,13.04242115,0.92112,4896.359083,0.0079,0.05607,0.00855 +2100,0,0,3.140543767,0.64987542,2.074581118,0.0096,0.2461,0.92469149,0,0,0.068572059,1.1067,0.012,105.2634,0,4371.7931,111.7212461,346.1417159,1.2003525,0.020929628,0.009029526,24.902251,18.3662,9.7449,0.28786327,0,3.8389086,0,0.032173086,5.307646672,63.18213394,58.5157368,11.37689875,12.93970051,0.8968,4738.084561,0.008,0.0536,0.0081 +2101,0,0,3.140543767,0.636877912,2.068194087,0.009536,0.244459333,0.91852688,0,0,0.068114912,1.099322,0.01192,104.561644,0,4342.647813,111.4227157,345.1809047,1.19235015,0.020790097,0.008969329,24.73623599,18.24375867,9.679934,0.285944182,0,3.813315876,0,0.031958599,5.301285962,63.08081105,58.38504312,11.33724893,12.9085519,0.890821333,4710.948463,0.007946667,0.053242667,0.008046 +2102,0,0,3.140543767,0.623880403,2.061807056,0.009472,0.242818667,0.91236227,0,0,0.067657765,1.091944,0.01184,103.859888,0,4313.502525,111.1241853,344.2200934,1.1843478,0.020650566,0.008909132,24.57022099,18.12131733,9.614968,0.284025093,0,3.787723152,0,0.031744112,5.294925251,62.97948816,58.25434944,11.29759911,12.87740329,0.884842667,4683.812366,0.007893333,0.052885333,0.007992 +2103,0,0,3.140543767,0.610882895,2.055420025,0.009408,0.241178,0.90619766,0,0,0.067200618,1.084566,0.01176,103.158132,0,4284.357238,110.8256549,343.2592822,1.17634545,0.020511035,0.008848935,24.40420598,17.998876,9.550002,0.282106005,0,3.762130428,0,0.031529624,5.288564541,62.87816527,58.12365577,11.25794929,12.84625468,0.878864,4656.676268,0.00784,0.052528,0.007938 +2104,0,0,3.140543767,0.597885387,2.049032995,0.009344,0.239537333,0.90003305,0,0,0.066743471,1.077188,0.01168,102.456376,0,4255.211951,110.5271244,342.298471,1.1683431,0.020371505,0.008788739,24.23819097,17.87643467,9.485036,0.280186916,0,3.736537704,0,0.031315137,5.282203831,62.77684239,57.99296209,11.21829947,12.81510607,0.872885333,4629.540171,0.007786667,0.052170667,0.007884 +2105,0,0,3.140543767,0.584887878,2.042645964,0.00928,0.237896667,0.89386844,0,0,0.066286324,1.06981,0.0116,101.75462,0,4226.066663,110.228594,341.3376598,1.16034075,0.020231974,0.008728542,24.07217597,17.75399333,9.42007,0.278267828,0,3.71094498,0,0.03110065,5.275843121,62.6755195,57.86226841,11.17864965,12.78395746,0.866906667,4602.404073,0.007733333,0.051813333,0.00783 +2106,0,0,3.140543767,0.57189037,2.036258933,0.009216,0.236256,0.88770383,0,0,0.065829177,1.062432,0.01152,101.052864,0,4196.921376,109.9300636,340.3768486,1.1523384,0.020092443,0.008668345,23.90616096,17.631552,9.355104,0.276348739,0,3.685352256,0,0.030886163,5.26948241,62.57419661,57.73157474,11.13899983,12.75280885,0.860928,4575.267976,0.00768,0.051456,0.007776 +2107,0,0,3.140543767,0.558892861,2.029871902,0.009152,0.234615333,0.88153922,0,0,0.06537203,1.055054,0.01144,100.351108,0,4167.776089,109.6315332,339.4160374,1.14433605,0.019952912,0.008608148,23.74014595,17.50911067,9.290138,0.274429651,0,3.659759532,0,0.030671675,5.2631217,62.47287373,57.60088106,11.09935001,12.72166024,0.854949333,4548.131878,0.007626667,0.051098667,0.007722 +2108,0,0,3.140543767,0.545895353,2.023484871,0.009088,0.232974667,0.875374611,0,0,0.064914883,1.047676,0.01136,99.649352,0,4138.630801,109.3330028,338.4552261,1.1363337,0.019813381,0.008547951,23.57413095,17.38666933,9.225172,0.272510562,0,3.634166808,0,0.030457188,5.25676099,62.37155084,57.47018738,11.05970019,12.69051163,0.848970667,4520.995781,0.007573333,0.050741333,0.007668 +2109,0,0,3.140543767,0.532897845,2.01709784,0.009024,0.231334,0.869210001,0,0,0.064457735,1.040298,0.01128,98.947596,0,4109.485514,109.0344724,337.4944149,1.12833135,0.01967385,0.008487754,23.40811594,17.264228,9.160206,0.270591474,0,3.608574084,0,0.030242701,5.250400279,62.27022795,57.3394937,11.02005037,12.65936302,0.842992,4493.859683,0.00752,0.050384,0.007614 +2110,0,0,3.140543767,0.519900336,2.010710809,0.00896,0.229693333,0.863045391,0,0,0.064000588,1.03292,0.0112,98.24584,0,4080.340227,108.735942,336.5336037,1.120329,0.019534319,0.008427558,23.24210093,17.14178667,9.09524,0.268672385,0,3.58298136,0,0.030028214,5.244039569,62.16890506,57.20880003,10.98040055,12.62821441,0.837013333,4466.723586,0.007466667,0.050026667,0.00756 +2111,0,0,3.140543767,0.506902828,2.004323778,0.008896,0.228052667,0.856880781,0,0,0.063543441,1.025542,0.01112,97.544084,0,4051.194939,108.4374116,335.5727925,1.11232665,0.019394789,0.008367361,23.07608593,17.01934533,9.030274,0.266753297,0,3.557388636,0,0.029813726,5.237678859,62.06758218,57.07810635,10.94075073,12.5970658,0.831034667,4439.587488,0.007413333,0.049669333,0.007506 +2112,0,0,3.140543767,0.493905319,1.997936747,0.008832,0.226412,0.850716171,0,0,0.063086294,1.018164,0.01104,96.842328,0,4022.049652,108.1388811,334.6119813,1.1043243,0.019255258,0.008307164,22.91007092,16.896904,8.965308,0.264834208,0,3.531795912,0,0.029599239,5.231318149,61.96625929,56.94741267,10.90110091,12.56591719,0.825056,4412.451391,0.00736,0.049312,0.007452 +2113,0,0,3.140543767,0.480907811,1.991549717,0.008768,0.224771333,0.844551561,0,0,0.062629147,1.010786,0.01096,96.140572,0,3992.904365,107.8403507,333.6511701,1.09632195,0.019115727,0.008246967,22.74405591,16.77446267,8.900342,0.26291512,0,3.506203188,0,0.029384752,5.224957438,61.8649364,56.816719,10.86145109,12.53476858,0.819077333,4385.315293,0.007306667,0.048954667,0.007398 +2114,0,0,3.140543767,0.467910303,1.985162686,0.008704,0.223130667,0.838386951,0,0,0.062172,1.003408,0.01088,95.438816,0,3963.759077,107.5418203,332.6903588,1.0883196,0.018976196,0.00818677,22.57804091,16.65202133,8.835376,0.260996031,0,3.480610464,0,0.029170265,5.218596728,61.76361352,56.68602532,10.82180127,12.50361997,0.813098667,4358.179196,0.007253333,0.048597333,0.007344 +2115,0,0,3.140543767,0.454912794,1.978775655,0.00864,0.22149,0.832222341,0,0,0.061714853,0.99603,0.0108,94.73706,0,3934.61379,107.2432899,331.7295476,1.08031725,0.018836665,0.008126573,22.4120259,16.52958,8.77041,0.259076943,0,3.45501774,0,0.028955777,5.212236018,61.66229063,56.55533164,10.78215145,12.47247136,0.80712,4331.043098,0.0072,0.04824,0.00729 +2116,0,0,3.140543767,0.441915286,1.972388624,0.008576,0.219849333,0.826057731,0,0,0.061257706,0.988652,0.01072,94.035304,0,3905.468503,106.9447595,330.7687364,1.0723149,0.018697134,0.008066377,22.24601089,16.40713867,8.705444,0.257157855,0,3.429425016,0,0.02874129,5.205875308,61.56096774,56.42463796,10.74250163,12.44132275,0.801141333,4303.907001,0.007146667,0.047882667,0.007236 +2117,0,0,3.140543767,0.428917777,1.966001593,0.008512,0.218208667,0.819893121,0,0,0.060800559,0.981274,0.01064,93.333548,0,3876.323215,106.6462291,329.8079252,1.06431255,0.018557603,0.00800618,22.07999589,16.28469733,8.640478,0.255238766,0,3.403832292,0,0.028526803,5.199514597,61.45964485,56.29394429,10.70285181,12.41017414,0.795162667,4276.770903,0.007093333,0.047525333,0.007182 +2118,0,0,3.140543767,0.415920269,1.959614562,0.008448,0.216568,0.813728511,0,0,0.060343412,0.973896,0.01056,92.631792,0,3847.177928,106.3476987,328.847114,1.0563102,0.018418073,0.007945983,21.91398088,16.162256,8.575512,0.253319678,0,3.378239568,0,0.028312316,5.193153887,61.35832197,56.16325061,10.66320199,12.37902553,0.789184,4249.634806,0.00704,0.047168,0.007128 +2119,0,0,3.140543767,0.402922761,1.953227531,0.008384,0.214927333,0.807563901,0,0,0.059886265,0.966518,0.01048,91.930036,0,3818.032641,106.0491683,327.8863028,1.04830785,0.018278542,0.007885786,21.74796587,16.03981467,8.510546,0.251400589,0,3.352646844,0,0.028097828,5.186793177,61.25699908,56.03255693,10.62355217,12.34787692,0.783205333,4222.498708,0.006986667,0.046810667,0.007074 +2120,0,0,3.140543767,0.389925252,1.9468405,0.00832,0.213286667,0.801399291,0,0,0.059429118,0.95914,0.0104,91.22828,0,3788.887353,105.7506378,326.9254915,1.0403055,0.018139011,0.007825589,21.58195087,15.91737333,8.44558,0.249481501,0,3.32705412,0,0.027883341,5.180432466,61.15567619,55.90186326,10.58390235,12.31672831,0.777226667,4195.362611,0.006933333,0.046453333,0.00702 +2121,0,0,3.140543767,0.376927744,1.940453469,0.008256,0.211646,0.795234681,0,0,0.058971971,0.951762,0.01032,90.526524,0,3759.742066,105.4521074,325.9646803,1.03230315,0.01799948,0.007765392,21.41593586,15.794932,8.380614,0.247562412,0,3.301461396,0,0.027668854,5.174071756,61.05435331,55.77116958,10.54425253,12.2855797,0.771248,4168.226513,0.00688,0.046096,0.006966 +2122,0,0,3.140543767,0.363930235,1.934066438,0.008192,0.210005333,0.789070071,0,0,0.058514824,0.944384,0.01024,89.824768,0,3730.596779,105.153577,325.0038691,1.0243008,0.017859949,0.007705196,21.24992085,15.67249067,8.315648,0.245643324,0,3.275868672,0,0.027454367,5.167711046,60.95303042,55.6404759,10.50460271,12.25443109,0.765269333,4141.090416,0.006826667,0.045738667,0.006912 +2123,0,0,3.140543767,0.350932727,1.927679408,0.008128,0.208364667,0.782905462,0,0,0.058057677,0.937006,0.01016,89.123012,0,3701.451491,104.8550466,324.0430579,1.01629845,0.017720418,0.007644999,21.08390585,15.55004933,8.250682,0.243724235,0,3.250275948,0,0.027239879,5.161350336,60.85170753,55.50978222,10.46495288,12.22328248,0.759290667,4113.954318,0.006773333,0.045381333,0.006858 +2124,0,0,3.140543767,0.337935219,1.921292377,0.008064,0.206724,0.776740852,0,0,0.05760053,0.929628,0.01008,88.421256,0,3672.306204,104.5565162,323.0822467,1.0082961,0.017580888,0.007584802,20.91789084,15.427608,8.185716,0.241805147,0,3.224683224,0,0.027025392,5.154989625,60.75038464,55.37908855,10.42530306,12.19213387,0.753312,4086.818221,0.00672,0.045024,0.006804 +2125,0,0,3.140543767,0.32493771,1.914905346,0.008,0.205083333,0.770576242,0,0,0.057143383,0.92225,0.01,87.7195,0,3643.160917,104.2579858,322.1214355,1.00029375,0.017441357,0.007524605,20.75187583,15.30516667,8.12075,0.239886058,0,3.1990905,0,0.026810905,5.148628915,60.64906176,55.24839487,10.38565324,12.16098526,0.747333333,4059.682123,0.006666667,0.044666667,0.00675 +2126,0,0,3.140543767,0.311940202,1.908518315,0.007936,0.203442667,0.764411632,0,0,0.056686235,0.914872,0.00992,87.017744,0,3614.015629,103.9594554,321.1606242,0.9922914,0.017301826,0.007464408,20.58586083,15.18272533,8.055784,0.23796697,0,3.173497776,0,0.026596418,5.142268205,60.54773887,55.11770119,10.34600342,12.12983665,0.741354667,4032.546026,0.006613333,0.044309333,0.006696 +2127,0,0,3.140543767,0.298942693,1.902131284,0.007872,0.201802,0.758247022,0,0,0.056229088,0.907494,0.00984,86.315988,0,3584.870342,103.660925,320.199813,0.98428905,0.017162295,0.007404211,20.41984582,15.060284,7.990818,0.236047881,0,3.147905052,0,0.026381931,5.135907495,60.44641598,54.98700752,10.3063536,12.09868804,0.735376,4005.409928,0.00656,0.043952,0.006642 +2128,0,0,3.140543767,0.285945185,1.895744253,0.007808,0.200161333,0.752082412,0,0,0.055771941,0.900116,0.00976,85.614232,0,3555.725055,103.3623945,319.2390018,0.9762867,0.017022764,0.007344014,20.25383081,14.93784267,7.925852,0.234128793,0,3.122312328,0,0.026167443,5.129546784,60.3450931,54.85631384,10.26670378,12.06753943,0.729397333,3978.273831,0.006506667,0.043594667,0.006588 +2129,0,0,3.140543767,0.272947676,1.889357222,0.007744,0.198520667,0.745917802,0,0,0.055314794,0.892738,0.00968,84.912476,0,3526.579767,103.0638641,318.2781906,0.96828435,0.016883233,0.007283818,20.08781581,14.81540133,7.860886,0.232209704,0,3.096719604,0,0.025952956,5.123186074,60.24377021,54.72562016,10.22705396,12.03639082,0.723418667,3951.137733,0.006453333,0.043237333,0.006534 +2130,0,0,3.140543767,0.259950168,1.882970191,0.00768,0.19688,0.739753192,0,0,0.054857647,0.88536,0.0096,84.21072,0,3497.43448,102.7653337,317.3173794,0.960282,0.016743702,0.007223621,19.9218008,14.69296,7.79592,0.230290616,0,3.07112688,0,0.025738469,5.116825364,60.14244732,54.59492648,10.18740414,12.00524221,0.71744,3924.001636,0.0064,0.04288,0.00648 +2131,0,0,3.140543767,0.24695266,1.87658316,0.007616,0.195239333,0.733588582,0,0,0.0544005,0.877982,0.00952,83.508964,0,3468.289193,102.4668033,316.3565682,0.95227965,0.016604172,0.007163424,19.75578579,14.57051867,7.730954,0.228371528,0,3.045534156,0,0.025523982,5.110464653,60.04112443,54.46423281,10.14775432,11.9740936,0.711461333,3896.865538,0.006346667,0.042522667,0.006426 +2132,0,0,3.140543767,0.233955151,1.87019613,0.007552,0.193598667,0.727423972,0,0,0.053943353,0.870604,0.00944,82.807208,0,3439.143905,102.1682729,315.3957569,0.9442773,0.016464641,0.007103227,19.58977079,14.44807733,7.665988,0.226452439,0,3.019941432,0,0.025309494,5.104103943,59.93980155,54.33353913,10.1081045,11.94294499,0.705482667,3869.729441,0.006293333,0.042165333,0.006372 +2133,0,0,3.140543767,0.220957643,1.863809099,0.007488,0.191958,0.721259362,0,0,0.053486206,0.863226,0.00936,82.105452,0,3409.998618,101.8697425,314.4349457,0.93627495,0.01632511,0.00704303,19.42375578,14.325636,7.601022,0.224533351,0,2.994348708,0,0.025095007,5.097743233,59.83847866,54.20284545,10.06845468,11.91179637,0.699504,3842.593343,0.00624,0.041808,0.006318 +2134,0,0,3.140543767,0.207960134,1.857422068,0.007424,0.190317333,0.715094752,0,0,0.053029059,0.855848,0.00928,81.403696,0,3380.853331,101.5712121,313.4741345,0.9282726,0.016185579,0.006982833,19.25774077,14.20319467,7.536056,0.222614262,0,2.968755984,0,0.02488052,5.091382523,59.73715577,54.07215178,10.02880486,11.88064776,0.693525333,3815.457246,0.006186667,0.041450667,0.006264 +2135,0,0,3.140543767,0.194962626,1.851035037,0.00736,0.188676667,0.708930142,0,0,0.052571912,0.84847,0.0092,80.70194,0,3351.708043,101.2726817,312.5133233,0.92027025,0.016046048,0.006922637,19.09172577,14.08075333,7.47109,0.220695174,0,2.94316326,0,0.024666033,5.085021812,59.63583289,53.9414581,9.989155043,11.84949915,0.687546667,3788.321148,0.006133333,0.041093333,0.00621 +2136,0,0,3.140543767,0.181965118,1.844648006,0.007296,0.187036,0.702765532,0,0,0.052114765,0.841092,0.00912,80.000184,0,3322.562756,100.9741512,311.5525121,0.9122679,0.015906517,0.00686244,18.92571076,13.958312,7.406124,0.218776085,0,2.917570536,0,0.024451545,5.078661102,59.53451,53.81076442,9.949505223,11.81835054,0.681568,3761.185051,0.00608,0.040736,0.006156 +2137,0,0,3.140543767,0.168967609,1.838260975,0.007232,0.185395333,0.696600922,0,0,0.051657618,0.833714,0.00904,79.298428,0,3293.417469,100.6756208,310.5917009,0.90426555,0.015766986,0.006802243,18.75969575,13.83587067,7.341158,0.216856997,0,2.891977812,0,0.024237058,5.072300392,59.43318711,53.68007074,9.909855402,11.78720193,0.675589333,3734.048954,0.006026667,0.040378667,0.006102 +2138,0,0,3.140543767,0.155970101,1.831873944,0.007168,0.183754667,0.690436313,0,0,0.051200471,0.826336,0.00896,78.596672,0,3264.272181,100.3770904,309.6308896,0.8962632,0.015627456,0.006742046,18.59368075,13.71342933,7.276192,0.214937908,0,2.866385088,0,0.024022571,5.065939682,59.33186422,53.54937707,9.870205582,11.75605332,0.669610667,3706.912856,0.005973333,0.040021333,0.006048 +2139,0,0,3.140543767,0.142972592,1.825486913,0.007104,0.182114,0.684271703,0,0,0.050743324,0.818958,0.00888,77.894916,0,3235.126894,100.07856,308.6700784,0.88826085,0.015487925,0.006681849,18.42766574,13.590988,7.211226,0.21301882,0,2.840792364,0,0.023808084,5.059578971,59.23054134,53.41868339,9.830555762,11.72490471,0.663632,3679.776759,0.00592,0.039664,0.005994 +2140,0,0,3.140543767,0.129975084,1.819099882,0.00704,0.180473333,0.678107093,0,0,0.050286177,0.81158,0.0088,77.19316,0,3205.981607,99.78002959,307.7092672,0.8802585,0.015348394,0.006621652,18.26165073,13.46854667,7.14626,0.211099731,0,2.81519964,0,0.023593596,5.053218261,59.12921845,53.28798971,9.790905942,11.6937561,0.657653333,3652.640661,0.005866667,0.039306667,0.00594 +2141,0,0,3.077732892,0.116977576,1.812712851,0.006976,0.178832667,0.671942483,0,0,0.04982903,0.804202,0.00872,76.491404,0,3176.836319,99.48149918,306.748456,0.87225615,0.015208863,0.006561456,18.09563573,13.34610533,7.081294,0.209180643,0,2.789606916,0,0.023379109,5.046857551,59.02789556,53.15729604,9.751256122,11.66260749,0.651674667,3625.504564,0.005813333,0.038949333,0.005886 +2142,0,0,3.014922016,0.103980067,1.806325821,0.006912,0.177192,0.665777873,0,0,0.049371882,0.796824,0.00864,75.789648,0,3147.691032,99.18296877,305.7876448,0.8642538,0.015069332,0.006501259,17.92962072,13.223664,7.016328,0.207261554,0,2.764014192,0,0.023164622,5.040496841,58.92657268,53.02660236,9.711606302,11.63145888,0.645696,3598.368466,0.00576,0.038592,0.005832 +2143,0,0,2.952111141,0.090982559,1.79993879,0.006848,0.175551333,0.659613263,0,0,0.048914735,0.789446,0.00856,75.087892,0,3118.545745,98.88443835,304.8268336,0.85625145,0.014929801,0.006441062,17.76360571,13.10122267,6.951362,0.205342466,0,2.738421468,0,0.022950135,5.03413613,58.82524979,52.89590868,9.671956481,11.60031027,0.639717333,3571.232369,0.005706667,0.038234667,0.005778 +2144,0,0,2.889300266,0.07798505,1.793551759,0.006784,0.173910667,0.653448653,0,0,0.048457588,0.782068,0.00848,74.386136,0,3089.400457,98.58590794,303.8660223,0.8482491,0.01479027,0.006380865,17.59759071,12.97878133,6.886396,0.203423377,0,2.712828744,0,0.022735647,5.02777542,58.7239269,52.765215,9.632306661,11.56916166,0.633738667,3544.096271,0.005653333,0.037877333,0.005724 +2145,0,0,2.82648939,0.064987542,1.787164728,0.00672,0.17227,0.647284043,0,0,0.048000441,0.77469,0.0084,73.68438,0,3060.25517,98.28737753,302.9052111,0.84024675,0.01465074,0.006320668,17.4315757,12.85634,6.82143,0.201504289,0,2.68723602,0,0.02252116,5.02141471,58.62260401,52.63452133,9.592656841,11.53801305,0.62776,3516.960174,0.0056,0.03752,0.00567 +2146,0,0,2.763678515,0.051990034,1.780777697,0.006656,0.170629333,0.641119433,0,0,0.047543294,0.767312,0.00832,72.982624,0,3031.109883,97.98884712,301.9443999,0.8322444,0.014511209,0.006260471,17.26556069,12.73389867,6.756464,0.199585201,0,2.661643296,0,0.022306673,5.015053999,58.52128113,52.50382765,9.553007021,11.50686444,0.621781333,3489.824076,0.005546667,0.037162667,0.005616 +2147,0,0,2.70086764,0.038992525,1.774390666,0.006592,0.168988667,0.634954823,0,0,0.047086147,0.759934,0.00824,72.280868,0,3001.964595,97.6903167,300.9835887,0.82424205,0.014371678,0.006200275,17.09954569,12.61145733,6.691498,0.197666112,0,2.636050572,0,0.022092186,5.008693289,58.41995824,52.37313397,9.513357201,11.47571583,0.615802667,3462.687979,0.005493333,0.036805333,0.005562 +2148,0,0,2.638056764,0.025995017,1.768003635,0.006528,0.167348,0.628790213,0,0,0.046629,0.752556,0.00816,71.579112,0,2972.819308,97.39178629,300.0227775,0.8162397,0.014232147,0.006140078,16.93353068,12.489016,6.626532,0.195747024,0,2.610457848,0,0.021877698,5.002332579,58.31863535,52.2424403,9.473707381,11.44456722,0.609824,3435.551881,0.00544,0.036448,0.005508 +2149,0,0,2.575245889,0.012997508,1.761616604,0.006464,0.165707333,0.622625603,0,0,0.046171853,0.745178,0.00808,70.877356,0,2943.674021,97.09325588,299.0619663,0.80823735,0.014092616,0.006079881,16.76751567,12.36657467,6.561566,0.193827935,0,2.584865124,0,0.021663211,4.995971869,58.21731247,52.11174662,9.43405756,11.41341861,0.603845333,3408.415784,0.005386667,0.036090667,0.005454 +2150,0,0,2.512435014,0,1.755229573,0.0064,0.164066667,0.616460993,0,0,0.045714706,0.7378,0.008,70.1756,0,2914.528733,96.79472547,298.101155,0.800235,0.013953085,0.006019684,16.60150067,12.24413333,6.4966,0.191908847,0,2.5592724,0,0.021448724,4.989611158,58.11598958,51.98105294,9.39440774,11.38227,0.597866667,3381.279686,0.005333333,0.035733333,0.0054 +2151,0,0,2.449624138,0,1.748842543,0.006336,0.162426,0.610296383,0,0,0.045257559,0.730422,0.00792,69.473844,0,2885.383446,96.49619505,297.1403438,0.79223265,0.013813554,0.005959487,16.43548566,12.121692,6.431634,0.189989758,0,2.533679676,0,0.021234237,4.983250448,58.01466669,51.85035926,9.35475792,11.35112139,0.591888,3354.143589,0.00528,0.035376,0.005346 +2152,0,0,2.386813263,0,1.742455512,0.006272,0.160785333,0.604131773,0,0,0.044800412,0.723044,0.00784,68.772088,0,2856.238159,96.19766464,296.1795326,0.7842303,0.013674024,0.00589929,16.26947065,11.99925067,6.366668,0.18807067,0,2.508086952,0,0.02101975,4.976889738,57.9133438,51.71966559,9.3151081,11.31997278,0.585909333,3327.007491,0.005226667,0.035018667,0.005292 +2153,0,0,2.324002388,0,1.736068481,0.006208,0.159144667,0.597967164,0,0,0.044343265,0.715666,0.00776,68.070332,0,2827.092871,95.89913423,295.2187214,0.77622795,0.013534493,0.005839093,16.10345565,11.87680933,6.301702,0.186151581,0,2.482494228,0,0.020805262,4.970529028,57.81202092,51.58897191,9.27545828,11.28882417,0.579930667,3299.871394,0.005173333,0.034661333,0.005238 +2154,0,0,2.261191512,0,1.72968145,0.006144,0.157504,0.591802554,0,0,0.043886118,0.708288,0.00768,67.368576,0,2797.947584,95.60060382,294.2579102,0.7682256,0.013394962,0.005778897,15.93744064,11.754368,6.236736,0.184232493,0,2.456901504,0,0.020590775,4.964168317,57.71069803,51.45827823,9.235808459,11.25767556,0.573952,3272.735296,0.00512,0.034304,0.005184 +2155,0,0,2.198380637,0,1.723294419,0.00608,0.155863333,0.585637944,0,0,0.043428971,0.70091,0.0076,66.66682,0,2768.802297,95.30207341,293.297099,0.76022325,0.013255431,0.0057187,15.77142563,11.63192667,6.17177,0.182313404,0,2.43130878,0,0.020376288,4.957807607,57.60937514,51.32758456,9.196158639,11.22652695,0.567973333,3245.599199,0.005066667,0.033946667,0.00513 +2156,0,0,2.135569762,0,1.716907388,0.006016,0.154222667,0.579473334,0,0,0.042971824,0.693532,0.00752,65.965064,0,2739.657009,95.00354299,292.3362877,0.7522209,0.0131159,0.005658503,15.60541063,11.50948533,6.106804,0.180394316,0,2.405716056,0,0.020161801,4.951446897,57.50805226,51.19689088,9.156508819,11.19537834,0.561994667,3218.463101,0.005013333,0.033589333,0.005076 +2157,0,0,2.072758886,0,1.710520357,0.005952,0.152582,0.573308724,0,0,0.042514677,0.686154,0.00744,65.263308,0,2710.511722,94.70501258,291.3754765,0.74421855,0.012976369,0.005598306,15.43939562,11.387044,6.041838,0.178475227,0,2.380123332,0,0.019947313,4.945086186,57.40672937,51.0661972,9.116858999,11.16422973,0.556016,3191.327004,0.00496,0.033232,0.005022 +2158,0,0,2.009948011,0,1.704133326,0.005888,0.150941333,0.567144114,0,0,0.04205753,0.678776,0.00736,64.561552,0,2681.366435,94.40648217,290.4146653,0.7362162,0.012836839,0.005538109,15.27338061,11.26460267,5.976872,0.176556139,0,2.354530608,0,0.019732826,4.938725476,57.30540648,50.93550352,9.077209179,11.13308112,0.550037333,3164.190906,0.004906667,0.032874667,0.004968 +2159,0,0,1.947137136,0,1.697746295,0.005824,0.149300667,0.560979504,0,0,0.041600382,0.671398,0.00728,63.859796,0,2652.221147,94.10795176,289.4538541,0.72821385,0.012697308,0.005477912,15.10736561,11.14216133,5.911906,0.17463705,0,2.328937884,0,0.019518339,4.932364766,57.2040836,50.80480985,9.037559359,11.10193251,0.544058667,3137.054809,0.004853333,0.032517333,0.004914 +2160,0,0,1.88432626,0,1.691359264,0.00576,0.14766,0.554814894,0,0,0.041143235,0.66402,0.0072,63.15804,0,2623.07586,93.80942134,288.4930429,0.7202115,0.012557777,0.005417716,14.9413506,11.01972,5.84694,0.172717962,0,2.30334516,0,0.019303852,4.926004056,57.10276071,50.67411617,8.997909538,11.0707839,0.53808,3109.918711,0.0048,0.03216,0.00486 +2161,0,0,1.821515385,0,1.684972234,0.005696,0.146019333,0.548650284,0,0,0.040686088,0.656642,0.00712,62.456284,0,2593.930573,93.51089093,287.5322317,0.71220915,0.012418246,0.005357519,14.77533559,10.89727867,5.781974,0.170798874,0,2.277752436,0,0.019089364,4.919643345,57.00143782,50.54342249,8.958259718,11.03963529,0.532101333,3082.782614,0.004746667,0.031802667,0.004806 +2162,0,0,1.75870451,0,1.678585203,0.005632,0.144378667,0.542485674,0,0,0.040228941,0.649264,0.00704,61.754528,0,2564.785285,93.21236052,286.5714204,0.7042068,0.012278715,0.005297322,14.60932059,10.77483733,5.717008,0.168879785,0,2.252159712,0,0.018874877,4.913282635,56.90011493,50.41272882,8.918609898,11.00848668,0.526122667,3055.646516,0.004693333,0.031445333,0.004752 +2163,0,0,1.695893634,0,1.672198172,0.005568,0.142738,0.536321064,0,0,0.039771794,0.641886,0.00696,61.052772,0,2535.639998,92.91383011,285.6106092,0.69620445,0.012139184,0.005237125,14.44330558,10.652396,5.652042,0.166960697,0,2.226566988,0,0.01866039,4.906921925,56.79879205,50.28203514,8.878960078,10.97733807,0.520144,3028.510419,0.00464,0.031088,0.004698 +2164,0,0,1.633082759,0,1.665811141,0.005504,0.141097333,0.530156454,0,0,0.039314647,0.634508,0.00688,60.351016,0,2506.494711,92.61529969,284.649798,0.6882021,0.011999653,0.005176928,14.27729057,10.52995467,5.587076,0.165041608,0,2.200974264,0,0.018445903,4.900561215,56.69746916,50.15134146,8.839310258,10.94618946,0.514165333,3001.374321,0.004586667,0.030730667,0.004644 +2165,0,0,1.570271884,0,1.65942411,0.00544,0.139456667,0.523991844,0,0,0.0388575,0.62713,0.0068,59.64926,0,2477.349423,92.31676928,283.6889868,0.68019975,0.011860123,0.005116731,14.11127557,10.40751333,5.52211,0.16312252,0,2.17538154,0,0.018231415,4.894200504,56.59614627,50.02064778,8.799660438,10.91504085,0.508186667,2974.238224,0.004533333,0.030373333,0.00459 +2166,0,0,1.507461008,0,1.653037079,0.005376,0.137816,0.517827234,0,0,0.038400353,0.619752,0.00672,58.947504,0,2448.204136,92.01823887,282.7281756,0.6721974,0.011720592,0.005056535,13.94526056,10.285072,5.457144,0.161203431,0,2.149788816,0,0.018016928,4.887839794,56.49482339,49.88995411,8.760010617,10.88389224,0.502208,2947.102126,0.00448,0.030016,0.004536 +2167,0,0,1.444650133,0,1.646650048,0.005312,0.136175333,0.511662624,0,0,0.037943206,0.612374,0.00664,58.245748,0,2419.058849,91.71970846,281.7673644,0.66419505,0.011581061,0.004996338,13.77924555,10.16263067,5.392178,0.159284343,0,2.124196092,0,0.017802441,4.881479084,56.3935005,49.75926043,8.720360797,10.85274363,0.496229333,2919.966029,0.004426667,0.029658667,0.004482 +2168,0,0,1.381839258,0,1.640263017,0.005248,0.134534667,0.505498015,0,0,0.037486059,0.604996,0.00656,57.543992,0,2389.913561,91.42117804,280.8065532,0.6561927,0.01144153,0.004936141,13.61323055,10.04018933,5.327212,0.157365254,0,2.098603368,0,0.017587954,4.875118374,56.29217761,49.62856675,8.680710977,10.82159502,0.490250667,2892.829931,0.004373333,0.029301333,0.004428 +2169,0,0,1.319028382,0,1.633875986,0.005184,0.132894,0.499333405,0,0,0.037028912,0.597618,0.00648,56.842236,0,2360.768274,91.12264763,279.8457419,0.64819035,0.011301999,0.004875944,13.44721554,9.917748,5.262246,0.155446166,0,2.073010644,0,0.017373466,4.868757663,56.19085472,49.49787308,8.641061157,10.79044641,0.484272,2865.693834,0.00432,0.028944,0.004374 +2170,0,0,1.256217507,0,1.627488956,0.00512,0.131253333,0.493168795,0,0,0.036571765,0.59024,0.0064,56.14048,0,2331.622987,90.82411722,278.8849307,0.640188,0.011162468,0.004815747,13.28120053,9.795306667,5.19728,0.153527077,0,2.04741792,0,0.017158979,4.862396953,56.08953184,49.3671794,8.601411337,10.7592978,0.478293333,2838.557736,0.004266667,0.028586667,0.00432 +2171,0,0,1.193406632,0,1.621101925,0.005056,0.129612667,0.487004185,0,0,0.036114618,0.582862,0.00632,55.438724,0,2302.477699,90.52558681,277.9241195,0.63218565,0.011022937,0.00475555,13.11518553,9.672865333,5.132314,0.151607989,0,2.021825196,0,0.016944492,4.856036243,55.98820895,49.23648572,8.561761517,10.72814919,0.472314667,2811.421639,0.004213333,0.028229333,0.004266 +2172,0,0,1.130595756,0,1.614714894,0.004992,0.127972,0.480839575,0,0,0.035657471,0.575484,0.00624,54.736968,0,2273.332412,90.22705639,276.9633083,0.6241833,0.010883407,0.004695354,12.94917052,9.550424,5.067348,0.1496889,0,1.996232472,0,0.016730005,4.849675532,55.88688606,49.10579204,8.522111696,10.69700058,0.466336,2784.285541,0.00416,0.027872,0.004212 +2173,0,0,1.067784881,0,1.608327863,0.004928,0.126331333,0.474674965,0,0,0.035200324,0.568106,0.00616,54.035212,0,2244.187125,89.92852598,276.0024971,0.61618095,0.010743876,0.004635157,12.78315551,9.427982667,5.002382,0.147769812,0,1.970639748,0,0.016515517,4.843314822,55.78556318,48.97509837,8.482461876,10.66585197,0.460357333,2757.149444,0.004106667,0.027514667,0.004158 +2174,0,0,1.004974005,0,1.601940832,0.004864,0.124690667,0.468510355,0,0,0.034743177,0.560728,0.00608,53.333456,0,2215.041837,89.62999557,275.0416859,0.6081786,0.010604345,0.00457496,12.61714051,9.305541333,4.937416,0.145850723,0,1.945047024,0,0.01630103,4.836954112,55.68424029,48.84440469,8.442812056,10.63470336,0.454378667,2730.013346,0.004053333,0.027157333,0.004104 +2175,0,0,0.94216313,0,1.595553801,0.0048,0.12305,0.462345745,0,0,0.03428603,0.55335,0.006,52.6317,0,2185.89655,89.33146516,274.0808746,0.60017625,0.010464814,0.004514763,12.4511255,9.1831,4.87245,0.143931635,0,1.9194543,0,0.016086543,4.830593402,55.5829174,48.71371101,8.403162236,10.60355474,0.4484,2702.877249,0.004,0.0268,0.00405 +2176,0,0,0.879352255,0,1.58916677,0.004736,0.121409333,0.456181135,0,0,0.033828882,0.545972,0.00592,51.929944,0,2156.751263,89.03293474,273.1200634,0.5921739,0.010325283,0.004454566,12.28511049,9.060658667,4.807484,0.142012547,0,1.893861576,0,0.015872056,4.824232691,55.48159451,48.58301734,8.363512416,10.57240613,0.442421333,2675.741151,0.003946667,0.026442667,0.003996 +2177,0,0,0.816541379,0,1.582779739,0.004672,0.119768667,0.450016525,0,0,0.033371735,0.538594,0.00584,51.228188,0,2127.605975,88.73440433,272.1592522,0.58417155,0.010185752,0.004394369,12.11909549,8.938217333,4.742518,0.140093458,0,1.868268852,0,0.015657569,4.817871981,55.38027163,48.45232366,8.323862596,10.54125752,0.436442667,2648.605054,0.003893333,0.026085333,0.003942 +2178,0,0,0.753730504,0,1.576392708,0.004608,0.118128,0.443851915,0,0,0.032914588,0.531216,0.00576,50.526432,0,2098.460688,88.43587392,271.198441,0.5761692,0.010046221,0.004334172,11.95308048,8.815776,4.677552,0.13817437,0,1.842676128,0,0.015443081,4.811511271,55.27894874,48.32162998,8.284212775,10.51010891,0.430464,2621.468956,0.00384,0.025728,0.003888 +2179,0,0,0.690919629,0,1.570005677,0.004544,0.116487333,0.437687305,0,0,0.032457441,0.523838,0.00568,49.824676,0,2069.315401,88.13734351,270.2376298,0.56816685,0.009906691,0.004273976,11.78706547,8.693334667,4.612586,0.136255281,0,1.817083404,0,0.015228594,4.805150561,55.17762585,48.1909363,8.244562955,10.4789603,0.424485333,2594.332859,0.003786667,0.025370667,0.003834 +2180,0,0,0.628108753,0,1.563618647,0.00448,0.114846667,0.431522695,0,0,0.032000294,0.51646,0.0056,49.12292,0,2040.170113,87.83881309,269.2768186,0.5601645,0.00976716,0.004213779,11.62105047,8.570893333,4.54762,0.134336193,0,1.79149068,0,0.015014107,4.79878985,55.07630297,48.06024263,8.204913135,10.44781169,0.418506667,2567.196761,0.003733333,0.025013333,0.00378 +2181,0,0,0.565297878,0,1.557231616,0.004416,0.113206,0.425358085,0,0,0.031543147,0.509082,0.00552,48.421164,0,2011.024826,87.54028268,268.3160073,0.55216215,0.009627629,0.004153582,11.45503546,8.448452,4.482654,0.132417104,0,1.765897956,0,0.01479962,4.79242914,54.97498008,47.92954895,8.165263315,10.41666308,0.412528,2540.060664,0.00368,0.024656,0.003726 +2182,0,0,0.502487003,0,1.550844585,0.004352,0.111565333,0.419193475,0,0,0.031086,0.501704,0.00544,47.719408,0,1981.879539,87.24175227,267.3551961,0.5441598,0.009488098,0.004093385,11.28902045,8.326010667,4.417688,0.130498016,0,1.740305232,0,0.014585132,4.78606843,54.87365719,47.79885527,8.125613495,10.38551447,0.406549333,2512.924566,0.003626667,0.024298667,0.003672 +2183,0,0,0.439676127,0,1.544457554,0.004288,0.109924667,0.413028866,0,0,0.030628853,0.494326,0.00536,47.017652,0,1952.734251,86.94322186,266.3943849,0.53615745,0.009348567,0.004033188,11.12300545,8.203569333,4.352722,0.128578927,0,1.714712508,0,0.014370645,4.779707719,54.7723343,47.6681616,8.085963674,10.35436586,0.400570667,2485.788469,0.003573333,0.023941333,0.003618 +2184,0,0,0.376865252,0,1.538070523,0.004224,0.108284,0.406864256,0,0,0.030171706,0.486948,0.00528,46.315896,0,1923.588964,86.64469144,265.4335737,0.5281551,0.009209036,0.003972991,10.95699044,8.081128,4.287756,0.126659839,0,1.689119784,0,0.014156158,4.773347009,54.67101142,47.53746792,8.046313854,10.32321725,0.394592,2458.652371,0.00352,0.023584,0.003564 +2185,0,0,0.314054377,0,1.531683492,0.00416,0.106643333,0.400699646,0,0,0.029714559,0.47957,0.0052,45.61414,0,1894.443677,86.34616103,264.4727625,0.52015275,0.009069505,0.003912795,10.79097543,7.958686667,4.22279,0.12474075,0,1.66352706,0,0.013941671,4.766986299,54.56968853,47.40677424,8.006664034,10.29206864,0.388613333,2431.516274,0.003466667,0.023226667,0.00351 +2186,0,0,0.251243501,0,1.525296461,0.004096,0.105002667,0.394535036,0,0,0.029257412,0.472192,0.00512,44.912384,0,1865.298389,86.04763062,263.5119513,0.5121504,0.008929975,0.003852598,10.62496043,7.836245333,4.157824,0.122821662,0,1.637934336,0,0.013727183,4.760625589,54.46836564,47.27608056,7.967014214,10.26092003,0.382634667,2404.380176,0.003413333,0.022869333,0.003456 +2187,0,0,0.188432626,0,1.51890943,0.004032,0.103362,0.388370426,0,0,0.028800265,0.464814,0.00504,44.210628,0,1836.153102,85.74910021,262.55114,0.50414805,0.008790444,0.003792401,10.45894542,7.713804,4.092858,0.120902573,0,1.612341612,0,0.013512696,4.754264878,54.36704276,47.14538689,7.927364394,10.22977142,0.376656,2377.244079,0.00336,0.022512,0.003402 +2188,0,0,0.125621751,0,1.512522399,0.003968,0.101721333,0.382205816,0,0,0.028343118,0.457436,0.00496,43.508872,0,1807.007815,85.45056979,261.5903288,0.4961457,0.008650913,0.003732204,10.29293041,7.591362667,4.027892,0.118983485,0,1.586748888,0,0.013298209,4.747904168,54.26571987,47.01469321,7.887714574,10.19862281,0.370677333,2350.107981,0.003306667,0.022154667,0.003348 +2189,0,0,0.062810875,0,1.506135368,0.003904,0.100080667,0.376041206,0,0,0.027885971,0.450058,0.00488,42.807116,0,1777.862527,85.15203938,260.6295176,0.48814335,0.008511382,0.003672007,10.12691541,7.468921333,3.962926,0.117064396,0,1.561156164,0,0.013083722,4.741543458,54.16439698,46.88399953,7.848064753,10.1674742,0.364698667,2322.971884,0.003253333,0.021797333,0.003294 +2190,0,0,0,0,1.499748338,0.00384,0.09844,0.369876596,0,0,0.027428824,0.44268,0.0048,42.10536,0,1748.71724,84.85350897,259.6687064,0.480141,0.008371851,0.00361181,9.9609004,7.34648,3.89796,0.115145308,0,1.53556344,0,0.012869234,4.735182748,54.06307409,46.75330586,7.808414933,10.13632559,0.35872,2295.835787,0.0032,0.02144,0.00324 +2191,0,0,0,0,1.493361307,0.003776,0.096799333,0.363711986,0,0,0.026971677,0.435302,0.00472,41.403604,0,1719.571953,84.55497856,258.7078952,0.47213865,0.00823232,0.003551614,9.794885393,7.224038667,3.832994,0.11322622,0,1.509970716,0,0.012654747,4.728822037,53.96175121,46.62261218,7.768765113,10.10517698,0.352741333,2268.699689,0.003146667,0.021082667,0.003186 +2192,0,0,0,0,1.486974276,0.003712,0.095158667,0.357547376,0,0,0.026514529,0.427924,0.00464,40.701848,0,1690.426665,84.25644814,257.747084,0.4641363,0.008092789,0.003491417,9.628870387,7.101597333,3.768028,0.111307131,0,1.484377992,0,0.01244026,4.722461327,53.86042832,46.4919185,7.729115293,10.07402837,0.346762667,2241.563592,0.003093333,0.020725333,0.003132 +2193,0,0,0,0,1.480587245,0.003648,0.093518,0.351382766,0,0,0.026057382,0.420546,0.00456,40.000092,0,1661.281378,83.95791773,256.7862727,0.45613395,0.007953259,0.00343122,9.46285538,6.979156,3.703062,0.109388043,0,1.458785268,0,0.012225773,4.716100617,53.75910543,46.36122482,7.689465473,10.04287976,0.340784,2214.427494,0.00304,0.020368,0.003078 +2194,0,0,0,0,1.474200214,0.003584,0.091877333,0.345218156,0,0,0.025600235,0.413168,0.00448,39.298336,0,1632.136091,83.65938732,255.8254615,0.4481316,0.007813728,0.003371023,9.296840373,6.856714667,3.638096,0.107468954,0,1.433192544,0,0.012011285,4.709739907,53.65778255,46.23053115,7.649815653,10.01173115,0.334805333,2187.291397,0.002986667,0.020010667,0.003024 +2195,0,0,0,0,1.467813183,0.00352,0.090236667,0.339053546,0,0,0.025143088,0.40579,0.0044,38.59658,0,1602.990803,83.36085691,254.8646503,0.44012925,0.007674197,0.003310826,9.130825367,6.734273333,3.57313,0.105549866,0,1.40759982,0,0.011796798,4.703379196,53.55645966,46.09983747,7.610165832,9.98058254,0.328826667,2160.155299,0.002933333,0.019653333,0.00297 +2196,0,0,0,0,1.461426152,0.003456,0.088596,0.332888936,0,0,0.024685941,0.398412,0.00432,37.894824,0,1573.845516,83.0623265,253.9038391,0.4321269,0.007534666,0.003250629,8.96481036,6.611832,3.508164,0.103630777,0,1.382007096,0,0.011582311,4.697018486,53.45513677,45.96914379,7.570516012,9.94943393,0.322848,2133.019202,0.00288,0.019296,0.002916 +2197,0,0,0,0,1.455039121,0.003392,0.086955333,0.326724326,0,0,0.024228794,0.391034,0.00424,37.193068,0,1544.700229,82.76379608,252.9430279,0.42412455,0.007395135,0.003190433,8.798795353,6.489390667,3.443198,0.101711689,0,1.356414372,0,0.011367824,4.690657776,53.35381388,45.83845012,7.530866192,9.91828532,0.316869333,2105.883104,0.002826667,0.018938667,0.002862 +2198,0,0,0,0,1.44865209,0.003328,0.085314667,0.320559717,0,0,0.023771647,0.383656,0.00416,36.491312,0,1515.554941,82.46526567,251.9822167,0.4161222,0.007255604,0.003130236,8.632780347,6.366949333,3.378232,0.0997926,0,1.330821648,0,0.011153336,4.684297065,53.252491,45.70775644,7.491216372,9.88713671,0.310890667,2078.747007,0.002773333,0.018581333,0.002808 +2199,0,0,0,0,1.44226506,0.003264,0.083674,0.314395107,0,0,0.0233145,0.376278,0.00408,35.789556,0,1486.409654,82.16673526,251.0214054,0.40811985,0.007116074,0.003070039,8.46676534,6.244508,3.313266,0.097873512,0,1.305228924,0,0.010938849,4.677936355,53.15116811,45.57706276,7.451566552,9.855988099,0.304912,2051.610909,0.00272,0.018224,0.002754 +2200,0,0,0,0,1.435878029,0.0032,0.082033333,0.308230497,0,0,0.022857353,0.3689,0.004,35.0878,0,1457.264367,81.86820485,250.0605942,0.4001175,0.006976543,0.003009842,8.300750333,6.122066667,3.2483,0.095954423,0,1.2796362,0,0.010724362,4.671575645,53.04984522,45.44636908,7.411916732,9.824839489,0.298933333,2024.474812,0.002666667,0.017866667,0.0027 +2201,0,0,0,0,1.429490998,0.003136,0.080392667,0.302065887,0,0,0.022400206,0.361522,0.00392,34.386044,0,1428.119079,81.56967443,249.099783,0.39211515,0.006837012,0.002949645,8.134735327,5.999625333,3.183334,0.094035335,0,1.254043476,0,0.010509875,4.665214935,52.94852234,45.31567541,7.372266911,9.793690879,0.292954667,1997.338714,0.002613333,0.017509333,0.002646 +2202,0,0,0,0,1.423103967,0.003072,0.078752,0.295901277,0,0,0.021943059,0.354144,0.00384,33.684288,0,1398.973792,81.27114402,248.1389718,0.3841128,0.006697481,0.002889448,7.96872032,5.877184,3.118368,0.092116246,0,1.228450752,0,0.010295388,4.658854224,52.84719945,45.18498173,7.332617091,9.762542269,0.286976,1970.202617,0.00256,0.017152,0.002592 +2203,0,0,0,0,1.416716936,0.003008,0.077111333,0.289736667,0,0,0.021485912,0.346766,0.00376,32.982532,0,1369.828505,80.97261361,247.1781606,0.37611045,0.00655795,0.002829251,7.802705313,5.754742667,3.053402,0.090197158,0,1.202858028,0,0.0100809,4.652493514,52.74587656,45.05428805,7.292967271,9.731393658,0.280997333,1943.066519,0.002506667,0.016794667,0.002538 +2204,0,0,0,0,1.410329905,0.002944,0.075470667,0.283572057,0,0,0.021028765,0.339388,0.00368,32.280776,0,1340.683217,80.6740832,246.2173494,0.3681081,0.006418419,0.002769055,7.636690307,5.632301333,2.988436,0.088278069,0,1.177265304,0,0.009866413,4.646132804,52.64455367,44.92359438,7.253317451,9.700245048,0.275018667,1915.930422,0.002453333,0.016437333,0.002484 +2205,0,0,0,0,1.403942874,0.00288,0.07383,0.277407447,0,0,0.020571618,0.33201,0.0036,31.57902,0,1311.53793,80.37555278,245.2565381,0.36010575,0.006278888,0.002708858,7.4706753,5.50986,2.92347,0.086358981,0,1.15167258,0,0.009651926,4.639772094,52.54323079,44.7929007,7.213667631,9.669096438,0.26904,1888.794324,0.0024,0.01608,0.00243 +2206,0,0,0,0,1.397555843,0.002816,0.072189333,0.271242837,0,0,0.020114471,0.324632,0.00352,30.877264,0,1282.392643,80.07702237,244.2957269,0.3521034,0.006139358,0.002648661,7.304660293,5.387418667,2.858504,0.084439893,0,1.126079856,0,0.009437439,4.633411383,52.4419079,44.66220702,7.17401781,9.637947828,0.263061333,1861.658227,0.002346667,0.015722667,0.002376 +2207,0,0,0,0,1.391168812,0.002752,0.070548667,0.265078227,0,0,0.019657324,0.317254,0.00344,30.175508,0,1253.247355,79.77849196,243.3349157,0.34410105,0.005999827,0.002588464,7.138645287,5.264977333,2.793538,0.082520804,0,1.100487132,0,0.009222951,4.627050673,52.34058501,44.53151334,7.13436799,9.606799217,0.257082667,1834.522129,0.002293333,0.015365333,0.002322 +2208,0,0,0,0,1.384781781,0.002688,0.068908,0.258913617,0,0,0.019200177,0.309876,0.00336,29.473752,0,1224.102068,79.47996155,242.3741045,0.3360987,0.005860296,0.002528267,6.97263028,5.142536,2.728572,0.080601716,0,1.074894408,0,0.009008464,4.620689963,52.23926213,44.40081967,7.09471817,9.575650607,0.251104,1807.386032,0.00224,0.015008,0.002268 +2209,0,0,0,0,1.378394751,0.002624,0.067267333,0.252749007,0,0,0.018743029,0.302498,0.00328,28.771996,0,1194.956781,79.18143113,241.4132933,0.32809635,0.005720765,0.00246807,6.806615273,5.020094667,2.663606,0.078682627,0,1.049301684,0,0.008793977,4.614329252,52.13793924,44.27012599,7.05506835,9.544501997,0.245125333,1780.249934,0.002186667,0.014650667,0.002214 +2210,0,0,0,0,1.37200772,0.00256,0.065626667,0.246584397,0,0,0.018285882,0.29512,0.0032,28.07024,0,1165.811493,78.88290072,240.4524821,0.320094,0.005581234,0.002407874,6.640600267,4.897653333,2.59864,0.076763539,0,1.02370896,0,0.00857949,4.607968542,52.03661635,44.13943231,7.01541853,9.513353387,0.239146667,1753.113837,0.002133333,0.014293333,0.00216 +2211,0,0,0,0,1.365620689,0.002496,0.063986,0.240419787,0,0,0.017828735,0.287742,0.00312,27.368484,0,1136.666206,78.58437031,239.4916708,0.31209165,0.005441703,0.002347677,6.47458526,4.775212,2.533674,0.07484445,0,0.998116236,0,0.008365002,4.601607832,51.93529346,44.00873864,6.97576871,9.482204777,0.233168,1725.977739,0.00208,0.013936,0.002106 +2212,0,0,0,0,1.359233658,0.002432,0.062345333,0.234255177,0,0,0.017371588,0.280364,0.00304,26.666728,0,1107.520919,78.2858399,238.5308596,0.3040893,0.005302172,0.00228748,6.308570253,4.652770667,2.468708,0.072925362,0,0.972523512,0,0.008150515,4.595247122,51.83397058,43.87804496,6.936118889,9.451056166,0.227189333,1698.841642,0.002026667,0.013578667,0.002052 +2213,0,0,0,0,1.352846627,0.002368,0.060704667,0.228090568,0,0,0.016914441,0.272986,0.00296,25.964972,0,1078.375631,77.98730948,237.5700484,0.29608695,0.005162642,0.002227283,6.142555247,4.530329333,2.403742,0.071006273,0,0.946930788,0,0.007936028,4.588886411,51.73264769,43.74735128,6.896469069,9.419907556,0.221210667,1671.705544,0.001973333,0.013221333,0.001998 +2214,0,0,0,0,1.346459596,0.002304,0.059064,0.221925958,0,0,0.016457294,0.265608,0.00288,25.263216,0,1049.230344,77.68877907,236.6092372,0.2880846,0.005023111,0.002167086,5.97654024,4.407888,2.338776,0.069087185,0,0.921338064,0,0.007721541,4.582525701,51.6313248,43.6166576,6.856819249,9.388758946,0.215232,1644.569447,0.00192,0.012864,0.001944 +2215,0,0,0,0,1.340072565,0.00224,0.057423333,0.215761348,0,0,0.016000147,0.25823,0.0028,24.56146,0,1020.085057,77.39024866,235.648426,0.28008225,0.00488358,0.002106889,5.810525233,4.285446667,2.27381,0.067168096,0,0.89574534,0,0.007507053,4.576164991,51.53000192,43.48596393,6.817169429,9.357610336,0.209253333,1617.433349,0.001866667,0.012506667,0.00189 +2216,0,0,0,0,1.333685534,0.002176,0.055782667,0.209596738,0,0,0.015543,0.250852,0.00272,23.859704,0,990.9397693,77.09171825,234.6876148,0.2720799,0.004744049,0.002046693,5.644510227,4.163005333,2.208844,0.065249008,0,0.870152616,0,0.007292566,4.569804281,51.42867903,43.35527025,6.777519609,9.326461725,0.203274667,1590.297252,0.001813333,0.012149333,0.001836 +2217,0,0,0,0,1.327298503,0.002112,0.054142,0.203432128,0,0,0.015085853,0.243474,0.00264,23.157948,0,961.794482,76.79318783,233.7268035,0.26407755,0.004604518,0.001986496,5.47849522,4.040564,2.143878,0.063329919,0,0.844559892,0,0.007078079,4.56344357,51.32735614,43.22457657,6.737869789,9.295313115,0.197296,1563.161154,0.00176,0.011792,0.001782 +2218,0,0,0,0,1.320911473,0.002048,0.052501333,0.197267518,0,0,0.014628706,0.236096,0.00256,22.456192,0,932.6491947,76.49465742,232.7659923,0.2560752,0.004464987,0.001926299,5.312480213,3.918122667,2.078912,0.061410831,0,0.818967168,0,0.006863592,4.55708286,51.22603325,43.0938829,6.698219968,9.264164505,0.191317333,1536.025057,0.001706667,0.011434667,0.001728 +2219,0,0,0,0,1.314524442,0.001984,0.050860667,0.191102908,0,0,0.014171559,0.228718,0.00248,21.754436,0,903.5039073,76.19612701,231.8051811,0.24807285,0.004325456,0.001866102,5.146465207,3.795681333,2.013946,0.059491742,0,0.793374444,0,0.006649104,4.55072215,51.12471037,42.96318922,6.658570148,9.233015895,0.185338667,1508.888959,0.001653333,0.011077333,0.001674 +2220,0,0,0,0,1.308137411,0.00192,0.04922,0.184938298,0,0,0.013714412,0.22134,0.0024,21.05268,0,874.35862,75.8975966,230.8443699,0.2400705,0.004185926,0.001805905,4.9804502,3.67324,1.94898,0.057572654,0,0.76778172,0,0.006434617,4.544361439,51.02338748,42.83249554,6.618920328,9.201867284,0.17936,1481.752862,0.0016,0.01072,0.00162 +2221,0,0,0,0,1.30175038,0.001856,0.047579333,0.178773688,0,0,0.013257265,0.213962,0.00232,20.350924,0,845.2133327,75.59906618,229.8835587,0.23206815,0.004046395,0.001745708,4.814435193,3.550798667,1.884014,0.055653566,0,0.742188996,0,0.00622013,4.538000729,50.92206459,42.70180186,6.579270508,9.170718674,0.173381333,1454.616764,0.001546667,0.010362667,0.001566 +2222,0,0,0,0,1.295363349,0.001792,0.045938667,0.172609078,0,0,0.012800118,0.206584,0.00224,19.649168,0,816.0680453,75.30053577,228.9227475,0.2240658,0.003906864,0.001685512,4.648420187,3.428357333,1.819048,0.053734477,0,0.716596272,0,0.006005643,4.531640019,50.82074171,42.57110819,6.539620688,9.139570064,0.167402667,1427.480667,0.001493333,0.010005333,0.001512 +2223,0,0,0,0,1.288976318,0.001728,0.044298,0.166444468,0,0,0.012342971,0.199206,0.00216,18.947412,0,786.922758,75.00200536,227.9619362,0.21606345,0.003767333,0.001625315,4.48240518,3.305916,1.754082,0.051815389,0,0.691003548,0,0.005791155,4.525279309,50.71941882,42.44041451,6.499970868,9.108421454,0.161424,1400.344569,0.00144,0.009648,0.001458 +2224,0,0,0,0,1.282589287,0.001664,0.042657333,0.160279858,0,0,0.011885824,0.191828,0.00208,18.245656,0,757.7774707,74.70347495,227.001125,0.2080611,0.003627802,0.001565118,4.316390173,3.183474667,1.689116,0.0498963,0,0.665410824,0,0.005576668,4.518918598,50.61809593,42.30972083,6.460321047,9.077272844,0.155445333,1373.208472,0.001386667,0.009290667,0.001404 +2225,0,0,0,0,1.276202256,0.0016,0.041016667,0.154115248,0,0,0.011428677,0.18445,0.002,17.5439,0,728.6321833,74.40494453,226.0403138,0.20005875,0.003488271,0.001504921,4.150375167,3.061033333,1.62415,0.047977212,0,0.6398181,0,0.005362181,4.512557888,50.51677304,42.17902716,6.420671227,9.046124233,0.149466667,1346.072374,0.001333333,0.008933333,0.00135 +2226,0,0,0,0,1.269815225,0.001536,0.039376,0.147950638,0,0,0.010971529,0.177072,0.00192,16.842144,0,699.486896,74.10641412,225.0795026,0.1920564,0.00334874,0.001444724,3.98436016,2.938592,1.559184,0.046058123,0,0.614225376,0,0.005147694,4.506197178,50.41545016,42.04833348,6.381021407,9.014975623,0.143488,1318.936277,0.00128,0.008576,0.001296 +2227,0,0,0,0,1.263428194,0.001472,0.037735333,0.141786028,0,0,0.010514382,0.169694,0.00184,16.140388,0,670.3416087,73.80788371,224.1186914,0.18405405,0.00320921,0.001384527,3.818345153,2.816150667,1.494218,0.044139035,0,0.588632652,0,0.004933207,4.499836468,50.31412727,41.9176398,6.341371587,8.983827013,0.137509333,1291.800179,0.001226667,0.008218667,0.001242 +2228,0,0,0,0,1.257041164,0.001408,0.036094667,0.135621419,0,0,0.010057235,0.162316,0.00176,15.438632,0,641.1963213,73.5093533,223.1578802,0.1760517,0.003069679,0.00132433,3.652330147,2.693709333,1.429252,0.042219946,0,0.563039928,0,0.004718719,4.493475757,50.21280438,41.78694612,6.301721767,8.952678403,0.131530667,1264.664082,0.001173333,0.007861333,0.001188 +2229,0,0,0,0,1.250654133,0.001344,0.034454,0.129456809,0,0,0.009600088,0.154938,0.00168,14.736876,0,612.051034,73.21082288,222.1970689,0.16804935,0.002930148,0.001264134,3.48631514,2.571268,1.364286,0.040300858,0,0.537447204,0,0.004504232,4.487115047,50.1114815,41.65625245,6.262071947,8.921529792,0.125552,1237.527984,0.00112,0.007504,0.001134 +2230,0,0,0,0,1.244267102,0.00128,0.032813333,0.123292199,0,0,0.009142941,0.14756,0.0016,14.03512,0,582.9057467,72.91229247,221.2362577,0.160047,0.002790617,0.001203937,3.320300133,2.448826667,1.29932,0.038381769,0,0.51185448,0,0.004289745,4.480754337,50.01015861,41.52555877,6.222422126,8.890381182,0.119573333,1210.391887,0.001066667,0.007146667,0.00108 +2231,0,0,0,0,1.237880071,0.001216,0.031172667,0.117127589,0,0,0.008685794,0.140182,0.00152,13.333364,0,553.7604593,72.61376206,220.2754465,0.15204465,0.002651086,0.00114374,3.154285127,2.326385333,1.234354,0.036462681,0,0.486261756,0,0.004075258,4.474393627,49.90883572,41.39486509,6.182772306,8.859232572,0.113594667,1183.255789,0.001013333,0.006789333,0.001026 +2232,0,0,0,0,1.23149304,0.001152,0.029532,0.110962979,0,0,0.008228647,0.132804,0.00144,12.631608,0,524.615172,72.31523165,219.3146353,0.1440423,0.002511555,0.001083543,2.98827012,2.203944,1.169388,0.034543592,0,0.460669032,0,0.00386077,4.468032916,49.80751283,41.26417142,6.143122486,8.828083962,0.107616,1156.119692,9.60E-04,0.006432,9.72E-04 +2233,0,0,0,0,1.225106009,0.001088,0.027891333,0.104798369,0,0,0.0077715,0.125426,0.00136,11.929852,0,495.4698847,72.01670123,218.3538241,0.13603995,0.002372025,0.001023346,2.822255113,2.081502667,1.104422,0.032624504,0,0.435076308,0,0.003646283,4.461672206,49.70618995,41.13347774,6.103472666,8.796935351,0.101637333,1128.983594,9.07E-04,0.006074667,9.18E-04 +2234,0,0,0,0,1.218718978,0.001024,0.026250667,0.098633759,0,0,0.007314353,0.118048,0.00128,11.228096,0,466.3245973,71.71817082,217.3930129,0.1280376,0.002232494,9.63E-04,2.656240107,1.959061333,1.039456,0.030705415,0,0.409483584,0,0.003431796,4.455311496,49.60486706,41.00278406,6.063822846,8.765786741,0.095658667,1101.847497,8.53E-04,0.005717333,8.64E-04 +2235,0,0,0,0,1.212331947,9.60E-04,0.02461,0.092469149,0,0,0.006857206,0.11067,0.0012,10.52634,0,437.17931,71.41964041,216.4322016,0.12003525,0.002092963,9.03E-04,2.4902251,1.83662,0.97449,0.028786327,0,0.38389086,0,0.003217309,4.448950785,49.50354417,40.87209038,6.024173025,8.734638131,0.08968,1074.711399,8.00E-04,0.00536,8.10E-04 +2236,0,0,0,0,1.205944916,8.96E-04,0.022969333,0.086304539,0,0,0.006400059,0.103292,0.00112,9.824584,0,408.0340227,71.12111,215.4713904,0.1120329,0.001953432,8.43E-04,2.324210093,1.714178667,0.909524,0.026867239,0,0.358298136,0,0.003002821,4.442590075,49.40222129,40.74139671,5.984523205,8.703489521,0.083701333,1047.575302,7.47E-04,0.005002667,7.56E-04 +2237,0,0,0,0,1.199557886,8.32E-04,0.021328667,0.080139929,0,0,0.005942912,0.095914,0.00104,9.122828,0,378.8887353,70.82257958,214.5105792,0.10403055,0.001813901,7.83E-04,2.158195087,1.591737333,0.844558,0.02494815,0,0.332705412,0,0.002788334,4.436229365,49.3008984,40.61070303,5.944873385,8.67234091,0.077722667,1020.439204,6.93E-04,0.004645333,7.02E-04 +2238,0,0,0,0,1.193170855,7.68E-04,0.019688,0.073975319,0,0,0.005485765,0.088536,9.60E-04,8.421072,0,349.743448,70.52404917,213.549768,0.0960282,0.00167437,7.22E-04,1.99218008,1.469296,0.779592,0.023029062,0,0.307112688,0,0.002573847,4.429868655,49.19957551,40.48000935,5.905223565,8.6411923,0.071744,993.303107,6.40E-04,0.004288,6.48E-04 +2239,0,0,0,0,1.186783824,7.04E-04,0.018047333,0.067810709,0,0,0.005028618,0.081158,8.80E-04,7.719316,0,320.5981607,70.22551876,212.5889568,0.08802585,0.001534839,6.62E-04,1.826165073,1.346854667,0.714626,0.021109973,0,0.281519964,0,0.00235936,4.423507944,49.09825262,40.34931568,5.865573745,8.61004369,0.065765333,966.1670095,5.87E-04,0.003930667,5.94E-04 +2240,0,0,0,0,1.180396793,6.40E-04,0.016406667,0.061646099,0,0,0.004571471,0.07378,8.00E-04,7.01756,0,291.4528733,69.92698835,211.6281456,0.0800235,0.001395309,6.02E-04,1.660150067,1.224413333,0.64966,0.019190885,0,0.25592724,0,0.002144872,4.417147234,48.99692974,40.218622,5.825923925,8.57889508,0.059786667,939.030912,5.33E-04,0.003573333,5.40E-04 +2241,0,0,0,0,1.174009762,5.76E-04,0.014766,0.055481489,0,0,0.004114324,0.066402,7.20E-04,6.315804,0,262.307586,69.62845794,210.6673344,0.07202115,0.001255778,5.42E-04,1.49413506,1.101972,0.584694,0.017271796,0,0.230334516,0,0.001930385,4.410786524,48.89560685,40.08792832,5.786274104,8.54774647,0.053808,911.8948145,4.80E-04,0.003216,4.86E-04 +2242,0,0,0,0,1.167622731,5.12E-04,0.013125333,0.049316879,0,0,0.003657176,0.059024,6.40E-04,5.614048,0,233.1622987,69.32992752,209.7065231,0.0640188,0.001116247,4.82E-04,1.328120053,0.979530667,0.519728,0.015352708,0,0.204741792,0,0.001715898,4.404425814,48.79428396,39.95723464,5.746624284,8.516597859,0.047829333,884.758717,4.27E-04,0.002858667,4.32E-04 +2243,0,0,0,0,1.1612357,4.48E-04,0.011484667,0.04315227,0,0,0.003200029,0.051646,5.60E-04,4.912292,0,204.0170113,69.03139711,208.7457119,0.05601645,9.77E-04,4.21E-04,1.162105047,0.857089333,0.454762,0.013433619,0,0.179149068,0,0.001501411,4.398065103,48.69296108,39.82654097,5.706974464,8.485449249,0.041850667,857.6226195,3.73E-04,0.002501333,3.78E-04 +2244,0,0,0,0,1.154848669,3.84E-04,0.009844,0.03698766,0,0,0.002742882,0.044268,4.80E-04,4.210536,0,174.871724,68.7328667,207.7849007,0.0480141,8.37E-04,3.61E-04,0.99609004,0.734648,0.389796,0.011514531,0,0.153556344,0,0.001286923,4.391704393,48.59163819,39.69584729,5.667324644,8.454300639,0.035872,830.486522,3.20E-04,0.002144,3.24E-04 +2245,0,0,0,0,1.148461638,3.20E-04,0.008203333,0.03082305,0,0,0.002285735,0.03689,4.00E-04,3.50878,0,145.7264367,68.43433629,206.8240895,0.04001175,6.98E-04,3.01E-04,0.830075033,0.612206667,0.32483,0.009595442,0,0.12796362,0,0.001072436,4.385343683,48.4903153,39.56515361,5.627674824,8.423152029,0.029893333,803.3504245,2.67E-04,0.001786667,2.70E-04 +2246,0,0,0,0,1.142074607,2.56E-04,0.006562667,0.02465844,0,0,0.001828588,0.029512,3.20E-04,2.807024,0,116.5811493,68.13580587,205.8632783,0.0320094,5.58E-04,2.41E-04,0.664060027,0.489765333,0.259864,0.007676354,0,0.102370896,0,8.58E-04,4.378982972,48.38899242,39.43445994,5.588025004,8.392003418,0.023914667,776.2143271,2.13E-04,0.001429333,2.16E-04 +2247,0,0,0,0,1.135687577,1.92E-04,0.004922,0.01849383,0,0,0.001371441,0.022134,2.40E-04,2.105268,0,87.435862,67.83727546,204.9024671,0.02400705,4.19E-04,1.81E-04,0.49804502,0.367324,0.194898,0.005757265,0,0.076778172,0,6.43E-04,4.372622262,48.28766953,39.30376626,5.548375183,8.360854808,0.017936,749.0782296,1.60E-04,0.001072,1.62E-04 +2248,0,0,0,0,1.129300546,1.28E-04,0.003281333,0.01232922,0,0,9.14E-04,0.014756,1.60E-04,1.403512,0,58.29057467,67.53874505,203.9416558,0.0160047,2.79E-04,1.20E-04,0.332030013,0.244882667,0.129932,0.003838177,0,0.051185448,0,4.29E-04,4.366261552,48.18634664,39.17307258,5.508725363,8.329706198,0.011957333,721.9421321,1.07E-04,7.15E-04,1.08E-04 +2249,0,0,0,0,1.122913515,6.40E-05,0.001640667,0.00616461,0,0,4.57E-04,0.007378,8.00E-05,0.701756,0,29.14528733,67.24021464,202.9808446,0.00800235,1.40E-04,6.02E-05,0.166015007,0.122441333,0.064966,0.001919088,0,0.025592724,0,2.14E-04,4.359900842,48.08502375,39.0423789,5.469075543,8.298557588,0.005978667,694.8060346,5.33E-05,3.57E-04,5.40E-05 +2250,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2251,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2252,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2253,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2254,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2255,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2256,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2257,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2258,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2259,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2260,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2261,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2262,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2263,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2264,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2265,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2266,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2267,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2268,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2269,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2270,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2271,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2272,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2273,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2274,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2275,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2276,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2277,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2278,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2279,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2280,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2281,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2282,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2283,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2284,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2285,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2286,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2287,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2288,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2289,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2290,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2291,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2292,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2293,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2294,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2295,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2296,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2297,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2298,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2299,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 +2300,0,0,0,0,1.116526484,0,0,0,0,0,0,0,0,0,0,0,66.94168422,202.0200334,0,0,0,0,0,0,0,0,0,0,0,4.353540131,47.98370087,38.91168523,5.429425723,8.267408977,0,667.6699371,0,0,0 diff --git a/inst/shinyApp/www/inputs/ssp126_emissions.csv b/inst/shinyApp/www/inputs/ssp126_emissions.csv new file mode 100644 index 0000000..2278d88 --- /dev/null +++ b/inst/shinyApp/www/inputs/ssp126_emissions.csv @@ -0,0 +1,562 @@ +; ssp126 from rcmip,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; hectordata 0.0.0.9000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; commit dab9aad8750535b,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; date Fri Nov 4 11:35:30 2022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; UNITS:,Pg C/yr,Pg C/yr,Pg C/yr,Pg C/yr,Tg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg CH4,Tg CO,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg N,Tg,Tg NMVOC,Tg N,Tg,Gg,Gg S,Gg,Gg,Gg +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_emissions,CCl4_emissions,CF4_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CFC11_emissions,CFC12_emissions,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_emissions,CH4_emissions,CO_emissions,HCFC141b_emissions,HCFC142b_emissions,HCFC22_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC23_emissions,HFC245fa_emissions,HFC32_emissions,HFC4310_emissions,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,SF6_emissions,SO2_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions +1745,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1746,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1747,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1748,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1749,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1750,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1751,0.002594106,0.08266927,0,0,2.072925926,0,0.024856862,0.010071225,0,0,0,0,0,105.1072,0,4276.7685,18.91510887,343.9263672,0,0,0,0,0,0,0,0,0,0,0,0.055785796,6.860142185,59.08812628,3.833772936,15.18871674,0,1206.06818,0.007723273,0,0 +1752,0.002595208,0.084190146,0,0,2.064311933,0,0.024856862,0.010071225,0,0,0,0,0,105.12502,0,4277.7049,18.88971181,341.8090339,0,0,0,0,0,0,0,0,0,0,0,0.056839716,6.819482037,58.63199703,3.834371851,15.03447574,0,1200.427847,0.007723273,0,0 +1753,0.002595302,0.085739002,0,0,2.071950564,0,0.024856862,0.010071225,0,0,0,0,0,105.10373,0,4276.586,19.12137723,343.6754562,0,0,0,0,0,0,0,0,0,0,0,0.057913547,6.881438529,59.0263494,3.817794323,15.18254515,0,1207.227099,0.007723273,0,0 +1754,0.002596404,0.087316353,0,0,2.099349783,0,0.024856862,0.010071225,0,0,0,0,0,105.07356,0,4274.9998,19.50906107,349.8156252,0,0,0,0,0,0,0,0,0,0,0,0.059007665,7.015189224,60.26994517,3.847331337,15.55877305,0,1232.953114,0.007723273,0,0 +1755,0.002597506,0.088922722,0,0,2.099173165,0,0.024856862,0.010071225,0,0,0,0,0,105.09182,0,4275.9598,19.50045493,348.144668,0,0,0,0,0,0,0,0,0,0,0,0.060122454,6.943989043,59.82493372,3.886652888,15.35818253,0,1223.082685,0.007723273,0,0 +1756,0.00277509,0.090558644,0,0,2.068915407,0,0.024856862,0.010071225,0,0,0,0,0,105.08556,0,4275.6306,19.4625366,343.3231517,0,0,0,0,0,0,0,0,0,0,0,0.061258303,6.922711557,58.94682931,3.780146274,15.19577663,0,1211.479202,0.007723273,0,0 +1757,0.002776193,0.092224663,0,0,2.147923676,0,0.024856862,0.010071225,0,0,0,0,0,105.09137,0,4275.9361,20.02354066,355.9418923,0,0,0,0,0,0,0,0,0,0,0,0.062415611,7.047674129,61.263693,3.998436266,15.70481912,0,1255.688247,0.007723273,0,0 +1758,0.002777295,0.093921331,0,0,2.12061141,0,0.024856862,0.010071225,0,0,0,0,0,105.09662,0,4276.2118,19.93400533,351.839749,0,0,0,0,0,0,0,0,0,0,0,0.063594783,6.995459768,60.43461244,3.95160932,15.51461163,0,1241.80619,0.007723273,0,0 +1759,0.002778397,0.095649213,0,0,2.117267431,0,0.024856862,0.010071225,0,0,0,0,0,105.08372,0,4275.5338,20.14146621,351.5077627,0,0,0,0,0,0,0,0,0,0,0,0.064796232,7.045958325,60.44526305,3.882559461,15.57401349,0,1238.693446,0.007723273,0,0 +1760,0.002778491,0.097408883,0,0,2.127804105,0,0.024856862,0.010071225,0,0,0,0,0,105.04022,0,4273.2473,20.41679714,354.4182853,0,0,0,0,0,0,0,0,0,0,0,0.06602038,7.128048286,61.05172479,3.870426966,15.81906393,0,1250.820917,0.007723273,0,0 +1761,0.0030418,0.099200926,0,0,2.137756989,0,0.024856862,0.010071225,0,0,0,0,0,105.09143,0,4275.9395,20.45599017,354.7079679,0,0,0,0,0,0,0,0,0,0,0,0.067267654,7.080969808,60.9842272,3.947785545,15.69191588,0,1256.548122,0.007723273,0,0 +1762,0.003042907,0.101025937,0,0,2.101748109,0,0.024856862,0.010071225,0,0,0,0,0,105.08127,0,4275.4052,20.45168738,349.2496972,0,0,0,0,0,0,8.32E-08,0,0,1.51E-06,0,0.068538493,7.072547337,60.02708933,3.805606722,15.52593531,0,1235.176016,0.007723273,0,0 +1763,0.003044015,0.102884523,0,0,2.107029758,0,0.024856862,0.010071225,0,0,0,0,0,105.09332,0,4276.0386,20.54517934,350.0593349,0,0,0,0,0,0,6.68E-07,0,0,1.24E-05,0,0.06983334,7.067982584,60.12706627,3.846149431,15.52676249,0,1242.431334,0.007723273,0,0 +1764,0.003045122,0.104777302,0,0,2.071549227,0,0.024856862,0.010071225,0,0,0,0,0,105.1104,0,4276.9364,20.26091721,342.0446107,0,0,0,0,0,0,1.27E-06,0,0,2.50E-05,0,0.07115265,6.89874574,58.43835717,3.829003368,14.95869898,0,1212.823098,0.007723273,0,0 +1765,0.003046229,0.106704903,0,0,2.123600022,0,0.024856862,0.010071225,0,0,0,0,0,105.07293,0,4274.9668,20.919155,352.9327258,0,0,0,0,0,0,1.39E-06,0,0,3.03E-05,0,0.072496884,7.112382325,60.62945786,3.878155223,15.67992411,0,1250.725203,0.007723273,0,0 +1766,0.003396267,0.108667966,0,0,2.110459977,0,0.024856862,0.010071225,0,0,0,0,0,105.07758,0,4275.2111,20.8535919,349.380645,0,0,0,0,0,0,1.42E-06,0,0,3.44E-05,0,0.073866514,7.036296531,59.85878463,3.884852898,15.35883081,0,1244.142077,0.007723273,0,0 +1767,0.003397374,0.110667143,0,0,2.112460701,0,0.024856862,0.010071225,0,0,0,0,0,105.08566,0,4275.6359,20.99917946,349.616099,0,0,0,0,0,0,1.46E-06,0,0,3.84E-05,0,0.07526202,7.045382427,59.8910269,3.880476349,15.4005645,0,1243.308056,0.007723273,0,0 +1768,0.003398482,0.1127031,0,0,2.18313204,0,0.024856862,0.010071225,0,0,0,0,0,105.04673,0,4273.5893,21.65945211,362.6536848,0,0,0,0,0,0,1.49E-06,0,0,4.25E-05,0,0.07668389,7.223617821,62.36582555,4.039005154,16.0637302,0,1294.705423,0.007723273,0,0 +1769,0.003399589,0.114776512,0,0,2.137633742,0,0.024856862,0.010071225,0,0,0,0,0,105.0767,0,4275.165,21.49633535,355.0254185,0,0,0,0,0,0,1.53E-06,0,0,4.65E-05,0,0.078132622,7.157863703,60.95040361,3.914619863,15.73509479,0,1273.362221,0.007723273,0,0 +1770,0.003400696,0.116888069,0,0,2.139364739,0,0.024856862,0.010071225,0,0,0,0,0,105.04544,0,4273.5216,21.63439757,355.3605476,0,0,0,0,0,0,1.57E-06,0,0,5.06E-05,0,0.079608724,7.155978284,60.96602721,3.927122991,15.74271509,0,1277.49221,0.007723273,0,0 +1771,0.003768892,0.119038473,0,0,2.100909701,0,0.024856862,0.010071225,0,0,0,0,0,105.07227,0,4274.9318,21.4289211,347.8619883,0,0,0,0,0,0,1.60E-06,0,0,5.47E-05,0,0.081112713,7.069218405,59.42424033,3.843192573,15.32197739,0,1230.128239,0.007723273,0,0 +1772,0.003770005,0.121228438,0,0,2.087077541,0,0.024856862,0.010071225,0,0,0,0,0,105.08887,0,4275.8046,21.39461572,344.6134738,0,0,0,0,0,0,1.64E-06,0,0,5.87E-05,0,0.082645116,7.043230562,58.72495295,3.812980037,15.11418329,0,1217.836348,0.007723273,0,0 +1773,0.003771118,0.123458692,0,0,2.092755603,0,0.024856862,0.010071225,0,0,0,0,0,105.06952,0,4274.7874,21.59523139,345.7768091,0,0,0,0,0,0,1.67E-06,0,0,6.28E-05,0,0.084206469,7.104503735,58.91656885,3.795742519,15.20466379,0,1220.686645,0.007723273,0,0 +1774,0.003772231,0.125729977,0,0,2.154900741,0,0.024856862,0.010071225,0,0,0,0,0,105.0265,0,4272.5262,22.25970773,358.103585,0,0,0,0,0,0,1.71E-06,0,0,6.68E-05,0,0.08579732,7.347701469,61.31335787,3.892106055,15.87559318,0,1266.428616,0.007723273,0,0 +1775,0.003773344,0.128043046,0,0,2.148996597,0,0.024856862,0.010071225,0,0,0,0,0,105.05246,0,4273.8905,22.20096329,355.0471729,0,0,0,0,0,0,1.75E-06,0,0,7.09E-05,0,0.087418226,7.26964482,60.54083046,3.918102925,15.5891357,0,1250.604504,0.007723273,0,0 +1776,0.004161709,0.13039867,0,0,2.112143132,0,0.024856862,0.010071225,0,0,0,0,0,105.03944,0,4273.2061,22.14194213,348.8985525,0,0,0,0,0,0,1.78E-06,0,0,7.49E-05,0,0.089069754,7.261469977,59.3811448,3.777483547,15.37007702,0,1235.260121,0.007723273,0,0 +1777,0.004162822,0.132797629,0,0,2.170244784,0,0.024856862,0.010071225,0,0,0,0,0,105.05273,0,4273.9048,22.56871006,357.545361,0,0,0,0,0,0,1.82E-06,0,0,7.90E-05,0,0.090752483,7.355973763,60.89349007,3.937981414,15.67345753,0,1262.643552,0.007723273,0,0 +1778,0.004163935,0.135240723,0,0,2.198001402,0,0.024856862,0.010071225,0,0,0,0,0,105.04465,0,4273.48,22.85608093,362.7554135,0,0,0,0,0,0,1.85E-06,0,0,8.30E-05,0,0.092467003,7.434606067,61.78348695,4.021077007,15.89945625,0,1282.280293,0.007723273,0,0 +1779,0.004165048,0.137728763,0,0,2.159615777,0,0.024856862,0.010071225,0,0,0,0,0,105.03691,0,4273.0734,22.82063569,355.9261715,0,0,0,0,0,0,1.89E-06,0,0,8.71E-05,0,0.094213914,7.418773457,60.50081488,3.865645204,15.62745786,0,1253.809198,0.007723273,0,0 +1780,0.00416717,0.140262576,0,0,2.189267588,0,0.024856862,0.010071225,0,0,0,0,0,104.98817,0,4270.511,23.24616665,361.6140422,0,0,0,0,0,0,1.92E-06,0,0,9.10E-05,0,0.095993828,7.569429121,61.61859566,3.871147964,16.0183808,0,1274.797709,0.007723273,0,0 +1781,0.004659413,0.142843003,0,0,2.1894412,0,0.024856862,0.010071225,0,0,0,0,0,105.04236,0,4273.3596,23.24965548,360.0900539,0,0,0,0,0,0,1.96E-06,0,0,9.52E-05,0,0.097807369,7.505783353,61.19330647,3.920723923,15.80695227,0,1277.536252,0.007723273,0,0 +1782,0.004660532,0.145470903,0,0,2.160522701,0,0.024856862,0.010071225,0,0,0,0,0,105.03125,0,4272.7759,23.34175812,356.0465546,0,0,0,0,0,0,2.00E-06,0,0,9.92E-05,0,0.099655171,7.519625788,60.48572145,3.793838185,15.71282083,0,1261.050876,0.007723273,0,0 +1783,0.004662661,0.148147149,0,0,2.15072559,0,0.024856862,0.010071225,0,0,0,0,0,105.0436,0,4273.4248,23.37991679,354.2869243,0,0,0,0,0,0,2.03E-06,0,0,1.03E-04,0,0.101537883,7.496232273,60.10171272,3.788738178,15.60726047,0,1258.691216,0.007723273,0,0 +1784,0.00466378,0.150872629,0,0,2.140542212,0,0.024856862,0.010071225,0,0,0,0,0,105.05531,0,4274.0405,23.2940423,350.5694963,0,0,0,0,0,0,2.07E-06,0,0,1.07E-04,0,0.103456163,7.3811564,59.21225989,3.835360348,15.22814126,0,1241.091384,0.007723273,0,0 +1785,0.004666993,0.153648251,0,0,2.165839691,0,0.024856862,0.010071225,0,0,0,0,0,105.02817,0,4272.6136,23.80210554,356.8051254,0,0,0,0,0,0,2.10E-06,0,0,1.11E-04,0,0.105410684,7.538152323,60.49447936,3.821649192,15.73271148,0,1266.56815,0.007723273,0,0 +1786,0.00529538,0.156474937,0,0,2.158683485,0,0.024856862,0.010071225,0,0,0,0,0,105.02684,0,4272.5442,23.831995,354.2058773,0,0,0,0,0,0,2.14E-06,0,0,1.15E-04,0,0.107402131,7.491084254,59.91468241,3.826316215,15.46715712,0,1263.905903,0.007723273,0,0 +1787,0.005297508,0.159353625,0,0,2.185179294,0,0.024856862,0.010071225,0,0,0,0,0,105.03415,0,4272.9283,24.17652818,358.7933683,0,0,0,0,0,0,2.18E-06,0,0,1.19E-04,0,0.1094312,7.55517197,60.75335708,3.885107996,15.71033146,0,1281.331419,0.007723273,0,0 +1788,0.005298627,0.162285272,0,0,2.255223484,0,0.024856862,0.010071225,0,0,0,0,0,104.9922,0,4270.7227,24.85592892,371.3570923,0,0,0,0,0,0,2.21E-06,0,0,1.23E-04,0,0.111498603,7.730934741,63.12433047,4.038519355,16.34335434,0,1326.080725,0.007723273,0,0 +1789,0.005300755,0.165270854,0,0,2.207664632,0,0.024856862,0.010071225,0,0,0,0,0,105.0242,0,4272.405,24.71707284,363.4416446,0,0,0,0,0,0,2.25E-06,0,0,1.28E-04,0,0.113605064,7.663516243,61.63229238,3.911091424,16.00040861,0,1300.935055,0.007723273,0,0 +1790,0.005302883,0.168311362,0,0,2.216436996,0,0.024856862,0.010071225,0,0,0,0,0,104.99139,0,4270.6805,24.94220857,364.8802164,0,0,0,0,0,0,2.28E-06,0,0,1.32E-04,0,0.115751321,7.680254371,61.84599181,3.937203207,16.05674391,0,1304.800481,0.007723273,0,0 +1791,0.005920183,0.171407806,0,0,2.172583556,0,0.024856862,0.010071225,0,0,0,0,0,105.02128,0,4272.2515,24.77843217,356.6583862,0,0,0,0,0,0,2.32E-06,0,0,1.36E-04,0,0.117938125,7.556943543,60.2187392,3.848117366,15.61644988,0,1284.768804,0.007723273,0,0 +1792,0.006098811,0.174561216,0,0,2.161650793,0,0.024856862,0.010071225,0,0,0,0,0,105.04466,0,4273.4807,24.81889294,354.2515376,0,0,0,0,0,0,2.36E-06,0,0,1.40E-04,0,0.120166243,7.499155045,59.70568574,3.852168551,15.44666919,0,1279.936623,0.007723273,0,0 +1793,0.006105082,0.17777264,0,0,2.153273834,0,0.024856862,0.010071225,0,0,0,0,0,105.02605,0,4272.5025,25.03153141,353.3723093,0,0,0,0,0,0,2.39E-06,0,0,1.44E-04,0,0.122436456,7.518120739,59.5849395,3.798134648,15.47797954,0,1276.675891,0.007723273,0,0 +1794,0.006092419,0.181043144,0,0,2.213843116,0,0.024856862,0.010071225,0,0,0,0,0,104.98417,0,4270.301,25.76753778,365.721914,0,0,0,0,0,0,2.43E-06,0,0,1.48E-04,0,0.124749558,7.731535991,62.03822453,3.901984421,16.16525997,0,1323.391544,0.007723273,0,0 +1795,0.006095933,0.184373817,0,0,2.202692273,0,0.024856862,0.010071225,0,0,0,0,0,105.01093,0,4271.7076,25.77334281,362.1921227,0,0,0,0,0,0,2.46E-06,0,0,1.52E-04,0,0.127106359,7.626169221,61.24273214,3.919106621,15.88313195,0,1307.117791,0.007723273,0,0 +1796,0.006396386,0.187765764,0,0,2.153154616,0,0.024856862,0.010071225,0,0,0,0,0,104.99978,0,4271.1214,25.74058407,354.4783029,0,0,0,0,0,0,2.50E-06,0,0,1.56E-04,0,0.129507686,7.581863097,59.86424243,3.749609514,15.6283698,0,1286.414837,0.007723273,0,0 +1797,0.006712627,0.191220113,0,0,2.213475036,0,0.024856862,0.010071225,0,0,0,0,0,105.01623,0,4271.986,26.23006226,363.5482372,0,0,0,0,0,0,2.54E-06,0,0,1.60E-04,0,0.131954379,7.636302582,61.47137695,3.940974102,15.93865305,0,1322.1792,0.007723273,0,0 +1798,0.006990649,0.194738012,0,0,2.234056283,0,0.024856862,0.010070485,0,0,0,0,0,105.0081,0,4271.559,26.54644012,367.6501028,0,0,0,0,0,0,2.57E-06,0,0,1.64E-04,0,0.134447296,7.671017716,62.19763903,4.015700361,16.12667274,0,1344.494311,0.007723273,0,0 +1799,0.007363034,0.198320631,0,0,2.207292165,0,0.024856862,0.010071964,0,0,0,0,0,104.99068,0,4270.6431,26.70648817,363.4860469,0,0,0,0,0,0,2.61E-06,0,0,1.68E-04,0,0.13698731,7.67446285,61.4962302,3.882903388,16.03734279,0,1332.732765,0.007723273,0,0 +1800,0.007853248,0.201969159,0,0,2.215974055,0,0.024856862,0.010071225,0,0,0,0,0,104.95838,0,4268.9449,27.05634308,365.8466368,0,0,0,0,0,0,2.64E-06,0,0,1.72E-04,0,0.13957531,7.740645322,62.00320914,3.867691465,16.2421417,0,1351.401885,0.007723273,0,0 +1801,0.007792363,0.20568481,0,0,2.21940169,0,0.024856862,0.010071225,0,0,0,0,0,105.01099,0,4271.7107,27.12488718,364.9170684,0,0,0,0,0,0,2.68E-06,0,0,1.76E-04,0,0.142212204,7.701186978,61.66564779,3.921843763,16.06373322,0,1346.312669,0.007723273,0,0 +1802,0.010116776,0.209468818,0,0,2.202692661,0,0.024856862,0.010071225,0,0,0,0,0,104.99468,0,4270.8532,27.33978432,362.9627075,0,0,0,0,0,0,2.72E-06,0,0,1.80E-04,0,0.144898914,7.763054085,61.32615659,3.814905719,16.07582361,0,1365.792459,0.007723273,0,0 +1803,0.008763958,0.213322441,0,0,2.180015828,0,0.024856862,0.010071225,0,0,0,0,0,105.0108,0,4271.7009,27.32049985,358.65078,0,0,0,0,0,0,2.75E-06,0,0,1.84E-04,0,0.147636382,7.720863757,60.40434182,3.773697199,15.83103088,0,1340.023262,0.007723273,0,0 +1804,0.00956559,0.21724696,0,0,2.197298087,0,0.024856862,0.010071225,0,0,0,0,0,105.0121,0,4271.7691,27.46474997,359.528696,0,0,0,0,0,0,2.79E-06,0,0,1.88E-04,0,0.150425568,7.68708673,60.36470275,3.871473305,15.67624811,0,1347.990682,0.007723273,0,0 +1805,0.009351564,0.221243678,0,0,2.215042398,0,0.024856862,0.010071225,0,0,0,0,0,104.98963,0,4270.588,27.9507982,364.3037043,0,0,0,0,0,0,2.82E-06,0,0,1.92E-04,0,0.153267447,7.835162209,61.31991146,3.843518327,16.0941548,0,1367.021932,0.007723273,0,0 +1806,0.009786482,0.225313924,0,0,2.222822585,0,0.024856862,0.010071225,0,0,0,0,0,104.98239,0,4270.2074,28.13437245,364.3432293,0,0,0,0,0,0,2.86E-06,0,0,1.96E-04,0,0.156163016,7.843541453,61.22344968,3.877012285,15.95144317,0,1370.297233,0.007723273,0,0 +1807,0.010470139,0.229459052,0,0,2.239871982,0,0.024856862,0.010071225,0,0,0,0,0,104.99423,0,4270.8298,28.45865603,367.2349328,0,0,0,0,0,0,2.90E-06,0,0,2.00E-04,0,0.159113289,7.906227329,61.70646914,3.906741383,16.11756408,0,1389.725529,0.007723273,0,0 +1808,0.009785087,0.233680437,0,0,2.311936484,0,0.024856862,0.010071225,0,0,0,0,0,104.95199,0,4268.6094,29.18524117,380.035272,0,0,0,0,0,0,2.93E-06,0,0,2.04E-04,0,0.162119299,8.095303457,64.08195973,4.070358273,16.7315469,0,1425.575123,0.007723273,0,0 +1809,0.009793704,0.237979484,0,0,2.26744264,0,0.024856862,0.010071225,0,0,0,0,0,104.979,0,4270.0292,29.12865813,372.8486855,0,0,0,0,0,0,2.97E-06,0,0,2.08E-04,0,0.1651821,8.062766978,62.71002213,3.940068496,16.44016599,0,1403.131587,0.007723273,0,0 +1810,0.010412685,0.242357621,0,0,2.279523716,0,0.024856862,0.010071225,0,0,0,0,0,104.93988,0,4267.9729,29.42453242,374.7180119,0,0,0,0,0,0,3.00E-06,0,0,2.12E-04,0,0.168302763,8.107079152,62.97351665,3.9615916,16.52538808,0,1414.194561,0.007723273,0,0 +1811,0.011014901,0.246816304,0,0,2.252530236,0,0.024856862,0.010071225,0,0,0,0,0,104.96903,0,4269.505,29.40578756,369.2694863,0,0,0,0,0,0,3.04E-06,0,0,2.17E-04,0,0.171482384,8.026948341,61.829606,3.9187457,16.18886557,0,1403.686743,0.007723273,0,0 +1812,0.011395912,0.251357013,0,0,2.228006935,0,0.024856862,0.010071225,0,0,0,0,0,104.99029,0,4270.6225,29.4202985,364.5806875,0,0,0,0,0,0,3.07E-06,0,0,2.21E-04,0,0.174722074,7.965169636,60.85746997,3.875988658,15.92905063,0,1394.884132,0.007723273,0,0 +1813,0.011449081,0.255981258,0,0,2.231996859,0,0.024856862,0.010071225,0,0,0,0,0,104.97005,0,4269.5589,29.77847603,365.9138874,0,0,0,0,0,0,3.11E-06,0,0,2.25E-04,0,0.178022969,8.032995952,61.1361302,3.844088557,16.06491504,0,1400.325553,0.007723273,0,0 +1814,0.011703716,0.260690576,0,0,2.291579691,0,0.024856862,0.010071225,0,0,0,0,0,104.93884,0,4267.9182,30.54785186,377.9855417,0,0,0,0,0,0,3.14E-06,0,0,2.29E-04,0,0.181386226,8.255365792,63.49192823,3.946873452,16.71992349,0,1449.11988,0.007723273,0,0 +1815,0.012094117,0.265486531,0,0,2.287324694,0,0.024856862,0.010071225,0,0,0,0,0,104.94955,0,4268.4808,30.64433954,375.5806648,0,0,0,0,0,0,3.18E-06,0,0,2.33E-04,0,0.184813022,8.178894558,62.8715757,3.977998266,16.48749688,0,1442.834604,0.007723273,0,0 +1816,0.013382563,0.270370719,0,0,2.261022,0,0.024856862,0.010071225,0,0,0,0,0,104.93504,0,4267.7184,30.79985622,371.6298228,0,0,0,0,0,0,3.22E-06,0,0,2.37E-04,0,0.188304559,8.188247477,62.14643252,3.866008445,16.39503385,0,1449.517631,0.007723273,0,0 +1817,0.013970106,0.275344761,0,0,2.296180569,0,0.024856862,0.010071225,0,0,0,0,0,104.95336,0,4268.6815,31.19839541,376.4429441,0,0,0,0,0,0,3.25E-06,0,0,2.41E-04,0,0.191862058,8.220825384,62.94153101,3.981202576,16.51722865,0,1472.005827,0.007723273,0,0 +1818,0.014054847,0.280410312,0,0,2.335490105,0,0.024856862,0.010071225,0,0,0,0,0,104.94012,0,4267.9855,31.68760832,383.9142096,0,0,0,0,0,0,3.29E-06,0,0,2.45E-04,0,0.195486767,8.306817108,64.26768049,4.109295846,16.84964888,0,1503.330753,0.007723273,0,0 +1819,0.01412101,0.285569054,0,0,2.304129482,0,0.024856862,0.010071225,0,0,0,0,0,104.92235,0,4267.0511,31.84544135,378.3325838,0,0,0,0,0,0,3.32E-06,0,0,2.49E-04,0,0.199179954,8.302878859,63.25758927,3.96351919,16.66519821,0,1480.397209,0.007723273,0,0 +1820,0.014336733,0.290822702,0,0,2.321048766,0,0.024856862,0.010071225,0,0,0,0,0,104.88909,0,4265.3029,32.33339467,382.4197483,0,0,0,0,0,0,3.36E-06,0,0,2.53E-04,0,0.202942914,8.416077975,64.0766433,3.958562233,16.96356441,0,1500.127423,0.007723273,0,0 +1821,0.014562069,0.296173002,0,0,2.333483777,0,0.024856862,0.010071225,0,0,0,0,0,104.93899,0,4267.9261,32.52138863,382.8975341,0,0,0,0,0,0,3.40E-06,0,0,2.57E-04,0,0.206776965,8.396299171,63.98744909,4.029731628,16.86010032,0,1506.00016,0.007723273,0,0 +1822,0.015133379,0.301621733,0,0,2.302515118,0,0.024856862,0.010071225,0,0,0,0,0,104.92104,0,4266.9822,32.73451052,378.6708004,0,0,0,0,0,0,3.43E-06,0,0,2.61E-04,0,0.21068345,8.447852069,63.22724653,3.871133523,16.79629808,0,1499.477254,0.007723273,0,0 +1823,0.016038149,0.307170704,0,0,2.282471765,0,0.024856862,0.010071225,0,0,0,0,0,104.94096,0,4268.0293,32.75571509,374.3931813,0,0,0,0,0,0,3.47E-06,0,0,2.65E-04,0,0.214663737,8.395261064,62.26076437,3.846052063,16.53271228,0,1499.604752,0.007723273,0,0 +1824,0.016501009,0.31282176,0,0,2.310947811,0,0.024856862,0.010071225,0,0,0,0,0,104.93425,0,4267.6765,33.0519787,377.0407114,0,0,0,0,0,0,3.50E-06,0,0,2.69E-04,0,0.218719221,8.395833943,62.5634338,3.956577313,16.47072526,0,1512.912552,0.007723273,0,0 +1825,0.017222663,0.318576779,0,0,2.322703112,0,0.024856862,0.010071225,0,0,0,0,0,104.91652,0,4266.7449,33.52533882,380.3167498,0,0,0,0,0,0,3.54E-06,0,0,2.73E-04,0,0.222851322,8.516236489,63.18578955,3.919068065,16.80867752,0,1538.203336,0.007723273,0,0 +1826,0.01738223,0.324437675,0,0,2.320968834,0,0.024856862,0.010071225,0,0,0,0,0,104.90841,0,4266.3186,33.7481029,378.8222655,0,0,0,0,0,0,3.57E-06,0,0,2.77E-04,0,0.227061488,8.523620414,62.81594151,3.911604483,16.62077908,0,1531.982813,0.007723273,0,0 +1827,0.018639877,0.330406393,0,0,2.346337782,0,0.024856862,0.010071225,0,0,0,0,0,104.91515,0,4266.6729,34.15505001,382.4773392,0,0,0,0,0,0,3.61E-06,0,0,2.81E-04,0,0.231351194,8.585850324,63.38999011,3.962793591,16.79991923,0,1566.092214,0.007723273,0,0 +1828,0.018824746,0.336484919,0,0,2.420774153,0,0.024856862,0.010071225,0,0,0,0,0,104.87222,0,4264.4159,34.99912851,395.9754325,0,0,0,0,0,0,3.64E-06,0,0,2.85E-04,0,0.235721941,8.801495947,65.90535949,4.116354977,17.4805645,0,1618.020723,0.007723273,0,0 +1829,0.018664196,0.342675273,0,0,2.379376332,0,0.024856862,0.010071225,0,0,0,0,0,104.90025,0,4265.8895,35.01640513,389.1746282,0,0,0,0,0,0,3.68E-06,0,0,2.89E-04,0,0.240175262,8.767229394,64.57289824,4.000350816,17.19408165,0,1597.238302,0.007723273,0,0 +1830,0.024933734,0.348979511,0,0,2.403159831,0,0.024856862,0.010071225,0,0,0,0,0,104.8667,0,4264.1256,35.40215534,392.1065329,0,0,0,0,0,0,3.72E-06,0,0,2.93E-04,0,0.244712716,8.818806446,64.94076179,4.03843029,17.31425157,0,1705.903254,0.007723273,0,0 +1831,0.023660178,0.355399729,0,0,2.361347125,0,0.024856862,0.010071225,0,0,0,0,0,104.89174,0,4265.442,35.37418705,384.2012507,0,0,0,0,0,0,3.75E-06,0,0,2.97E-04,0,0.249335894,8.731507392,63.33682174,3.947409453,16.87772867,0,1661.03313,0.007723273,0,0 +1832,0.023685925,0.36193806,0,0,2.353863299,0,0.024856862,0.010071225,0,0,0,0,0,104.90924,0,4266.362,35.56272349,382.363398,0,0,0,0,0,0,3.79E-06,0,0,3.01E-04,0,0.254046413,8.712430009,62.87089656,3.946175053,16.73898675,0,1660.610583,0.007723273,0,0 +1833,0.024226693,0.368596678,0,0,2.356959381,0,0.024856862,0.010070485,0,0,0,0,0,104.89175,0,4265.4426,35.98083111,383.4537928,0,0,0,0,0,0,3.82E-06,0,0,3.05E-04,0,0.258845925,8.790922957,63.0695837,3.905335594,16.86449692,0,1673.874936,0.007723273,0,0 +1834,0.024702586,0.375377795,0,0,2.412445466,0,0.024856862,0.010071964,0,0,0,0,0,104.854,0,4263.4584,36.76106097,394.1429023,0,0,0,0,0,0,3.86E-06,0,0,3.09E-04,0,0.26373611,9.001420472,65.10499264,3.989061294,17.45428534,0,1721.269347,0.007723273,0,0 +1835,0.025273638,0.382283665,0,0,2.405456375,0,0.024856862,0.010071225,0,0,0,0,0,104.8698,0,4264.2887,36.88278973,390.5551392,0,0,0,0,0,0,3.90E-06,0,0,3.13E-04,0,0.268718682,8.925548286,64.23544317,3.998558037,17.17048679,0,1718.222125,0.007723273,0,0 +1836,0.029221069,0.389316584,0,0,2.404187956,0,0.024856862,0.010071225,0,0,0,0,0,104.84901,0,4263.1961,37.24729235,389.9786644,0,0,0,0,0,0,3.93E-06,0,0,3.17E-04,0,0.273795386,8.993015086,64.08016333,3.917445996,17.23500429,0,1783.083419,0.007723273,0,0 +1837,0.029260399,0.396478888,0,0,2.440210174,0,0.024856862,0.010071225,0,0,0,0,0,104.86946,0,4264.2707,37.69980678,394.7565038,0,0,0,0,0,0,3.97E-06,0,0,3.21E-04,0,0.278968001,9.027059824,64.82242714,4.040217213,17.35383524,0,1798.088197,0.007723273,0,0 +1838,0.030288693,0.403772957,0,0,2.477311746,0,0.024856862,0.010071225,0,0,0,0,0,104.85548,0,4263.5362,38.24210962,401.296187,0,0,0,0,0,0,4.00E-06,0,0,3.25E-04,0,0.284238338,9.122535895,65.94724657,4.142172855,17.64153847,0,1841.543139,0.007723273,0,0 +1839,0.031310557,0.411201217,0,0,2.452638138,0,0.024856862,0.010071225,0,0,0,0,0,104.83788,0,4262.6108,38.51117556,396.9116369,0,0,0,0,0,0,4.04E-06,0,0,3.29E-04,0,0.289608243,9.139608329,65.11131218,4.015311872,17.50517633,0,1843.080824,0.007723273,0,0 +1840,0.033542974,0.418766135,0,0,2.443877522,0,0.024856862,0.010071225,0,0,0,0,0,104.80755,0,4261.0163,38.88776194,395.8809162,0,0,0,0,0,0,4.07E-06,0,0,3.33E-04,0,0.295079598,9.211326299,64.92298176,3.92426914,17.57513248,0,1874.141828,0.007723273,0,0 +1841,0.034601229,0.426470225,0,0,2.490489852,0,0.024856862,0.010071225,0,0,0,0,0,104.84789,0,4263.137,39.38162317,402.3727418,0,0,0,0,0,0,4.11E-06,0,0,3.37E-04,0,0.30065432,9.249453202,65.94544518,4.089445548,17.74554357,0,1916.264207,0.007723273,0,0 +1842,0.03663998,0.434316049,0,0,2.449170469,0,0.024856862,0.010070485,0,0,0,0,0,104.84034,0,4262.7403,39.61872888,396.9951221,0,0,0,0,0,0,4.14E-06,0,0,3.41E-04,0,0.30633436,9.261381852,64.92167359,3.936168061,17.59096172,0,1931.462508,0.007723273,0,0 +1843,0.037450386,0.442306214,0,0,2.411136271,0,0.024856862,0.010071964,0,0,0,0,0,104.85726,0,4263.6297,39.65326382,389.7367809,0,0,0,0,0,0,4.18E-06,0,0,3.45E-04,0,0.31212171,9.185852612,63.42406091,3.846066212,17.21821832,0,1929.660398,0.007723273,0,0 +1844,0.039846973,0.450443374,0,0,2.443825896,0,0.024856862,0.010071225,0,0,0,0,0,104.85117,0,4263.3094,40.04426499,392.7074417,0,0,0,0,0,0,4.22E-06,0,0,3.49E-04,0,0.318018395,9.178913526,63.7624543,3.965309781,17.1801219,0,1991.445647,0.007723273,0,0 +1845,0.043792129,0.458730235,0,0,2.471371875,0,0.024856862,0.010071225,0,0,0,0,0,104.83257,0,4262.3319,40.66967667,397.850056,0,0,0,0,0,0,4.25E-06,0,0,3.53E-04,0,0.324026483,9.307905911,64.68556723,3.957876345,17.5993633,0,2080.381092,0.007723273,0,0 +1846,0.044197374,0.46716955,0,0,2.471198742,0,0.024856862,0.010071225,0,0,0,0,0,104.82423,0,4261.8933,40.97519975,395.9082622,0,0,0,0,0,0,4.29E-06,0,0,3.57E-04,0,0.330148076,9.302498358,64.24405153,3.94954154,17.39887857,0,2072.290434,0.007723273,0,0 +1847,0.047464619,0.475764124,0,0,2.521115228,0,0.024856862,0.010071225,0,0,0,0,0,104.82758,0,4262.0693,41.61647168,402.9851575,0,0,0,0,0,0,4.32E-06,0,0,3.61E-04,0,0.336385321,9.401962019,65.44362075,4.0405661,17.76051419,0,2154.230603,0.007723273,0,0 +1848,0.047117807,0.484516814,0,0,2.5773718,1.49E-05,0.024856862,0.010070485,0,0,0,0,0,104.78829,0,4260.004,42.44947063,413.5582929,0,0,0,0,0,0,4.36E-06,0,0,3.65E-04,0,0.342740401,9.573238567,67.39824375,4.1550565,18.30069373,0,2204.416735,0.007723273,0,0 +1849,0.048851442,0.493430528,0,0,2.552394089,1.20E-04,0.024856862,0.010071964,0,0,0,0,0,104.81678,0,4261.5016,42.63396461,408.9399341,0,0,0,0,0,0,4.39E-06,0,0,3.69E-04,0,0.349215542,9.543358834,66.42707154,4.087020956,18.07478627,0,2224.89572,0.007723273,0,0 +1850,0.051384895,0.502508228,0,0,2.571124479,2.25E-04,0.024856862,0.010071225,0,0,0,0,0,104.93295,0,4267.6083,43.14236365,411.4628743,0,0,0,0,0,0,4.44E-06,0,0,3.74E-04,0,0.355813014,9.604162557,66.78304875,4.096904208,18.22682479,0,2275.776711,0.007723273,0,0 +1851,0.051562308,0.494656367,0,0,2.526692589,2.41E-04,0.024856862,0.010071225,0,0,0,0,0,104.96457,0,4269.2706,43.15191371,402.2448153,0,0,0,0,0,0,4.48E-06,0,0,3.78E-04,0,0.363793441,9.478471328,64.95004659,4.010397678,17.72630049,0,2256.815147,0.007723273,0,0 +1852,0.05364238,0.550685869,0,0,2.50763416,2.42E-04,0.024856862,0.010071225,0,0,0,0,0,104.98199,0,4270.1861,43.34412933,397.49852,0,0,0,0,0,0,4.51E-06,0,0,3.83E-04,0,0.372424224,9.424520247,63.95789986,3.958451611,17.47926155,0,2277.634405,0.007723273,0,0 +1853,0.055952349,0.548631086,0,0,2.527811743,2.43E-04,0.024856862,0.010071225,0,0,0,0,0,104.9693,0,4269.5191,43.88435963,400.3388041,0,0,0,0,0,0,4.55E-06,0,0,3.87E-04,0,0.380109709,9.493187126,64.44555418,3.968326235,17.65848988,0,2326.420616,0.007723273,0,0 +1854,0.065895655,0.546739774,0,0,2.610048543,2.44E-04,0.024856862,0.010071225,0,0,0,0,0,104.9226,0,4267.0641,44.80907906,413.3991315,0,0,0,0,0,0,4.58E-06,0,0,3.90E-04,0,0.388118038,9.708926054,66.79469522,4.086374133,18.34043133,0,2535.158195,0.007723273,0,0 +1855,0.066560595,0.543758287,0,0,2.593264313,2.45E-04,0.024856862,0.010070485,0,0,0,0,0,104.95064,0,4268.5385,44.9570539,408.1104539,0,0,0,0,0,0,4.62E-06,0,0,3.95E-04,0,0.395154931,9.60821845,65.65156398,4.071657216,17.9916486,0,2531.882071,0.007723273,0,0 +1856,0.071195717,0.549725266,0,0,2.573430007,2.47E-04,0.024856862,0.010071964,0,0,0,0,0,104.92886,0,4267.3934,45.32147323,404.8549167,0,0,0,0,0,0,4.65E-06,0,0,3.98E-04,0,0.401213616,9.648967408,65.0425347,3.941501863,17.95411805,0,2598.32335,0.007723273,0,0 +1857,0.071893947,0.555060913,0,0,2.636452577,2.49E-04,0.024856862,0.010071225,0,0,0,0,0,104.94976,0,4268.4922,46.01300694,414.6731918,0,0,0,0,0,0,4.69E-06,0,0,4.03E-04,0,0.40752619,9.717987449,66.72779877,4.159141007,18.29156565,0,2646.996287,0.007723273,0,0 +1858,0.07302816,0.55973691,0,0,2.660122642,2.51E-04,0.024856862,0.010071225,0,0,0,0,0,104.93987,0,4267.9722,46.54057729,419.0140236,0,0,0,0,0,0,4.73E-06,0,0,4.07E-04,0,0.412517456,9.773872717,67.47060376,4.240872485,18.4792763,0,2684.853418,0.007723273,0,0 +1859,0.077852113,0.567385369,0,0,2.64820325,2.53E-04,0.024856862,0.010071225,0,0,0,0,0,104.91443,0,4266.635,46.94962615,416.2997485,0,0,0,0,0,0,4.76E-06,0,0,4.10E-04,0,0.416997408,9.815633788,66.95694734,4.119710729,18.44950598,0,2765.351504,0.007723273,0,0 +1860,0.08580579,0.57190571,0,0,2.648404731,2.55E-04,0.024856862,0.010810676,0,0,0,0,0,104.89112,0,4265.4096,47.37614023,416.0639966,0,0,0,0,0,0,4.79E-06,0,0,4.14E-04,0,0.420752578,9.868462594,66.84953493,4.060976263,18.520468,0,2898.377784,0.007723273,0,0 +1861,0.090437572,0.583095346,0,0,2.670268663,2.57E-04,0.024856862,0.010810691,0,0,0,0,0,104.94268,0,4268.1198,48.2346867,417.2441372,0,0,0,0,0,0,4.83E-06,0,0,4.19E-04,0,0.42335986,9.857135646,66.88575551,4.161212988,18.43711983,0,2971.278843,0.007723273,0,0 +1862,0.091865591,0.522956563,0,0,2.648564983,2.60E-04,0.024856862,0.010071254,0,0,0,0,0,104.93302,0,4267.612,49.13056212,414.1628066,0,0,0,0,0,0,4.87E-06,0,0,4.23E-04,0,0.425968395,9.918881972,66.35896016,4.042449359,18.41589321,0,2976.388043,0.007723273,0,0 +1863,0.097488554,0.523134297,0,0,2.629269514,2.62E-04,0.024856862,0.010071254,0,0,0,0,0,104.9509,0,4268.552,49.71022253,408.1224194,0,0,0,0,0,0,4.91E-06,0,0,4.27E-04,0,0.428432683,9.868665854,65.0096354,3.971519356,18.09141101,0,3064.446907,0.007723273,0,0 +1864,0.104725139,0.523481383,0,0,2.667755634,2.65E-04,0.024856862,0.010071254,0,0,0,0,0,104.94467,0,4268.2247,50.66032473,411.3310643,0,0,0,0,0,0,4.94E-06,0,0,4.31E-04,0,0.431014196,9.887134077,65.39906664,4.087458726,18.0938173,0,3193.218259,0.007723273,0,0 +1865,0.110936319,0.524250384,0,0,2.720201066,2.68E-04,0.024856862,0.010810706,0,0,0,0,0,104.93017,0,4267.4623,51.9800751,420.489005,0,0,0,0,0,0,4.98E-06,0,0,4.35E-04,0,0.433438772,10.07353478,67.10347351,4.157661467,18.66656838,0,3327.080176,0.007723273,0,0 +1866,0.114738508,0.524386363,0,0,2.710298337,2.71E-04,0.024856862,0.01081072,0,0,0,0,0,104.92398,0,4267.1368,52.74699293,417.1011849,0,0,0,0,0,0,5.01E-06,0,0,4.39E-04,0,0.435744776,10.06454912,66.37528156,4.133671178,18.39468019,0,3388.258078,0.007723273,0,0 +1867,0.12258204,0.522876455,0,0,2.761022671,2.74E-04,0.024856862,0.010070544,0,0,0,0,0,104.93094,0,4267.5026,53.94102178,424.2969753,0,0,0,0,0,0,5.05E-06,0,0,4.43E-04,0,0.438210649,10.1891331,67.66026449,4.231180961,18.76835617,0,3565.435535,0.007723273,0,0 +1868,0.125609442,0.521415398,0,0,2.825140562,2.77E-04,0.024856862,0.010072023,0,0,0,0,0,104.89186,0,4265.4483,55.28767356,434.9302283,0,0,0,0,0,0,5.08E-06,0,0,4.47E-04,0,0.441434256,10.37220092,69.64729381,4.363304735,19.30124757,0,3668.308732,0.007723273,0,0 +1869,0.133291522,0.519770898,0,0,2.785004317,2.81E-04,0.024856862,0.010810735,0,0,0,0,0,104.93014,0,4267.4609,55.83359728,426.4036167,0,0,0,0,0,0,5.12E-06,0,0,4.51E-04,0,0.443908266,10.31106127,67.92949559,4.245329954,18.88882504,0,3791.462745,0.007723273,0,0 +1870,0.136674384,0.51867186,0,0,2.831200782,2.84E-04,0.024856862,0.01081075,0,0,0,0,0,104.89317,0,4265.5174,56.99659231,433.2287624,0,0,0,0,0,0,5.15E-06,0,0,4.55E-04,0,0.446639961,10.44102397,69.12187694,4.32346865,19.25812075,0,3887.529335,0.007723273,0,0 +1871,0.145249161,0.538815215,0,0,2.797830347,2.88E-04,0.024856862,0.010071314,0,0,0,0,0,104.92871,0,4267.3856,57.57401422,425.1606513,0,0,0,0,0,0,5.19E-06,0,0,4.59E-04,0,0.454335934,10.3694977,67.42862358,4.269404037,18.76177377,0,4016.032279,0.007723273,0,0 +1872,0.160346513,0.624237802,0,0,2.771292694,2.92E-04,0.024856862,0.010810765,0,0,0,0,0,104.95075,0,4268.5441,58.18710545,417.7442734,0,0,0,0,0,0,5.23E-06,0,0,4.63E-04,0,0.470862622,10.33038424,65.84553711,4.178709817,18.36534165,0,4250.256916,0.007723273,0,0 +1873,0.170095482,0.635197776,0,0,2.841633848,2.96E-04,0.024856862,0.01081078,0,0,0,0,0,104.93223,0,4267.5705,59.62016165,429.280289,0,0,0,0,0,0,5.26E-06,0,0,4.67E-04,0,0.49389425,10.56453512,67.99437045,4.309987324,18.9372989,0,4473.449628,0.007723273,0,0 +1874,0.161012643,0.642458922,0,0,2.86805891,3.00E-04,0.024856862,0.010810794,0,0,0,0,0,104.88493,0,4265.0843,60.88850035,435.80418,0,0,0,0,0,0,5.30E-06,0,0,4.71E-04,0,0.521735812,10.75161101,69.34908007,4.369596918,19.30481072,0,4382.176552,0.007723273,0,0 +1875,0.173259068,0.650321509,0,0,2.833489105,3.05E-04,0.024856862,0.010810809,0,0,0,0,0,104.93101,0,4267.5065,61.4471703,426.8934955,0,0,0,0,0,0,5.33E-06,0,0,4.75E-04,0,0.552163614,10.66354523,67.4820886,4.311546236,18.75387609,0,4552.510356,0.007723273,0,0 +1876,0.175938232,0.65804039,0,0,2.843125267,3.09E-04,0.024856862,0.010810824,0,0,0,0,0,104.90175,0,4265.968,62.60294811,429.4805477,0,0,0,0,0,0,5.37E-06,0,0,4.79E-04,0,0.58288316,10.83189303,68.07266489,4.273649915,19.00214066,0,4640.322706,0.007723273,0,0 +1877,0.179825348,0.664694086,0,0,2.881579173,3.14E-04,0.024856862,0.010810839,0,0,0,0,0,104.92824,0,4267.3608,63.64524259,434.060346,0,0,0,0,0,0,5.41E-06,0,0,4.83E-04,0,0.612226706,10.8970216,68.77838073,4.413505724,19.0890591,0,4762.604755,0.007723273,0,0 +1878,0.180776983,0.671585762,0,0,2.905036494,3.19E-04,0.024856862,0.010810853,0,0,0,0,0,104.92472,0,4267.1759,64.71120383,437.9599498,0,0,0,0,0,0,5.44E-06,0,0,4.87E-04,0,0.637718424,10.99894534,69.46979574,4.503130841,19.22817131,0,4806.316495,0.007723273,0,0 +1879,0.193175438,0.678615294,0,0,2.92925864,3.23E-04,0.024856862,0.010810868,0,0,0,0,0,104.88028,0,4264.8396,65.90279841,440.8517591,0,0,0,0,0,0,5.47E-06,0,0,4.91E-04,0,0.658926777,11.18150569,70.08572002,4.447158396,19.48731539,0,5054.634873,0.007723273,0,0 +1880,0.219340005,0.684857424,0,0,2.921172062,3.29E-04,0.024856862,0.010810144,0,0,0,0,0,104.88174,0,4264.9162,66.6649843,437.3657275,0,0,0,0,0,0,5.51E-06,0,0,4.95E-04,0,0.672777776,11.21057035,69.18788119,4.386751757,19.32682128,0,5476.691841,0.007723273,0,0 +1881,0.22522318,0.722626203,0,0,2.962877226,3.34E-04,0.024856862,0.011551088,0,0,0,0,0,104.92914,0,4267.4079,67.70670095,440.9737248,0,0,0,0,0,0,5.55E-06,0,0,4.99E-04,0,0.680636704,11.27474846,69.70896889,4.531822011,19.32716624,0,5655.562653,0.007723273,0,0 +1882,0.236948997,0.674378608,0,0,2.944345851,3.39E-04,0.024856862,0.011550379,0,0,0,0,0,104.92759,0,4267.3266,68.57787524,436.0786301,0,0,0,0,0,0,5.59E-06,0,0,5.04E-04,0,0.689255681,11.34322096,68.75016749,4.409841205,19.15816229,0,5878.580768,0.007723273,0,0 +1883,0.250894677,0.681454028,0,0,2.918084088,3.45E-04,0.024856862,0.010810957,0,0,0,0,0,104.95902,0,4268.979,69.1859791,428.2212034,0,0,0,0,0,0,5.62E-06,0,0,5.08E-04,0,0.695872552,11.30107278,67.06254476,4.344707595,18.70936137,0,6136.750815,0.007723273,0,0 +1884,0.252849902,0.684683542,0,0,2.97815874,3.50E-04,0.024856862,0.010810972,0,0,0,0,0,104.93535,0,4267.7345,70.48060515,436.5183492,0,0,0,0,0,0,5.66E-06,0,0,5.12E-04,0,0.70169045,11.46377857,68.59402326,4.507763748,19.00988998,0,6243.347605,0.007723273,0,0 +1885,0.254442991,0.690863781,0,0,2.987658653,3.56E-04,0.024856862,0.011550438,0,0,0,0,0,104.93798,0,4267.8727,71.60546241,438.1415385,0,0,0,0,0,0,5.69E-06,0,0,5.16E-04,0,0.707890871,11.60315357,68.94977818,4.492846371,19.20686906,0,6294.938313,0.007723273,0,0 +1886,0.258326127,0.691934912,0,0,3.000148376,3.62E-04,0.024856862,0.011550467,0,0,0,0,0,104.9357,0,4267.7531,72.58254388,437.7333269,0,0,0,0,0,0,5.73E-06,0,0,5.20E-04,0,0.712632779,11.67579747,68.86926284,4.534738954,19.06781958,0,6353.027294,0.007723273,0,0 +1887,0.270973326,0.691885463,0,0,3.044590075,3.68E-04,0.024856862,0.011550497,0,0,0,0,0,104.94903,0,4268.4538,73.77743063,443.1077381,0,0,0,0,0,0,5.77E-06,0,0,5.24E-04,0,0.71821666,11.82565523,69.79403942,4.618994874,19.32845364,0,6605.766965,0.007723273,0,0 +1888,0.299024069,0.691539784,0,0,3.123484052,3.74E-04,0.024856862,0.011550526,0,0,0,0,0,104.91459,0,4266.6433,75.11035553,452.502308,0,0,0,0,0,0,5.80E-06,0,0,5.28E-04,0,0.724224235,12.04162329,71.42723744,4.741896917,19.78574643,0,7182.264809,0.007723273,0,0 +1889,0.29939589,0.691049208,0,0,3.104668338,3.81E-04,0.024856862,0.011550556,0,0,0,0,0,104.95877,0,4268.9657,75.92960019,448.6908696,0,0,0,0,0,0,5.84E-06,0,0,5.32E-04,0,0.730764112,12.07532791,70.65718772,4.727164288,19.55277705,0,7178.592239,0.007723273,0,0 +1890,0.32528597,0.68776294,0,0,3.159194949,3.87E-04,0.024856862,0.011550586,0,0,0,0,0,104.9317,0,4267.5425,77.07862319,453.8990323,0,0,0,0,0,0,5.87E-06,0,0,5.36E-04,0,0.755661554,12.22188071,71.47659717,4.807916688,19.77806486,0,7728.431301,0.007723273,0,0 +1891,0.340453909,0.684411407,0,0,3.125180696,3.94E-04,0.024856862,0.011550615,0,0,0,0,0,104.97344,0,4269.7366,77.68229292,444.3827318,0,0,0,0,0,0,5.91E-06,0,0,5.40E-04,0,0.766996007,12.1596402,69.53172191,4.743306066,19.19967303,0,8025.900173,0.007723273,0,0 +1892,0.342946092,0.69893132,0,0,3.110528365,4.01E-04,0.024856862,0.011550645,0,0,0,0,0,104.99082,0,4270.6504,78.54558089,439.808659,0,0,0,0,0,0,5.95E-06,0,0,5.45E-04,0,0.778272468,12.19914652,68.66391959,4.695682305,18.94952176,0,8166.143155,0.007723273,0,0 +1893,0.33787039,0.699713125,0,0,3.125430895,4.08E-04,0.024856862,0.012290126,0,0,0,0,0,104.97994,0,4270.0783,79.81501329,443.3506558,0,0,0,0,0,0,5.99E-06,0,0,5.49E-04,0,0.789729823,12.37945386,69.48705802,4.715239733,19.1784562,0,8120.644735,0.007723273,0,0 +1894,0.351124504,0.715581396,0,0,3.205110618,4.15E-04,0.024856862,0.01229017,0,0,0,0,0,104.93101,0,4267.5063,81.38345626,456.6960325,0,0,0,0,0,0,6.02E-06,0,0,5.52E-04,0,0.802004637,12.66238559,71.90804381,4.888948538,19.83612848,0,8411.388473,0.007723273,0,0 +1895,0.371712037,0.720945096,0,0,3.216163845,4.22E-04,0.024856862,0.011550763,0,0,0,0,0,104.96751,0,4269.4251,82.23116014,453.551885,0,0,0,0,0,0,6.06E-06,0,0,5.57E-04,0,0.812887633,12.67244423,71.15178658,4.919171254,19.52250048,0,8846.66701,0.007723273,0,0 +1896,0.383674818,0.723440788,0,0,3.170768747,4.30E-04,0.024856862,0.012290244,0,0,0,0,0,104.96751,0,4269.4252,83.00005426,444.0944278,0,0,0,0,0,0,6.09E-06,0,0,5.61E-04,0,0.824102858,12.72059369,69.42267706,4.733994615,19.17728772,0,9089.598433,0.007723273,0,0 +1897,0.401981164,0.725878271,0,0,3.268702112,4.37E-04,0.024856862,0.012290288,0,0,0,0,0,104.99693,0,4270.9718,84.39253635,456.4122055,0,0,0,0,0,0,6.13E-06,0,0,5.65E-04,0,0.834637127,12.8902171,71.5467325,5.026760132,19.58218288,0,9520.393854,0.007723273,0,0 +1898,0.42330421,0.72837657,0,0,3.296870259,4.45E-04,0.02485618,0.012290333,0,0,0,0,0,105.01512,0,4271.9281,85.36127162,456.6037674,0,0,0,0,0,0,6.17E-06,0,0,5.69E-04,0,0.844305316,12.95906823,71.45665952,5.098029535,19.50168111,0,10010.09583,0.007723236,0,0 +1899,0.463317192,0.728556158,0,0,3.355831345,4.86E-04,0.024857703,0.012290377,0,0,0,0,0,104.97653,0,4269.8993,86.70543387,462.1035994,0,0,0,0,0,0,6.20E-06,0,0,5.73E-04,0,0.853783366,13.20706844,72.46072256,5.094979384,19.86870993,0,10838.11345,0.007723233,0,0 +1900,0.488155862,0.73057236,0,0,3.361821037,0.002392668,0.024856437,0.028558348,0,0,0,0,0,104.98481,0,4270.3344,87.61328845,459.5444669,0,0,0,0,0,0,6.24E-06,0,0,5.77E-04,0,0.863169654,13.27666955,71.90656631,5.089168388,19.75078793,0,11348.7275,0.007723268,0,0 +1901,0.504485719,0.796906313,0,0,3.382952935,0.004820097,0.024857442,0.047784449,0,0,0,0,0,105.04131,0,4273.3046,88.39116711,457.6168305,0,0,0,0,0,0,6.28E-06,0,0,5.82E-04,0,0.871405959,13.3014099,71.63263161,5.202144138,19.48762217,0,11775.2552,0.007723268,0,0 +1902,0.519345117,0.800278636,0,0,3.38154147,0.005778122,0.024856062,0.050743008,0,0,0,0,0,105.04898,0,4273.708,89.26282464,455.0261768,0,0,0,0,0,0,6.32E-06,0,0,5.86E-04,0,0.881215447,13.41248803,71.24149846,5.179688037,19.3580615,0,12100.54877,0.007723268,0,0 +1903,0.566454621,0.829571146,0,0,3.389386332,0.006957613,0.024857979,0.05591998,0,0,0,0,0,105.09555,0,4276.1561,89.89074057,449.9625304,0,0,0,0,0,0,6.36E-06,0,0,5.90E-04,0,0.890660734,13.43752052,70.25376393,5.190103458,19.03059788,0,13044.15816,0.007723268,0,0 +1904,0.575152133,0.856100074,0,0,3.4640583,0.009436339,0.024855289,0.068491568,0,0,0,0,0,105.07939,0,4275.3063,91.35674943,462.621765,0,0,0,0,0,0,6.39E-06,0,0,5.94E-04,0,0.900998672,13.7314717,72.88437625,5.400226563,19.65611973,0,13274.43719,0.007723268,0,0 +1905,0.612296247,0.883090418,0,0,3.525334738,0.013412831,0.024859105,0.087718467,0,0,0,0,0,105.08907,0,4275.8152,92.40132432,467.4401288,0,0,0,0,0,0,6.43E-06,0,0,5.99E-04,0,0.911796751,13.85510547,73.70973522,5.570897784,19.75296716,0,14100.97838,0.007723268,0,0 +1906,0.644276357,0.913945895,0,0,3.54932448,0.018196454,0.024853655,0.11138246,0,0,0,0,0,105.10645,0,4276.7286,93.24998316,466.4356479,0,0,0,0,0,0,6.47E-06,0,0,6.03E-04,0,0.922864309,13.95964537,73.46173851,5.607842107,19.60693136,0,14766.45012,0.007723268,0,0 +1907,0.726915977,0.922997028,0,0,3.674457368,0.016966195,0.025812945,0.10398923,0,0,0,0,0,105.14627,0,4278.822,94.56080194,480.3174564,0,0,0,0,0,0,6.51E-06,0,0,6.07E-04,0,0.933557019,14.21677499,76.00444514,5.92575152,20.14449075,0,16264.98721,0.007723268,0,0 +1908,0.703232591,0.932378464,0,0,3.67587664,0.021404879,0.029231937,0.12765503,0,0,0,0,0,105.12414,0,4277.6586,95.71237193,482.582634,0,0,0,0,0,0,6.54E-06,0,0,6.11E-04,0,0.943978146,14.40742286,76.856238,5.975251674,20.34218955,0,15590.71312,0.007723268,0,0 +1909,0.7293531,0.939463987,0,0,3.690048662,0.036714367,0.765086,0.21121463,0,0,0,0,0,105.16533,0,4279.824,96.4666946,480.6894688,0,0,0,0,0,0,6.58E-06,0,0,6.16E-04,0,0.954146693,14.46573428,76.4408771,6.041715332,20.10967131,0,16371.00547,0.007723268,0,0 +1910,0.765726395,0.945592087,0,0,3.767608107,0.042342327,1.0366888,0.24301505,0,0,0,0,0,105.14442,0,4278.7248,97.77187103,491.4713622,0,0,0,0,0,0,6.62E-06,0,0,6.20E-04,0,0.964867509,14.73060447,78.48124343,6.225241543,20.6023284,0,17123.07052,0.007723268,0,0 +1911,0.781014654,0.887403675,0,0,3.725917532,0.047217079,0.55672031,0.27037941,0,0,0,0,0,105.20214,0,4281.7592,98.42938116,482.3736484,0,0,0,0,0,0,6.66E-06,0,0,6.24E-04,0,0.976172007,14.67937454,76.73370569,6.205453711,20.00760743,0,17244.18549,0.007723268,0,0 +1912,0.819966191,0.85083987,0,0,3.709100468,0.055977137,1.3372385,0.31844894,0,0,0,0,0,105.23472,0,4283.4718,99.26614632,477.9889215,0,0,0,0,0,0,6.70E-06,0,0,6.29E-04,0,0.99242033,14.7136648,75.83160819,6.219463911,19.68089243,0,17989.19691,0.007723268,0,0 +1913,0.88953397,0.82034848,0,0,3.787939036,0.05934571,2.7874772,0.33694139,0,0,0,0,0,105.25437,0,4284.5046,100.6125584,488.2676035,0,0,0,0,0,0,6.74E-06,0,0,6.33E-04,0,1.011440097,14.92180765,77.5799616,6.45387962,20.00732869,0,19072.75319,0.007723268,0,0 +1914,0.811491369,0.809204505,0,0,3.764418792,0.064801984,4.5655912,0.36726542,0,0,0,0,0,105.19867,0,4281.5767,102.2840587,494.4978826,0,0,0,0,0,0,6.77E-06,0,0,6.36E-04,0,1.032129514,15.24149746,79.77807343,6.499176733,20.59248109,0,17594.43406,0.007723268,0,0 +1915,0.802991659,0.797401958,0,0,3.722337783,0.084000629,6.2098372,0.47153519,0,0,0,0,0,105.2716,0,4285.4105,103.0579197,484.2476849,0,0,0,0,0,0,6.81E-06,0,0,6.41E-04,0,1.054619583,15.23213103,78.35040062,6.482772073,20.06142458,0,17573.11604,0.007723268,0,0 +1916,0.86533079,0.799710226,0,0,3.744207069,0.10465075,5.9968917,0.58467971,0,0,0,0,0,105.29863,0,4286.831,104.0889435,482.954266,0,0,0,0,0,0,6.85E-06,0,0,6.46E-04,0,1.077791382,15.34284718,78.27985155,6.601680858,19.90829861,0,19065.48428,0.007723268,0,0 +1917,0.896621585,0.802745574,0,0,3.826396856,0.11034348,5.1585271,0.61870744,0,0,0,0,0,105.37275,0,4290.7275,105.4397415,492.9600448,0,0,0,0,0,0,6.89E-06,0,0,6.51E-04,0,1.100255613,15.500365,80.45481807,7.003710361,20.17756104,0,19906.99893,0.007723268,0,0 +1918,0.887395559,0.80603585,0,0,3.83059738,0.10461425,4.2721672,0.58914082,0,0,0,0,0,105.37311,0,4290.7462,106.7459316,496.2420731,0,0,0,0,0,0,6.93E-06,0,0,6.55E-04,0,1.121226709,15.70439103,81.61294814,7.118191256,20.36895158,0,19743.24497,0.007723268,0,0 +1919,0.780860402,0.811159148,0,0,3.722641135,0.10155164,3.196035,0.57214502,0,0,0,0,0,105.33647,0,4288.8202,108.095107,490.9794171,0,0,0,0,0,0,6.96E-06,0,0,6.59E-04,0,1.140233478,15.91565271,81.67724386,6.926922673,20.36863821,0,16994.78687,0.007723268,0,0 +1920,0.903060101,0.813518455,0,0,3.813010121,0.071874804,4.0059497,0.41169313,0,0,0,0,0,105.40157,0,4292.2427,109.1336385,498.8745999,0,0,0,0,0,0,7.01E-06,0,0,6.64E-04,0,1.157633765,16.03665614,82.96992111,7.318815146,20.4023951,0,18802.69892,0.007723268,0,0 +1921,0.793835864,0.861299333,0,0,3.661222702,0.05599481,6.3575755,0.32444592,0,0,0,0,0,105.42979,0,4293.7261,109.809348,486.6136242,0,0,0,0,0,0,7.05E-06,0,0,6.68E-04,0,1.173417685,16.0101613,81.18725519,7.146950074,19.84610877,0,16049.70593,0.007723268,0,0 +1922,0.843896663,0.853369204,0,0,3.658333723,0.10093674,7.5196689,0.56921203,0,0,0,0,0,105.47367,0,4296.0327,110.4858104,484.8273418,0,0,0,0,0,0,7.09E-06,0,0,6.73E-04,0,1.188779372,16.07300912,80.53069431,7.252038815,19.4742784,0,16950.896,0.007723268,0,0 +1923,0.959559001,0.86148441,0,0,3.88124621,0.13753371,8.1995609,0.77479139,0,0,0,0,0,105.54539,0,4299.8026,112.2535641,514.2343951,0,0,0,0,0,0,7.13E-06,0,0,6.78E-04,0,1.205120978,16.4693053,86.27583424,8.013836332,20.41782521,0,19723.67202,0.007723268,0,0 +1924,0.970359441,0.867663331,0,0,3.774809016,0.14595489,10.064032,0.82730698,0,0,0,0,0,105.55899,0,4300.5175,112.633506,499.0974144,0,0,0,0,0,0,7.17E-06,0,0,6.82E-04,0,1.222219042,16.41564777,83.21123114,7.790296572,19.77882376,0,19521.89407,0.007723268,0,0 +1925,0.983699121,0.870847171,0,0,3.790606982,0.15281139,9.887985,0.86947278,0,0,0,0,0,105.60265,0,4302.8128,113.6704269,502.6957688,0,0,0,0,0,0,7.21E-06,0,0,6.87E-04,0,1.237791101,16.84168156,84.06174423,7.983263812,19.75345484,0,19738.88984,0.007723268,0,0 +1926,0.971193664,0.875288161,0,0,3.724383638,0.16877181,10.020584,0.96266008,0,0,0,0,0,105.65209,0,4305.4116,114.5456303,499.0418204,0,0,0,0,0,0,7.25E-06,0,0,6.92E-04,0,1.252612106,17.14732508,84.16877083,8.057166102,19.57302011,0,19808.91323,0.007723268,0,0 +1927,1.071982298,0.914815243,0,0,3.850357382,0.19366311,13.691728,1.1076116,0,0,0,0,0,105.65063,0,4305.3352,115.74748,515.0910884,0,0,0,0,0,0,7.29E-06,0.004945027,0,6.96E-04,0,1.266765284,17.43232174,86.52753525,8.499773807,19.87550986,0,21139.78229,0.007723268,0,0 +1928,1.076174298,0.918261907,0,0,3.828134932,0.2132805,16.914307,1.2252077,0.020814729,0,0,0,0,105.59392,0,4302.3537,116.7958666,515.8400889,0,0,0,0,0,0,7.32E-06,0.030139896,0,6.99E-04,0,1.279785085,17.62700285,87.11586337,8.569023695,19.91593076,0,21065.04746,0.007723269,0,0 +1929,1.156951387,0.945536477,0,0,3.890215994,0.20802541,19.38339,1.2037865,0.33502494,0,0,0,0,105.60372,0,4297.9849,118.0199977,527.0535755,0,0,0,0,0,0,7.35E-06,0.003329301,0,7.02E-04,0,1.290827582,17.86727278,89.37670247,8.894481948,20.27497394,0,22402.21952,0.007723266,0,0 +1930,1.072886478,1.022800884,0,0,3.907622806,0.17035764,20.571834,0.99750344,1.1701026,0,0,0,0,105.91829,0,4287.8382,119.6701788,535.0349028,0,0,0,0,0,0,7.36E-06,-0.026051043,0,7.03E-04,0,1.300370355,18.10997615,91.59573863,8.841770878,20.95238859,0,20792.33986,0.007723273,0,0 +1931,0.968671726,1.033130291,0,0,3.699193086,0.11326202,21.232329,0.6766021,1.6600329,0,0,0,0,106.6887,0,4282.6938,119.9075078,504.8981345,0,0,0,0,0,0,7.38E-06,-0.003829208,0,7.06E-04,0,1.307318192,17.9582942,86.48531867,8.206316153,19.78298346,0,18348.146,0.007723259,0,0 +1932,0.880274393,0.934985061,0,0,3.701120519,0.085847633,23.837144,0.51911084,1.6167368,0,0,0,0,107.41813,0,4276.7559,121.4219873,510.1823315,0,0,0.005764349,0,0,0,7.40E-06,7.43E-04,0,7.08E-04,0,1.314106352,18.10001304,87.90725373,8.142484302,20.16181555,0,16151.1052,0.007723289,0,0 +1933,0.923452608,0.931801343,0,0,3.673991696,0.1016274,28.120028,0.61081444,1.6336582,0,0,0,0,108.09758,0,4271.2585,122.3437659,508.1160121,0,0,0.14482802,0,0,0,7.43E-06,8.08E-04,0,7.11E-04,0,1.319777787,18.14058312,87.73926442,8.102332977,20.01961331,0,16995.04081,0.007723222,0,0 +1934,1.000687974,0.920029755,0,0,3.817622407,0.15202423,34.519287,0.91252255,1.6505883,0,0,0,0,108.91202,0,4272.3774,123.9532999,528.033166,0,0,0.60639434,0,0,0,7.47E-06,8.78E-04,0,7.15E-04,0,1.326062979,18.32411359,91.49703968,8.603675585,20.70261784,0,18679.91277,0.007723374,0,0 +1935,1.050596869,0.918684315,0,0,3.826763235,0.22028466,40.132859,1.3303298,1.6675173,0,0,0,0,109.70014,0,4272.1486,124.8946044,529.4409406,0,0,0.97427321,0,0,0,7.50E-06,9.54E-04,0,7.19E-04,0,1.33245233,18.31731965,91.90214074,8.779424673,20.54319704,0,20077.94332,0.007723023,0,0 +1936,1.150366722,0.927069389,0,0,3.972008023,0.28820401,42.33712,1.7570203,1.6844464,0,0,0,0,110.56758,0,4275.9063,126.4647048,550.0398549,0,0,1.0455299,0,0,0,7.55E-06,0.001037276,0,7.24E-04,0,1.338689989,18.65286964,95.83484543,9.362043925,21.16418654,0,21597.57179,0.007723846,0,0 +1937,1.231103105,0.904516492,0,0,3.977215074,0.34372195,44.188471,2.1186454,1.7013755,0.006390022,0,0,0,111.3625,0,4275.9946,127.1823371,550.6109419,0,0,1.1131878,0,0,0,7.58E-06,0.001127477,0,7.28E-04,0,1.346525353,18.735883,95.84567433,9.575630542,20.85060471,0,23231.71203,0.00772185,0,0 +1938,1.161421971,0.907321542,0,0,3.879546431,0.39883954,49.06474,2.4891541,1.7183047,0.1328808,0,0,0,112.0603,0,4271.2734,127.905393,535.4268485,0,0,1.185033,0,0,0,7.61E-06,0.001225424,0,7.31E-04,0,1.355126677,18.72062801,93.23706062,9.133612085,20.283818,0,21542.97587,0.007728553,0,0 +1939,1.232613704,0.905880028,0,0,4.010820601,0.43390074,56.683054,2.745053,1.7352338,0.68779311,0,0,0,112.8293,0,4270.1197,129.5013568,554.5379171,0,0,1.2571398,0,0,0,7.64E-06,0.001332062,0,7.35E-04,0,1.366829172,18.98792969,97.34535423,9.632984019,21.02085333,0,23010.26881,0.11813875,0,0 +1940,1.332494478,0.893463629,0,0,4.026253626,0.50172554,67.980741,3.2190952,1.7521629,1.4928916,0,0,0,113.75015,0,4276.3916,130.1349943,550.4654056,0,0,1.3304594,0,0,0,7.69E-06,0.001448183,0,7.41E-04,0,1.379589207,18.93380648,96.49612887,9.961368881,20.56627575,0,25159.07412,0.21814961,0,0 +1941,1.35733239,0.876081403,0,0,4.050294267,0.64957282,81.740279,4.2240743,1.769092,2.2339929,0,0,0,114.54353,0,4282.9257,132.2180939,552.9500651,0,0,1.4028748,0,0,0,7.73E-06,0.00157415,0,7.45E-04,0,1.427063176,19.03403078,97.09407345,10.19371174,20.46203137,0,26113.9497,0.1951164,0,0 +1942,1.359049319,0.897314522,0,0,4.114193284,0.84353078,95.021136,5.585489,1.7860212,2.976471,0,0,0.19841173,115.26991,0,4303.7401,134.7060241,560.1841861,0,0,1.4745564,0,0,0,7.76E-06,0.001710955,0,7.48E-04,0,1.529818545,19.21018323,98.65719695,10.34548378,21.01419377,0,26702.04279,0.16898031,0,0 +1943,1.402945825,0.892124843,0,0,4.114085782,0.80476688,89.521615,5.4576739,1.8029502,3.7199961,0,0.056451758,4.3053247,116.04761,0,4331.4951,136.6296869,561.0185503,0,0,1.5467027,0,0,0,7.79E-06,0.001859737,0,7.52E-04,0,1.677793207,19.22648995,99.48634644,10.64406286,20.76469901,0,27110.34859,0.14684461,0,0 +1944,1.387913119,0.898318952,0,0,4.111269896,0.41764093,72.694302,2.9606569,1.8198794,4.4638059,0,0.97266311,16.545617,116.85265,0,4354.745,138.9310562,569.4275578,0,0,1.6191675,0,0,0,7.83E-06,0.002021507,0,7.56E-04,0,1.853743997,19.45467137,102.0083052,10.97214997,20.91812228,0,26578.15151,0.11439264,0,0 +1945,1.180916482,0.898822172,0,0,3.970406317,0.20111842,68.369262,1.5076942,1.8368084,5.2077233,0,3.4593405,24.846154,117.6118,0,4376.5008,141.022964,562.3881403,0,0,1.69101,0,0,0,7.86E-06,0.002197258,0,7.60E-04,0,2.046836624,19.53099873,102.3868629,10.81105837,20.63041519,0,23414.92286,0.080798572,0,0 +1946,1.294211066,0.982947007,0,0,3.971696435,0.27970458,74.717234,2.0726649,1.8537378,5.9856104,0,4.9404679,24.839378,118.39896,0,4399.6117,142.7064022,555.289963,0,0,1.7631908,0,0,0,7.89E-06,0.002388349,0,7.64E-04,0,2.242235208,19.68948842,102.6581835,10.80993836,20.3059335,0,23137.29124,0.064300427,0,0 +1947,1.449894938,1.013635265,0,0,4.004289599,0.34838359,84.081746,2.6369074,1.8706665,6.4443541,0,4.8390374,24.982371,119.2973,0,4428.0553,144.7944965,563.4037754,0,0,1.8372679,0,0,0,7.94E-06,0.002596315,0,7.69E-04,0,2.428654505,19.91609513,104.1573676,11.48967842,20.19099947,0.003372839,25978.58013,0.046731228,0,0 +1948,1.541746758,1.021788966,0,0,4.123520873,0.33316898,90.670686,2.6243892,1.8875961,6.6649072,0,4.8563661,24.987103,120.08364,0,4451.0369,147.2720295,586.53608,0,0,1.966277,0,0,0,7.98E-06,0.003327672,0,7.73E-04,0,2.589644896,20.34906056,108.0964174,12.19576499,20.65035706,0.023611977,27162.31675,0.020169381,0,0 +1949,1.51503408,1.032229109,0,0,4.095746551,0.31424196,91.962416,2.5926444,1.8955033,7.1640705,0,5.561141,27.295461,120.70601,0,4466.7618,150.2157149,588.4410387,0,0,1.6426278,0,0,0,7.99E-06,0.02463759,0,7.75E-04,0,2.714013981,20.9091959,109.1544258,11.86397123,21.08117938,0.063741035,26198.85137,-0.001578436,0,0 +1950,1.695680787,1.04543439,0,0,4.331260791,0.32876887,78.580053,2.8441101,1.9897329,7.4706053,0,8.1460574,32.673745,121.62274,0,4499.2896,152.2010084,619.9439709,0,0,1.0661465,0,0,0,8.05E-06,0.10531435,0,7.81E-04,0,2.786823806,21.60140457,113.8598472,13.13214183,22.10581056,0.16053368,29148.54682,2.43E-04,0,0 +1951,1.817356704,1.263788462,0,0,4.212336067,0.33222262,70.47669,3.0430784,2.1685287,7.5542237,0,12.050138,36.815853,122.51807,0.014330518,4529.1876,155.2719352,593.1994506,0,0,1.0527789,0,0,0,8.09E-06,0.2343219,0,7.85E-04,0,2.830792646,21.71096706,109.0909544,13.15219389,20.39818818,0.23983988,30378.93497,0.001166432,0,0 +1952,1.85187593,1.291508658,0,0,4.278249967,0.32854487,76.508762,3.2228257,2.4120426,7.6734014,0,16.078842,40.441283,123.26435,0.21725302,4558.7052,160.5733576,606.95634,0,0,1.4414744,0,0,0,8.10E-06,0.3628351,0,7.87E-04,0,2.873469224,22.39378605,112.6182109,13.48661504,20.95793435,0.24565292,30772.87938,-0.002030065,0,0 +1953,1.905887196,1.288662579,0,0,4.400134891,0.31999622,81.681224,3.3863087,2.8478934,7.7034458,0,20.201055,45.581432,124.06078,1.3575508,4600.7084,165.6818323,623.9750548,0,0,2.100408,0,0,0,8.12E-06,0.48047903,0,7.90E-04,0,2.918473221,23.08627653,116.7765378,14.05062035,21.60093971,0.24572915,31392.44296,-2.28E-04,0,0 +1954,1.955325831,1.342683244,0,0,4.475107773,0.29457384,86.86347,3.4048632,3.2763156,7.760213,0,25.212381,51.892411,124.75392,3.6198833,4629.2231,170.3710079,628.9096635,0,0,2.8888848,0,0,0,8.14E-06,0.59576061,0,7.91E-04,0,2.965305231,23.5182693,118.7896929,14.35262782,21.65473895,0.24580572,31601.64062,-0.004070821,0,0 +1955,2.138786817,1.387820683,0,0,4.585745112,0.26311875,91.980019,3.3346824,3.6788015,7.6370702,0,30.727319,59.871881,125.74327,6.4848679,4666.3367,174.7404471,641.3267253,0,0,3.5564777,0,0,0,8.18E-06,0.70910415,0,7.96E-04,0,3.016004168,23.78869162,122.5425815,15.35988489,21.61194057,0.24588273,34555.40272,0.001049355,0,0 +1956,2.291039468,1.446283643,0,0,4.844401489,0.22075982,97.008491,3.0796375,4.2759912,7.5430316,0,33.546756,66.950489,126.58168,9.1561662,4699.2729,180.6711175,673.806229,0,0,4.5322658,0,0,0,8.21E-06,0.82044371,0,8.00E-04,0,3.06769313,24.39548109,129.82302,16.40773077,22.72448276,0.24595899,37118.77109,0.006640162,0,0 +1957,2.384773,1.477494579,0,0,5.084522572,0.18587639,102.11597,2.8571248,4.9612019,7.3765313,0,32.871446,72.204141,127.41838,11.488509,4733.2024,186.0555677,695.9496131,0,0,5.9875108,0,0,0,8.25E-06,0.92977447,0,8.03E-04,0,3.122765936,25.10938271,135.5915206,17.20228851,23.82634945,0.24603635,38873.75431,0.004342369,0,0 +1958,2.467095469,1.528597347,0,0,5.060488043,0.17928487,107.206,2.9954591,5.6330503,6.9087313,0,34.746284,80.925329,128.42262,14.781202,4771.3965,188.3855399,661.2854858,0,0,7.120204,0,0,0,8.29E-06,1.0371306,0,8.08E-04,0,3.184188319,25.26871426,129.2085836,17.04310474,22.2466504,0.2461131,39341.99136,0.002605294,1.53E-05,1.55E-04 +1959,2.603672914,1.473668289,0,0,5.186762349,0.18081021,112.29185,3.2476716,6.3880226,6.8760458,0,43.506257,93.983467,129.47587,18.063698,4808.726,192.6867573,665.4367222,0,0,8.0253807,0,0,0,8.33E-06,1.1424694,0,8.12E-04,0,3.250322629,25.78456832,131.2104974,17.51526633,22.13695045,0.30755864,41319.47351,8.68E-04,1.22E-04,0.001246036 +1960,2.728446849,1.461519532,0,0,5.288213084,0.17259465,117.2597,3.3209398,7.3201718,7.2392631,0,56.281481,107.5417,130.53321,21.750437,4847.0424,197.2611005,668.565663,0,0,9.5885732,0,0,0,8.37E-06,1.2458107,0,8.17E-04,0,3.323928526,26.12794679,133.3368149,18.13798676,22.06866314,0.4304021,42970.73471,-8.68E-04,2.31E-04,0.002375087 +1961,2.75210185,1.531158202,0,0,5.280187775,0.16861102,121.58986,3.4304351,8.4287849,7.4514735,0.001861801,70.618557,123.80387,131.26152,27.278298,4864.0212,205.1383413,701.0053453,0,0,11.884386,0,0,0,8.37E-06,1.346892,0,8.17E-04,0,3.545375735,26.8897385,143.5652635,18.73899699,23.37357314,0.55328481,48370.7476,-0.002605324,2.49E-04,0.003546415 +1962,2.868392579,1.520724684,0,0,5.268371109,0.17112099,125.71015,3.6249821,9.6127678,7.5805279,0.045181371,86.214551,144.89716,132.4011,32.049021,4895.6486,207.2122992,678.8492234,0,0,14.500089,0,0,0,8.41E-06,1.4460951,0,8.21E-04,0,3.678783292,27.3913443,140.105892,19.33292939,22.55009464,0.61483924,49373.46267,-0.004342521,2.53E-04,0.004920676 +1963,3.036186161,1.527209311,0,0,5.437875743,0.18314033,128.88013,3.9881367,10.949721,7.9110854,0.24720738,101.83231,167.67883,132.99126,37.52532,4904.2354,216.1922656,741.3196016,0,0,17.280228,0,0,0,8.39E-06,1.5429261,0,8.19E-04,0,3.803776307,28.74464761,156.130954,20.52084737,24.60921093,0.55366285,50918.54792,-0.007869931,3.52E-04,0.005972759 +1964,3.193585727,1.518253087,0,0,5.259909465,0.20130699,129.76929,4.4326257,12.657214,8.4778946,0.46848862,116.30072,189.8766,134.07707,49.914046,4933.087,216.556163,689.11146,0,0,20.771971,0,0,0,8.44E-06,1.6379776,0,8.24E-04,0,3.945754292,28.60741633,146.4547756,21.25062666,22.37762398,0.49245891,52831.63767,-7.60E-04,0.001030371,0.033580017 +1965,3.342046615,1.549410355,0,0,5.270010253,0.2250418,129.69213,4.9089192,14.528257,9.0358315,0.58010695,130.83984,213.3919,135.19804,70.507935,4953.0596,222.6664157,709.3122963,0,0,25.0603,0,0,0,8.46E-06,1.7308461,0,8.27E-04,0,4.115195266,29.97215368,153.4053912,22.08301054,22.64997293,0.4926084,54063.80178,0.015948649,0.002140689,0.11324642 +1966,3.50172055,1.551765281,0,0,5.285174796,0.26721734,129.70542,5.6248074,16.547774,9.5008952,0.77191369,147.99606,240.15802,136.46754,94.258765,4976.4474,226.3106958,710.9414665,0,0,30.477075,0,0,0,8.51E-06,1.8217969,0,8.32E-04,0,4.311197356,31.55306755,156.4949809,22.8477914,22.43429714,0.61550021,55269.31676,0.069786165,0.003103097,0.20275693 +1967,3.625966014,1.595865386,0,0,5.390458849,0.32052973,129.68847,6.3547572,18.918172,9.9208119,1.0373,169.42177,269.58286,137.66763,116.32544,4995.4184,232.3331465,746.2098209,0,0,36.036945,1.25E-05,0,6.90E-05,8.54E-06,1.9105949,0,8.37E-04,0,4.481777635,33.16777605,164.7753162,24.19623738,23.58529354,0.7384486,54762.8971,0.24404072,0.003754249,0.26151045 +1968,3.834595266,1.546993091,0,0,5.370373092,0.40423022,129.73308,7.3324415,21.713594,10.295172,1.3673824,195.13757,299.71437,139.24379,133.08156,5029.5667,235.3354027,740.4824182,0,0.009237978,40.359034,8.80E-05,0,4.86E-04,8.63E-06,1.9976935,0,8.46E-04,0,4.618299686,34.38157284,165.0957088,25.41081254,22.82579691,0.67731523,56868.37887,0.44305972,0.005543179,0.29037411 +1969,4.061567727,1.543708902,0,0,5.404091613,0.5206411,129.76058,8.4831718,24.938178,10.638634,1.7120901,220.72612,327.55328,140.05867,146.61896,5026.2804,239.1848516,747.0297315,0,0.18322115,44.144508,9.37E-05,0,5.04E-04,0.009824818,2.0817369,0,8.45E-04,0,4.732615323,34.96181251,169.6815713,26.06506901,22.10048951,0.67751619,58467.8108,0.55613635,0.03648951,0.30862539 +1970,4.323514044,1.531929069,0,0,5.549708797,0.6581692,129.69302,9.5318801,28.576904,11.00827,1.8909658,245.38621,354.60102,141.52757,173.56366,5048.3132,244.4183955,781.0375523,0,0.60795801,49.037394,2.47E-05,0,1.09E-04,0.036330653,2.1644992,0,8.52E-04,0,4.714190308,37.46957853,179.6859547,27.82408407,22.78022432,0.80047128,61529.77979,0.64373178,0.11813403,0.34789664 +1971,4.510244869,1.405554242,0,0,5.703748992,0.82992065,129.60227,10.711494,32.729139,11.452529,2.1402118,276.44309,387.53989,143.1196,217.72405,5067.5026,249.2895331,796.2029425,0,0.8564576,55.790888,1.33E-05,0,4.26E-05,0.064586906,2.2451174,0,8.59E-04,0,4.663522046,38.13342516,183.5355579,28.61726398,23.19511601,0.86210262,61716.79563,0.78786166,0.2232129,0.40686343 +1972,4.706494312,1.326937135,0,0,5.971153375,1.0559029,129.65777,12.24311,37.465523,11.97792,2.5517628,314.22879,427.68026,144.52172,267.60333,5079.1924,257.2102054,868.4735708,0,0.87667663,61.456633,1.35E-05,0,4.30E-05,0.082580189,2.3233295,0,8.64E-04,0,4.93074212,39.56446297,196.6655247,30.23622151,25.52743454,0.86237286,63465.10424,1.0951867,0.31882408,0.4721474 +1973,4.975651786,1.318385656,0,0,5.895831576,1.330787,129.79157,14.085332,42.979262,12.585161,2.92937,338.0693,454.71123,146.54158,301.85553,5118.3195,260.294725,826.0293132,0,0.82240702,65.420113,1.38E-05,0,5.50E-05,0.090214925,2.4006492,0,8.77E-04,0,5.050826137,39.95714271,186.5259319,31.24009688,23.45564811,0.92401065,66317.71189,1.5930673,0.39726303,0.54390644 +1974,4.948149198,1.290549,0,0,5.971643938,1.4191691,129.76026,14.311146,49.247959,13.447442,3.5184015,340.6055,453.22872,147.80664,327.35544,5113.8208,261.8082771,824.6214022,0,0.76119143,71.666995,1.40E-05,0,0.052416219,0.087063163,2.474116,0,8.78E-04,0,5.034419125,40.69211664,183.6005251,31.07740605,23.59962462,1.0394718,65371.62667,2.1806547,0.67241083,0.65809554 +1975,4.9286224,1.303204964,0,0,5.998431374,1.4004084,129.65616,14.321042,57.565811,14.538442,4.2176868,337.71465,440.16522,148.91662,384.99818,5104.4298,263.0585486,816.9194859,0,0.80304672,79.153904,1.42E-05,0,0.19213674,0.072875586,2.545125,0,8.78E-04,0,5.206812767,41.4767259,177.5130673,30.76637271,23.12965379,1.1646458,64182.76882,2.8018363,1.2682709,0.8287437 +1976,5.194661022,1.320205358,0,0,6.237496532,1.5554771,129.63321,16.011714,57.24638,15.386466,4.743647,329.27602,426.10768,150.23158,475.43135,5104.2152,269.9482097,856.0634915,0,0.82394648,92.664426,1.44E-05,0,0.33759564,0.047412585,2.614347,0,8.80E-04,0,5.352361697,42.52135697,186.2474273,32.28663209,24.40571792,1.4235416,67153.40876,3.4107057,1.8435573,0.98712807 +1977,5.36442864,1.352097971,0,0,6.353178768,1.692355,129.63647,16.762577,55.875241,15.71703,5.1782548,306.11158,404.2283,152.04264,533.0325,5117.6518,274.0301524,868.4313097,0,0.93269902,109.06413,2.14E-06,0,0.42456315,0.022180513,3.5323931,0,8.87E-04,0,5.499463795,43.27485688,189.2255323,33.05929028,24.38724427,2.1583469,67777.19082,3.8826089,2.1420878,1.0852977 +1978,5.581802903,1.2993019,0,0,6.579044818,1.7691766,130.48849,16.898235,72.245349,15.529417,5.5214166,278.45958,383.9896,153.91731,529.79652,5132.0601,276.3333545,897.4051484,0,1.277913,112.78031,-6.25E-05,0,0.45249588,-0.059867027,4.661461,0,8.95E-04,0,5.625120896,44.24089207,192.9347955,34.2691933,25.01974419,2.8286901,68023.04188,4.2701212,2.1599238,1.1209157 +1979,5.73073214,1.252317648,0,0,6.677231649,1.9203395,128.37989,17.898313,94.634628,14.991238,6.1020639,271.13342,394.80033,155.58904,518.50501,5138.651,281.6000656,900.4664227,0,1.7595655,113.22088,-2.04E-06,0,0.42017076,-0.17766763,5.0937882,0,9.00E-04,0,5.807081799,45.13478108,196.0169029,35.01398718,25.21247986,2.8296177,69119.86371,4.6513697,2.0579417,1.1328091 +1980,5.650947967,1.244135794,0,0,6.618387125,1.9633226,125.08456,17.664267,120.23426,14.760861,7.2362595,276.09356,398.43779,157.04196,513.02719,5131.8984,283.3464702,890.5114952,0,2.0330453,118.29604,7.94E-05,0,0.35605477,-0.12485274,5.1732709,0,9.02E-04,8.17E-05,5.872959052,45.97852705,194.391242,34.76440147,25.23254566,2.8304823,68783.84557,5.1129913,2.1545661,1.1562096 +1981,5.539335981,1.252813549,0,0,6.57778223,1.7391266,126.52811,16.187192,128.45086,13.920115,8.6372447,271.00597,403.07178,158.51506,516.86109,5123.4643,279.7894207,875.7816094,0,1.96562,122.37567,1.71E-05,0,0.32601335,0.11779446,4.4274361,0,9.03E-04,6.97E-04,5.805407446,46.37436562,189.1686139,34.11541673,24.87329597,2.9541119,66688.82722,6.0090215,2.4863888,1.1742814 +1982,5.477249508,1.258145478,0,0,6.915258578,1.6205522,129.38621,15.97381,128.57689,13.885459,9.2748324,277.72577,391.79861,159.18065,532.93449,5083.3728,287.6693154,967.4292983,0,1.6573364,125.26367,-8.23E-05,0,0.33083911,0.22216908,3.5575865,0,8.94E-04,0.001578501,6.043062728,47.66689068,206.8844648,34.15609141,28.27220571,2.9550432,65532.30175,6.4693449,3.0131287,1.352411 +1983,5.483062193,1.433024176,0,0,6.625402214,1.8456854,130.75989,16.384525,150.74703,15.564841,9.057039,353.29433,385.70972,160.09109,547.19948,5047.3484,281.6176584,862.0214943,0,1.3378778,129.4055,-2.71E-05,0,0.33559498,0.09748991,3.8040369,0,8.87E-04,0.002017846,6.06583408,47.6454021,183.8358223,33.28512898,24.45951343,3.2014371,64552.41617,6.0034055,3.8198142,1.378774 +1984,5.619005091,1.461224853,0,0,6.815018955,1.954181,134.9934,14.927399,167.86607,17.177696,10.537606,352.61795,438.30954,162.15076,546.6524,5054.1956,285.0030452,889.7020107,0,1.2391705,137.14097,8.66E-05,0,0.48356263,0.027417786,4.8805395,0,8.93E-04,0.004307161,5.996375963,48.69349353,189.3335257,34.32486538,25.32627636,3.570683,65309.89915,6.3412338,4.7987259,1.1329507 +1985,5.678895003,1.499743779,0,0,6.922761989,1.930951,138.44665,13.863624,191.20489,18.042992,12.093107,321.80334,487.46531,164.43684,559.24581,5072.7864,285.6752697,906.9368199,0,1.4290266,148.48134,2.16E-04,0,0.56320674,0.085787554,5.2553933,0,9.02E-04,0.012966035,5.996554239,49.41563613,190.4568857,34.8615092,25.83243998,3.6945657,65474.08715,7.6862714,5.5359652,1.1864916 +1986,5.784334368,1.530113569,0,0,7.013703662,2.0447892,134.66824,14.595216,226.48099,17.343175,11.156209,363.19165,561.19711,166.53505,605.54478,5079.9439,290.8084488,914.5218093,0,2.1480617,163.26271,2.16E-04,6.84E-04,0.57273931,0.044305139,5.6896951,0,9.08E-04,0.028102657,6.123193923,50.21167874,195.6652235,35.24652923,25.91211685,3.9411958,65479.27148,8.6199267,5.6626388,1.453026 +1987,5.942054872,1.515689335,0,0,7.200139154,2.1868179,140.05915,15.122737,234.71551,15.986362,11.176584,377.17492,543.59326,168.70781,636.85035,5087.8651,295.0485147,952.0611492,0.001157823,3.2631248,177.25124,5.82E-05,0.004878587,0.79616882,-0.099665792,6.5386064,0,9.14E-04,0.044783508,6.350228642,51.33101366,203.5851701,36.43815818,27.25186717,4.3106697,66721.094,9.1692428,5.2412687,1.7364871 +1988,6.133362797,1.515094775,0,0,7.39663506,2.2384091,134.89421,15.295333,225.34631,14.052169,12.063592,324.40759,433.01446,171.54521,645.54402,5119.7697,298.6854951,950.4151874,0.34924766,5.2661192,185.3279,0.021115007,0.06849384,0.88192316,-0.073662439,6.6278139,0,9.28E-04,0.060567348,6.188309996,51.72677742,203.5322276,37.79778929,27.18506613,4.6802608,67287.4839,10.094657,4.7030971,1.770198 +1989,6.211121149,1.53212989,0,0,7.320233668,2.2075539,105.50252,15.212081,212.83728,10.119863,11.292045,246.46809,357.7641,174.22363,713.52261,5139.3872,302.1641744,930.8467755,0.72136249,10.730464,189.56819,0.31476996,0.67304705,0.82629641,0.054397397,6.6572182,0,0.006065534,0.076147787,6.264529715,52.06403696,200.3165052,38.13825088,26.33140677,5.0499664,67312.93275,10.904862,4.3864096,1.6702493 +1990,6.186811699,1.445096887,0,0,7.508271532,2.1076967,86.426532,14.407865,176.8456,7.0905085,10.591201,208.25652,333.97703,176.36773,658.40311,5137.248,305.2725547,940.5626313,1.5203264,17.768055,192.30881,0.96053501,1.7208698,0.69729352,0.18589003,6.6838429,0,0.02696988,0.091767095,6.277152283,52.52170068,203.021231,38.25721546,27.36536835,5.1743108,67094.07179,10.051338,4.2741531,1.7373255 +1991,6.190131152,1.63686011,0,0,8.011536269,1.982897,85.142226,12.924815,120.64491,6.9542228,10.775591,159.81289,286.27307,177.30503,474.47964,5089.9323,318.7311921,1129.983883,6.9394223,22.06288,185.52075,1.727734,2.7251313,0.70613627,0.24819351,7.0572566,0,0.058141591,0.10715402,6.344945592,54.26130892,244.4286341,39.69249193,34.39493833,5.29866,66472.31502,9.6580528,4.1585749,1.6735462 +1992,6.145912973,1.683057085,0,0,7.364888993,1.9500444,85.437279,11.907588,74.361852,5.3089984,10.120439,106.91739,227.43518,179.3441,361.04368,5056.1355,299.4017955,913.3754186,22.26499,24.233416,194.061,2.4767485,4.0250116,1.0018637,0.18194194,7.9102615,0,0.088755914,0.12273589,6.358476439,52.37759099,198.238473,38.71717596,26.64897689,5.4230636,64223.92565,10.784362,3.8127392,1.4631107 +1993,6.193394815,1.54672743,0,0,7.531122847,1.9984803,84.458339,11.381334,50.567396,3.463778,8.6771649,84.3251,231.9618,179.76429,256.33383,5078.4684,299.4425141,941.8816353,34.33223,22.551362,208.33854,3.0949997,11.967198,1.5166355,0.157163,8.3534838,0,0.1188094,0.13825367,6.310752017,52.78275226,203.7757832,39.74372709,28.11499626,5.424762,63195.55052,11.612337,3.3180441,1.2514505 +1994,6.240067755,1.503716685,0,0,7.895732734,2.1430557,86.05046,11.006658,37.565451,4.6095776,8.163643,85.893495,238.58315,178.03958,159.08791,5003.2837,310.2518368,1060.282744,45.287421,24.423112,237.88968,3.5515518,24.558229,2.3253155,0.20390529,8.737968,0,0.14808425,0.15358509,6.441827,54.21042307,231.0503543,40.27137016,33.14335063,5.5491826,61820.50124,11.303115,2.9604627,1.1962062 +1995,6.377386454,1.486080505,0,0,7.813189501,2.3880707,80.480245,10.682998,23.473127,5.7076242,7.6747577,86.264975,210.72453,180.13151,95.783763,5016.3948,305.4095889,955.0363062,51.095458,27.59918,230.3453,3.8771223,36.211193,3.4395305,0.29614801,9.315257,0,0.17780027,0.16982122,6.504076136,53.41671788,206.4742485,40.45040793,29.71540754,5.6736625,60635.50707,11.011358,2.8923304,1.0842597 +1996,6.511379279,1.470193985,0,0,7.686339551,2.6638414,75.256035,10.505743,13.005309,4.6522227,5.5242189,85.278741,170.78176,183.444,59.514335,5297.7083,307.2912075,930.0218807,53.568363,26.00128,224.86947,4.0579149,48.538296,4.5014521,0.39044285,9.7707047,0,0.20547879,0.23841137,6.542220103,53.42127729,200.8724208,40.45019229,28.71419152,5.5527008,59650.01603,10.510994,2.8654227,0.84755661 +1997,6.574573879,2.18331399,0,0,8.269788743,2.8728437,75.489912,10.417958,10.398164,3.7691062,3.4559389,86.341446,160.63531,180.149,29.550907,5288.9251,331.2889198,1204.992305,55.763481,29.370536,240.5221,4.6266327,58.758537,5.5717023,0.427562,9.7952259,4.96E-05,0.25820595,0.31501343,6.740456045,56.11803189,264.6751503,41.89315592,38.34138232,5.7834259,59868.27682,9.8242768,2.8566852,0.76826308 +1998,6.590459871,1.541245282,0,0,8.412226876,2.9899069,72.916263,10.335348,12.992477,3.9615346,2.9318362,86.348141,156.67666,176.1082,23.412636,5175.5355,315.3326212,1085.430599,55.956781,28.471196,234.46613,6.9049469,70.049792,6.8917397,0.54029666,10.02529,3.58E-04,0.60512272,0.38665542,6.446521521,56.58934432,232.3180182,42.33468434,37.8122783,5.6031107,58604.36759,10.323837,2.701239,0.76943857 +1999,6.661329053,1.303430472,0,0,7.698162125,2.9607505,72.96355,10.216505,14.054175,3.9749853,3.1538842,82.703538,140.42544,168.37661,18.420173,5112.4264,309.4083709,940.700678,58.338707,25.741051,252.31636,8.6848445,91.978363,7.9486502,0.7424207,10.07373,0.003108151,1.0699013,0.49435229,6.281150807,54.7693723,205.1118782,40.94720104,30.44917133,5.1676463,55523.54474,10.262658,2.1509855,0.7706312 +2000,6.893167303,1.201338049,0,0,7.457347232,2.8153943,72.651408,9.9231457,9.4043884,3.9867142,2.3476518,76.330076,122.76605,165.25876,19.471227,5074.2696,310.1868098,886.5647302,56.341686,25.730152,263.60627,10.640667,99.657424,8.5987563,0.86319988,9.2978389,0.034006926,1.411492,0.57423278,6.112229814,54.50959652,195.3241582,41.26362178,27.9819784,5.2735332,55661.00151,9.4801348,1.9694412,0.77151922 +2001,6.957086928,0.961802096,0,0,7.591758769,3.0480682,70.656969,10.593275,5.9590471,3.2771364,1.1600545,68.271466,111.64066,165.599,19.806901,5094.2258,312.8963787,881.6703956,56.368781,24.490463,261.60586,11.075295,96.243251,9.8521252,0.94275566,8.9840003,0.80619906,1.6540309,0.63867332,6.188009183,54.70989639,196.1877828,41.37717554,27.87799844,5.3282102,56049.16643,8.8337936,2.3248261,0.74608572 +2002,7.097947295,1.070652511,0,0,8.046474187,3.4534372,70.456674,11.982167,3.1513602,2.420559,0.95011524,63.484809,101.90454,161.14055,12.302716,5096.5932,322.2788312,970.7244172,50.843174,25.156097,270.32175,12.214474,102.73275,11.617585,1.2107813,9.7208997,2.9170651,2.8037817,0.73327062,6.359556248,57.07665954,218.4604141,41.89878327,33.80824329,5.4976481,55687.52236,8.3685909,2.2797577,0.67660085 +2003,7.424688348,0.901041903,0,0,8.241697598,3.16329,69.839024,12.579882,5.7693016,1.7336337,0.74505988,62.277955,97.844828,158.92828,10.122917,5113.7538,328.1242242,944.7470786,44.441172,25.070909,287.30923,15.640539,117.40605,13.114832,1.560512,11.005369,5.226518,4.7856897,0.85366012,6.428305305,57.69037488,214.4033914,42.68216556,34.36218135,5.5417194,57641.7237,8.0831154,2.0262772,0.60195554 +2004,7.812644316,1.038213168,0,0,8.542465507,2.2029533,66.998563,12.194883,9.216749,1.4729969,0.75667708,60.966802,87.654103,156.21655,9.7469995,5141.4447,338.9417722,945.5469501,49.135801,28.554887,307.57676,15.758879,125.65071,13.097501,2.0510461,12.712613,6.6512131,5.4873038,0.97410928,6.590470047,58.11358477,216.6872834,44.5568559,32.33033041,5.6480085,60340.85189,7.5267646,2.1192661,0.55294607 +2005,8.093491316,1.025657164,0,0,8.840128386,1.9480504,63.195607,11.060838,4.6297025,1.8139658,0.58070615,60.331179,71.956593,154.12291,7.5405195,5209.9819,346.3955546,950.5924444,53.955471,33.447493,329.52471,16.143675,126.49199,12.434284,2.365528,14.626529,7.0791974,6.3606922,1.0845927,6.693579484,58.88341048,218.7880648,45.62238086,32.72399071,6.2799143,62587.82672,6.9433284,1.8947828,0.46971744 +2006,8.35813441,1.092642828,0,0,8.92564815,2.045423,60.048081,10.21735,0.6450641,1.7510311,0.58710647,63.037203,65.575271,152.41471,9.3190485,5272.2746,356.4696896,986.1510089,51.911598,36.489809,346.30497,19.891066,133.41048,14.118518,2.3531588,12.639849,6.8754044,8.3862482,1.1852524,6.875606953,60.37974253,229.8954395,46.63913374,34.3551466,6.9409178,63046.34515,6.3118449,1.5902358,0.43579597 +2007,8.681148087,0.966211967,0,0,9.284494092,1.7666158,57.257154,9.3272415,4.5089203,1.5545493,0.78280059,64.737513,61.623755,147.28895,9.6981304,5250.6823,355.0225755,945.8695944,49.953532,37.109679,357.26506,26.595246,127.25708,16.399738,2.4154053,9.3262891,6.6980995,8.4029745,1.2649376,6.596141361,60.96582609,219.7058707,48.13085999,33.27729799,6.9754073,62641.3592,5.7707437,1.7021554,0.59162888 +2008,8.733139806,0.668337987,0,0,9.091850914,1.746034,56.837697,9.0353429,8.3395339,1.9164483,0.45696793,63.060877,57.108479,144.47281,6.337645,5191.6855,360.4917105,912.5104843,54.881457,33.091627,362.72449,30.815622,138.28669,17.544095,2.6196596,8.8123411,7.076053,10.669375,1.3164863,6.638276368,61.31644175,214.695495,48.0350761,31.61901151,6.8835341,61275.77058,5.5737514,1.6171325,0.63840472 +2009,8.584990107,0.754863283,0,0,9.109514002,1.7995507,55.355253,9.6854874,5.7877004,1.6755174,0.3835494,60.065148,54.788238,144.24254,3.7694324,5145.2658,364.2003634,917.7292309,61.506343,32.081369,366.5558,33.926872,160.10848,21.142804,2.9666725,9.9336003,7.8522494,16.223306,1.4335012,6.712782947,61.3779593,218.7581143,46.48309573,31.77247637,7.159861,58721.16171,5.2570896,1.7272846,0.47723148 +2010,8.975543684,0.885110055,0,0,9.665129376,1.7742176,56.090865,10.48947,4.4070317,1.4644148,0.65896445,58.86009,52.271203,142.6745,2.4614781,5179.9719,370.8962528,953.2286303,65.209531,29.851794,361.74691,35.069515,165.044,20.460881,3.1827017,11.247607,8.7778712,15.914528,1.3375544,6.708375368,62.44447212,224.6021121,47.31829704,34.61053251,7.2759031,58249.45527,4.8975548,1.8511656,0.39655186 +2011,9.25596626,0.91365454,0,0,9.478876566,1.8467555,57.565927,11.056837,4.6237938,2.0468287,0.85601742,62.415615,52.120722,140.42156,3.0036158,5252.9333,372.6576832,906.7673675,67.690592,28.645628,366.94427,43.330418,190.47655,22.158614,3.410604,12.498165,9.4654578,20.415233,1.1291345,6.648935415,62.39874927,218.628754,48.49222156,32.51825927,7.4656928,58834.52202,4.3361773,2.096153,0.39105944 +2012,9.386649745,0.970689078,0,0,9.705285171,1.794986,59.464919,9.6609456,5.4529267,2.0520518,0.7168607,70.235225,53.35878,136.71475,3.0096674,5232.3317,380.8097666,949.6022184,63.311547,25.468261,356.29002,45.81505,205.00564,21.423,3.2771162,12.591587,9.054248,24.0671,0.98551995,6.742796632,63.84845417,229.1069362,48.17674509,35.82690196,7.7062836,57925.01408,3.8379813,1.7328717,0.41594871 +2013,9.659396496,0.91865757,0,0,9.560553735,1.6324652,62.512861,8.3027436,6.5167934,1.9408617,0.61330322,75.740842,54.819887,133.39273,1.8384424,5231.2321,381.5943928,901.2387566,59.817791,19.467118,342.89828,38.8888,202.01825,23.8069,2.9986006,11.604213,9.7859,21.452891,0.87225171,6.847910646,63.65097665,219.3811793,47.50620674,33.24556583,7.686158,57413.51787,3.5745493,0.96258078,0.44442215 +2014,9.719224641,1.095764818,0,0,9.744379658,1.6517,53.5475,9.8735,2.8024,1.6696,1.114899,54.9365,28.9612,133.6791,1.2625,5358.4982,387.8735392,964.0476182,59.82,22.47,358.8813,57.1243,200.0249,25.2487,3.5393,12.991,10.1025,30.4858,1.1516,6.916164551,65.03685366,233.525518,47.38523786,36.14582139,7.8784,57093.26142,3.481,1.2299,0.3854 +2015,9.724603237,0.959883081,0,0,9.727423577,1.57,47.5476,10.8699,0.8742,1.6696,1.6714,43.5734,14.6096,133.823,0,5404.8069,388.0727957,934.3498847,59.82,22.47,358.8813,78.7906,201.9534,32.381,3.6633,14.4857,11.7285,38.5792,1.1516,6.937624392,65.27970313,227.2448193,47.34877178,34.74602423,8.02,50464.18814,3.2933,1.3378,0.3481 +2016,9.778657667,0.941374929,0,0,9.338206727,1.65008,45.01716,11.2194168,0.78156,1.515231454,1.61422146,41.88082,12.88774,135.28868,0,5441.11138,379.9564301,905.4497065,60.8428786,21.9901556,351.625206,95.49579,210.65992,37.72828,3.9734007,12.08364,13.3545772,32.18188,1.16166944,6.859269374,65.25153841,219.5876666,46.67399177,33.61734354,7.71382,48397.01157,3.07158,1.29166,0.33428 +2017,9.832712098,0.922866776,0,0,8.948989877,1.73016,42.48672,11.5689336,0.68892,1.360862908,1.55704292,40.18824,11.16588,136.75436,0,5477.41586,371.8400646,876.5495283,61.8657572,21.5103112,344.369112,112.20098,219.36644,43.07556,4.2835014,9.68158,14.9806544,25.78456,1.17173888,6.780914356,65.22337369,211.9305139,45.99921176,32.48866286,7.40764,46329.835,2.84986,1.24552,0.32046 +2018,9.886766528,0.904358623,0,0,8.559773027,1.81024,39.95628,11.9184504,0.59628,1.206494362,1.49986438,38.49566,9.44402,138.22004,0,5513.72034,363.7236991,847.6493501,62.8886358,21.0304668,337.113018,128.90617,228.07296,48.42284,4.5936021,7.27952,16.6067316,19.38724,1.18180832,6.702559337,65.19520897,204.2733612,45.32443174,31.35998218,7.10146,44262.65843,2.62814,1.19938,0.30664 +2019,9.940820959,0.885850471,0,0,8.170556177,1.89032,37.42584,12.2679672,0.50364,1.052125816,1.44268584,36.80308,7.72216,139.68572,0,5550.02482,355.6073336,818.7491719,63.9115144,20.5506224,329.856924,145.61136,236.77948,53.77012,4.9037028,4.87746,18.2328088,12.98992,1.19187776,6.624204319,65.16704424,196.6162084,44.64965173,30.23130149,6.79528,42195.48186,2.40642,1.15324,0.29282 +2020,9.99487539,0.867342318,0,0,7.781339327,1.9704,34.8954,12.617484,0.411,0.89775727,1.3855073,35.1105,6.0003,141.1514,0,5586.3293,347.490968,789.8489937,64.934393,20.070778,322.60083,162.31655,245.486,59.1174,5.2138035,2.4754,19.858886,6.5926,1.2019472,6.5458493,65.13887952,188.9590557,43.97487171,29.10262081,6.4891,40128.30529,2.1847,1.1071,0.279 +2021,9.93813222,0.785740173,0,0,7.505990086,1.86258,33.28538,12.12522852,0.37899,0.833926213,1.342148655,33.87909,5.50149,139.178,0,5535.19848,341.3270821,767.2151411,63.8401921,19.2265454,304.67177,162.811973,236.6191,59.20029,5.09202535,2.2694,19.860418,6.04397,1.138632531,6.458445214,65.10155154,182.8678432,42.91131701,28.34780042,6.24864,38706.3572,2.06237,1.07222,0.26903 +2022,9.881389049,0.704138028,0,0,7.230640845,1.75476,31.67536,11.63297304,0.34698,0.770095156,1.29879001,32.64768,5.00268,137.2046,0,5484.06766,335.1631961,744.5812885,62.7459912,18.3823128,286.74271,163.307396,227.7522,59.28318,4.9702472,2.0634,19.86195,5.49534,1.075317862,6.371041128,65.06422356,176.7766307,41.8477623,27.59298003,6.00818,37284.40911,1.94004,1.03734,0.25906 +2023,9.824645879,0.622535883,0,0,6.955291605,1.64694,30.06534,11.14071756,0.31497,0.706264099,1.255431365,31.41627,4.50387,135.2312,0,5432.93684,328.9993102,721.9474359,61.6517903,17.5380802,268.81365,163.802819,218.8853,59.36607,4.84846905,1.8574,19.863482,4.94671,1.012003193,6.283637041,65.02689558,170.6854182,40.7842076,26.83815965,5.76772,35862.46103,1.81771,1.00246,0.24909 +2024,9.767902709,0.540933738,0,0,6.679942364,1.53912,28.45532,10.64846208,0.28296,0.642433042,1.21207272,30.18486,4.00506,133.2578,0,5381.80602,322.8354242,699.3135834,60.5575894,16.6938476,250.88459,164.298242,210.0184,59.44896,4.7266909,1.6514,19.865014,4.39808,0.948688524,6.196232955,64.9895676,164.5942057,39.72065289,26.08333926,5.52726,34440.51294,1.69538,0.96758,0.23912 +2025,9.711159539,0.459331593,0,0,6.404593123,1.4313,26.8453,10.1562066,0.25095,0.578601985,1.168714075,28.95345,3.50625,131.2844,0,5330.6752,316.6715383,676.6797308,59.4633885,15.849615,232.95553,164.793665,201.1515,59.53185,4.60491275,1.4454,19.866546,3.84945,0.885373855,6.108828868,64.95223962,158.5029932,38.65709819,25.32851887,5.2868,33018.56485,1.57305,0.9327,0.22915 +2026,9.654416369,0.377729448,0,0,6.129243882,1.32348,25.23528,9.66395112,0.21894,0.514770928,1.12535543,27.72204,3.00744,129.311,0,5279.54438,310.5076523,654.0458782,58.3691876,15.0053824,215.02647,165.289088,192.2846,59.61474,4.4831346,1.2394,19.868078,3.30082,0.822059186,6.021424782,64.91491164,152.4117807,37.59354348,24.57369849,5.04634,31596.61676,1.45072,0.89782,0.21918 +2027,9.597673198,0.296127303,0,0,5.853894641,1.21566,23.62526,9.17169564,0.18693,0.450939871,1.081996785,26.49063,2.50863,127.3376,0,5228.41356,304.3437664,631.4120257,57.2749867,14.1611498,197.09741,165.784511,183.4177,59.69763,4.36135645,1.0334,19.86961,2.75219,0.758744517,5.934020695,64.87758366,146.3205682,36.52998878,23.8188781,4.80588,30174.66867,1.32839,0.86294,0.20921 +2028,9.540930028,0.214525158,0,0,5.578545401,1.10784,22.01524,8.67944016,0.15492,0.387108814,1.03863814,25.25922,2.00982,125.3642,0,5177.28274,298.1798805,608.7781731,56.1807858,13.3169172,179.16835,166.279934,174.5508,59.78052,4.2395783,0.8274,19.871142,2.20356,0.695429848,5.846616609,64.84025568,140.2293557,35.46643407,23.06405771,4.56542,28752.72059,1.20606,0.82806,0.19924 +2029,9.484186858,0.132923013,0,0,5.30319616,1.00002,20.40522,8.18718468,0.12291,0.323277757,0.995279495,24.02781,1.51101,123.3908,0,5126.15192,292.0159945,586.1443205,55.0865849,12.4726846,161.23929,166.775357,165.6839,59.86341,4.11780015,0.6214,19.872674,1.65493,0.632115179,5.759212522,64.8029277,134.1381432,34.40287937,22.30923733,4.32496,27330.7725,1.08373,0.79318,0.18927 +2030,9.427443688,0.051320868,0,0,5.027846919,0.8922,18.7952,7.6949292,0.0909,0.2594467,0.95192085,22.7964,1.0122,121.4174,0,5075.0211,285.8521086,563.510468,53.992384,11.628452,143.31023,167.27078,156.817,59.9463,3.996022,0.4154,19.874206,1.1063,0.56880051,5.671808436,64.76559972,128.0469307,33.33932466,21.55441694,4.0845,25908.82441,0.9614,0.7583,0.1793 +2031,9.21869784,0.035606038,0,0,4.943111815,0.83035,17.92802,7.25007329,0.08382,0.241007612,0.922171126,21.99688,0.92805,120.28538,0,5028.81369,281.5459125,560.5837893,51.7698,10.82562094,131.008084,153.7756382,143.60181,55.15276,3.661632825,0.37794,18.2893508,1.00654,0.519300621,5.627556826,64.72153196,127.045183,32.82850044,21.37858645,3.92969,25074.78659,0.90757,0.7344,0.1729 +2032,9.009951993,0.019891209,0,0,4.858376711,0.7685,17.06084,6.80521738,0.07674,0.222568525,0.892421402,21.19736,0.8439,119.15336,0,4982.60628,277.2397164,557.6571107,49.547216,10.02278988,118.705938,140.2804964,130.38662,50.35922,3.32724365,0.34048,16.7044956,0.90678,0.469800732,5.583305217,64.67746419,126.0434352,32.31767622,21.20275595,3.77488,24240.74878,0.85374,0.7105,0.1665 +2033,8.801206145,0.004176379,0,0,4.773641606,0.70665,16.19366,6.36036147,0.06966,0.204129437,0.862671678,20.39784,0.75975,118.02134,0,4936.39887,272.9335203,554.7304321,47.324632,9.21995882,106.403792,126.7853546,117.17143,45.56568,2.992854475,0.30302,15.1196404,0.80702,0.420300843,5.539053608,64.63339643,125.0416875,31.806852,21.02692546,3.62007,23406.71096,0.79991,0.6866,0.1601 +2034,8.592460297,0,0,0.01153845,4.688906502,0.6448,15.32648,5.91550556,0.06258,0.18569035,0.832921954,19.59832,0.6756,116.88932,0,4890.19146,268.6273242,551.8037534,45.102048,8.41712776,94.101646,113.2902128,103.95624,40.77214,2.6584653,0.26556,13.5347852,0.70726,0.370800954,5.494801999,64.58932867,124.0399398,31.29602778,20.85109497,3.46526,22572.67315,0.74608,0.6627,0.1537 +2035,8.383714449,0,0,0.02725328,4.604171398,0.58295,14.4593,5.47064965,0.0555,0.167251262,0.80317223,18.7988,0.59145,115.7573,0,4843.98405,264.3211282,548.8770748,42.879464,7.6142967,81.7995,99.795071,90.74105,35.9786,2.324076125,0.2281,11.94993,0.6075,0.321301066,5.450550389,64.54526091,123.038192,30.78520356,20.67526448,3.31045,21738.63533,0.69225,0.6388,0.1473 +2036,8.174968602,0,0,0.042968109,4.519436294,0.5211,13.59212,5.02579374,0.04842,0.148812174,0.773422506,17.99928,0.5073,114.62528,0,4797.77664,260.0149321,545.9503961,40.65688,6.81146564,69.497354,86.2999292,77.52586,31.18506,1.98968695,0.19064,10.3650748,0.50774,0.271801177,5.40629878,64.50119314,122.0364443,30.27437934,20.49943399,3.15564,20904.59751,0.63842,0.6149,0.1409 +2037,7.966222754,0,0,0.058682938,4.434701189,0.45925,12.72494,4.58093783,0.04134,0.130373087,0.743672782,17.19976,0.42315,113.49326,0,4751.56923,255.708736,543.0237175,38.434296,6.00863458,57.195208,72.8047874,64.31067,26.39152,1.655297775,0.15318,8.7802196,0.40798,0.222301288,5.362047171,64.45712538,121.0346965,29.76355512,20.3236035,3.00083,20070.5597,0.58459,0.591,0.1345 +2038,7.757476906,0,0,0.074397768,4.349966085,0.3974,11.85776,4.13608192,0.03426,0.111933999,0.713923058,16.40024,0.339,112.36124,0,4705.36182,251.4025399,540.0970389,36.211712,5.20580352,44.893062,59.3096456,51.09548,21.59798,1.3209086,0.11572,7.1953644,0.30822,0.172801399,5.317795562,64.41305762,120.0329488,29.2527309,20.147773,2.84602,19236.52188,0.53076,0.5671,0.1281 +2039,7.548731059,0,0,0.090112597,4.265230981,0.33555,10.99058,3.69122601,0.02718,0.093494912,0.684173334,15.60072,0.25485,111.22922,0,4659.15441,247.0963438,537.1703602,33.989128,4.40297246,32.590916,45.8145038,37.88029,16.80444,0.986519425,0.07826,5.6105092,0.20846,0.12330151,5.273543952,64.36898985,119.0312011,28.74190668,19.97194251,2.69121,18402.48407,0.47693,0.5432,0.1217 +2040,7.339985211,0,0,0.105827427,4.180495877,0.2737,10.1234,3.2463701,0.0201,0.075055824,0.65442361,14.8012,0.1707,110.0972,0,4612.947,242.7901478,534.2436816,31.766544,3.6001414,20.28877,32.319362,24.6651,12.0109,0.65213025,0.0408,4.025654,0.1087,0.073801621,5.229292343,64.32492209,118.0294533,28.23108245,19.79611202,2.5364,17568.44625,0.4231,0.5193,0.1153 +2041,7.14418975,0,0,0.143236191,4.123748115,0.26215,9.65632,3.148411,0.01853,0.0697235,0.633957487,14.28209,0.15651,109.8858,0,4602.77194,239.6220129,531.1024823,30.4061322,3.34120265,18.44822429,31.1287897,23.65425,11.58351,0.624795234,0.03788,3.89028242,0.10092,0.070265038,5.211805874,64.31294744,117.1389414,27.67548292,19.63937385,2.49378,17150.217,0.39941,0.50294,0.11118 +2042,6.948394289,0,0,0.180644955,4.067000354,0.2506,9.18924,3.0504519,0.01696,0.064391176,0.613491364,13.76298,0.14232,109.6744,0,4592.59688,236.4538781,527.9612831,29.0457204,3.0822639,16.60767858,29.9382174,22.6434,11.15612,0.597460218,0.03496,3.75491084,0.09314,0.066728454,5.194319405,64.30097279,116.2484295,27.11988338,19.48263567,2.45116,16731.98775,0.37572,0.48658,0.10706 +2043,6.752598828,0,0,0.218053719,4.010252593,0.23905,8.72216,2.9524928,0.01539,0.059058851,0.593025241,13.24387,0.12813,109.463,0,4582.42182,233.2857433,524.8200839,27.6853086,2.82332515,14.76713287,28.7476451,21.63255,10.72873,0.570125202,0.03204,3.61953926,0.08536,0.063191871,5.176832936,64.28899814,115.3579176,26.56428384,19.3258975,2.40854,16313.7585,0.35203,0.47022,0.10294 +2044,6.556803367,0,0,0.255462483,3.953504831,0.2275,8.25508,2.8545337,0.01382,0.053726527,0.572559118,12.72476,0.11394,109.2516,0,4572.24676,230.1176085,521.6788847,26.3248968,2.5643864,12.92658716,27.5570728,20.6217,10.30134,0.542790186,0.02912,3.48416768,0.07758,0.059655287,5.159346467,64.27702349,114.4674057,26.0086843,19.16915933,2.36592,15895.52926,0.32834,0.45386,0.09882 +2045,6.361007906,0,0,0.292871247,3.89675707,0.21595,7.788,2.7565746,0.01225,0.048394203,0.552092995,12.20565,0.09975,109.0402,0,4562.0717,226.9494737,518.5376854,24.964485,2.30544765,11.08604145,26.3665005,19.61085,9.87395,0.51545517,0.0262,3.3487961,0.0698,0.056118704,5.141859998,64.26504884,113.5768938,25.45308476,19.01242116,2.3233,15477.30001,0.30465,0.4375,0.0947 +2046,6.165212445,0,0,0.330280011,3.840009308,0.2044,7.32092,2.6586155,0.01068,0.043061879,0.531626872,11.68654,0.08556,108.8288,0,4551.89664,223.7813388,515.3964862,23.6040732,2.0465089,9.24549574,25.1759282,18.6,9.44656,0.488120154,0.02328,3.21342452,0.06202,0.05258212,5.124373529,64.25307419,112.686382,24.89748522,18.85568298,2.28068,15059.07076,0.28096,0.42114,0.09058 +2047,5.969416984,0,0,0.367688774,3.783261547,0.19285,6.85384,2.5606564,0.00911,0.037729555,0.511160749,11.16743,0.07137,108.6174,0,4541.72158,220.613204,512.255287,22.2436614,1.78757015,7.40495003,23.9853559,17.58915,9.01917,0.460785138,0.02036,3.07805294,0.05424,0.049045537,5.10688706,64.24109954,111.7958701,24.34188568,18.69894481,2.23806,14640.84151,0.25727,0.40478,0.08646 +2048,5.773621523,0,0,0.405097538,3.726513786,0.1813,6.38676,2.4626973,0.00754,0.03239723,0.490694626,10.64832,0.05718,108.406,0,4531.54652,217.4450692,509.1140877,20.8832496,1.5286314,5.56440432,22.7947836,16.5783,8.59178,0.433450122,0.01744,2.94268136,0.04646,0.045508953,5.08940059,64.22912489,110.9053582,23.78628614,18.54220664,2.19544,14222.61226,0.23358,0.38842,0.08234 +2049,5.577826062,0,0,0.442506302,3.669766024,0.16975,5.91968,2.3647382,0.00597,0.027064906,0.470228503,10.12921,0.04299,108.1946,0,4521.37146,214.2769344,505.9728885,19.5228378,1.26969265,3.72385861,21.6042113,15.56745,8.16439,0.406115106,0.01452,2.80730978,0.03868,0.041972369,5.071914121,64.21715024,110.0148463,23.23068661,18.38546846,2.15282,13804.38301,0.20989,0.37206,0.07822 +2050,5.3820306,0,0,0.479915066,3.613018263,0.1582,5.4526,2.2667791,0.0044,0.021732582,0.44976238,9.6101,0.0288,107.9832,0,4511.1964,211.1087996,502.8316893,18.162426,1.0107539,1.8833129,20.413639,14.5566,7.737,0.37878009,0.0116,2.6719382,0.0309,0.038435786,5.054427652,64.20517559,109.1243344,22.67508707,18.22873029,2.1102,13386.15377,0.1862,0.3557,0.0741 +2051,5.201715011,0,0,0.502510363,3.58905045,0.15205,5.20103,2.2237695,0.00406,0.020186656,0.435696317,9.27305,0.02641,107.87064,0,4506.72897,209.0870738,499.8023607,17.3846094,0.938056143,1.712466056,20.5836663,14.60264,7.80627,0.376741058,0.01106,2.7062342,0.02946,0.03817791,5.04700914,64.13985286,108.2697243,22.45521369,18.10318622,2.08573,13151.27188,0.17577,0.34449,0.07145 +2052,5.021399421,0,0,0.525105659,3.565082638,0.1459,4.94946,2.1807599,0.00372,0.01864073,0.421630254,8.936,0.02402,107.75808,0,4502.26154,207.0653479,496.7730322,16.6067928,0.865358386,1.541619212,20.7536936,14.64868,7.87554,0.374702026,0.01052,2.7405302,0.02802,0.037920034,5.039590627,64.07453013,107.4151143,22.23534032,17.97764215,2.06126,12916.38999,0.16534,0.33328,0.0688 +2053,4.841083831,0,0,0.547700955,3.541114825,0.13975,4.69789,2.1377503,0.00338,0.017094804,0.407564191,8.59895,0.02163,107.64552,0,4497.79411,205.0436221,493.7437037,15.8289762,0.792660629,1.370772368,20.9237209,14.69472,7.94481,0.372662994,0.00998,2.7748262,0.02658,0.037662158,5.032172114,64.0092074,106.5605043,22.01546694,17.85209808,2.03679,12681.5081,0.15491,0.32207,0.06615 +2054,4.660768242,0,0,0.570296252,3.517147013,0.1336,4.44632,2.0947407,0.00304,0.015548878,0.393498128,8.2619,0.01924,107.53296,0,4493.32668,203.0218963,490.7143752,15.0511596,0.719962872,1.199925524,21.0937482,14.74076,8.01408,0.370623962,0.00944,2.8091222,0.02514,0.037404282,5.024753601,63.94388467,105.7058943,21.79559357,17.72655401,2.01232,12446.62621,0.14448,0.31086,0.0635 +2055,4.480452652,0,0,0.592891548,3.4931792,0.12745,4.19475,2.0517311,0.0027,0.014002952,0.379432065,7.92485,0.01685,107.4204,0,4488.85925,201.0001705,487.6850466,14.273343,0.647265115,1.02907868,21.2637755,14.7868,8.08335,0.36858493,0.0089,2.8434182,0.0237,0.037146407,5.017335089,63.87856194,104.8512842,21.57572019,17.60100995,1.98785,12211.74433,0.13405,0.29965,0.06085 +2056,4.300137062,0,0,0.615486844,3.469211387,0.1213,3.94318,2.0087215,0.00236,0.012457026,0.365366002,7.5878,0.01446,107.30784,0,4484.39182,198.9784446,484.6557181,13.4955264,0.574567358,0.858231836,21.4338028,14.83284,8.15262,0.366545898,0.00836,2.8777142,0.02226,0.036888531,5.009916576,63.81323922,103.9966742,21.35584682,17.47546588,1.96338,11976.86244,0.12362,0.28844,0.0582 +2057,4.119821472,0,0,0.638082141,3.445243575,0.11515,3.69161,1.9657119,0.00202,0.0109111,0.351299939,7.25075,0.01207,107.19528,0,4479.92439,196.9567188,481.6263896,12.7177098,0.501869601,0.687384992,21.6038301,14.87888,8.22189,0.364506866,0.00782,2.9120102,0.02082,0.036630655,5.002498063,63.74791649,103.1420642,21.13597345,17.34992181,1.93891,11741.98055,0.11319,0.27723,0.05555 +2058,3.939505883,0,0,0.660677437,3.421275762,0.109,3.44004,1.9227023,0.00168,0.009365174,0.337233876,6.9137,0.00968,107.08272,0,4475.45696,194.934993,478.597061,11.9398932,0.429171844,0.516538148,21.7738574,14.92492,8.29116,0.362467834,0.00728,2.9463062,0.01938,0.036372779,4.99507955,63.68259376,102.2874541,20.91610007,17.22437774,1.91444,11507.09866,0.10276,0.26602,0.0529 +2059,3.759190293,0,0,0.683272733,3.39730795,0.10285,3.18847,1.8796927,0.00134,0.007819249,0.323167813,6.57665,0.00729,106.97016,0,4470.98953,192.9132672,475.5677325,11.1620766,0.356474087,0.345691304,21.9438847,14.97096,8.36043,0.360428802,0.00674,2.9806022,0.01794,0.036114903,4.987661038,63.61727103,101.4328441,20.6962267,17.09883367,1.88997,11272.21678,0.09233,0.25481,0.05025 +2060,3.578874703,0,0,0.70586803,3.373340137,0.0967,2.9369,1.8366831,0.001,0.006273323,0.30910175,6.2396,0.0049,106.8576,0,4466.5221,190.8915413,472.538404,10.38426,0.28377633,0.17484446,22.113912,15.017,8.4297,0.35838977,0.0062,3.0148982,0.0165,0.035857027,4.980242525,63.5519483,100.5782341,20.47635332,16.9732896,1.8655,11037.33489,0.0819,0.2436,0.0476 +2061,3.413657453,0,0,0.705795793,3.350692966,0.09332,2.80139,1.81424331,9.20E-04,0.005825228,0.299431331,6.02076,0.00449,106.79573,0,4464.19127,188.4460184,470.4382774,9.93955833,0.263361767,0.158985329,22.2958953,15.11446,8.51433,0.356926465,0.00591,3.05172946,0.01573,0.035758789,4.980250648,63.5345075,99.54598461,20.23364109,16.93371939,1.84196,10822.39813,0.07732,0.23592,0.0459 +2062,3.248440203,0,0,0.705723557,3.328045794,0.08994,2.66588,1.79180352,8.40E-04,0.005377134,0.289760912,5.80192,0.00408,106.73386,0,4461.86044,186.0004954,468.3381507,9.49485666,0.242947203,0.143126197,22.4778786,15.21192,8.59896,0.35546316,0.00562,3.08856072,0.01496,0.03566055,4.98025877,63.5170667,98.51373515,19.99092885,16.89414919,1.81842,10607.46138,0.07274,0.22824,0.0442 +2063,3.083222953,0,0,0.705651321,3.305398623,0.08656,2.53037,1.76936373,7.60E-04,0.004929039,0.280090493,5.58308,0.00367,106.67199,0,4459.52961,183.5549725,466.2380241,9.05015499,0.22253264,0.127267066,22.6598619,15.30938,8.68359,0.353999855,0.00533,3.12539198,0.01419,0.035562312,4.980266893,63.4996259,97.48148569,19.74821662,16.85457899,1.79488,10392.52462,0.06816,0.22056,0.0425 +2064,2.918005703,0,0,0.705579085,3.282751452,0.08318,2.39486,1.74692394,6.80E-04,0.004480945,0.270420074,5.36424,0.00326,106.61012,0,4457.19878,181.1094495,464.1378975,8.60545332,0.202118076,0.111407935,22.8418452,15.40684,8.76822,0.35253655,0.00504,3.16222324,0.01342,0.035464073,4.980275016,63.4821851,96.44923623,19.50550438,16.81500878,1.77134,10177.58786,0.06358,0.21288,0.0408 +2065,2.752788453,0,0,0.705506848,3.26010428,0.0798,2.25935,1.72448415,6.00E-04,0.00403285,0.260749655,5.1454,0.00285,106.54825,0,4454.86795,178.6639266,462.0377708,8.16075165,0.181703513,0.095548804,23.0238285,15.5043,8.85285,0.351073245,0.00475,3.1990545,0.01265,0.035365835,4.980283139,63.4647443,95.41698677,19.26279215,16.77543858,1.7478,9962.651109,0.059,0.2052,0.0391 +2066,2.587571203,0,0,0.705434612,3.237457109,0.07642,2.12384,1.70204436,5.20E-04,0.003584756,0.251079236,4.92656,0.00244,106.48638,0,4452.53712,176.2184036,459.9376442,7.71604998,0.16128895,0.079689672,23.2058118,15.60176,8.93748,0.34960994,0.00446,3.23588576,0.01188,0.035267597,4.980291261,63.44730351,94.38473731,19.02007991,16.73586837,1.72426,9747.714354,0.05442,0.19752,0.0374 +2067,2.422353953,0,0,0.705362376,3.214809938,0.07304,1.98833,1.67960457,4.40E-04,0.003136661,0.241408817,4.70772,0.00203,106.42451,0,4450.20629,173.7728807,457.8375176,7.27134831,0.140874386,0.063830541,23.3877951,15.69922,9.02211,0.348146635,0.00417,3.27271702,0.01111,0.035169358,4.980299384,63.42986271,93.35248785,18.77736768,16.69629817,1.70072,9532.777598,0.04984,0.18984,0.0357 +2068,2.257136703,0,0,0.70529014,3.192162767,0.06966,1.85282,1.65716478,3.60E-04,0.002688567,0.231738398,4.48888,0.00162,106.36264,0,4447.87546,171.3273577,455.7373909,6.82664664,0.120459823,0.04797141,23.5697784,15.79668,9.10674,0.34668333,0.00388,3.30954828,0.01034,0.03507112,4.980307507,63.41242191,92.32023839,18.53465544,16.65672796,1.67718,9317.840843,0.04526,0.18216,0.034 +2069,2.091919453,0,0,0.705217903,3.169515595,0.06628,1.71731,1.63472499,2.80E-04,0.002240472,0.222067979,4.27004,0.00121,106.30077,0,4445.54463,168.8818348,453.6372643,6.38194497,0.100045259,0.032112278,23.7517617,15.89414,9.19137,0.345220025,0.00359,3.34637954,0.00957,0.034972881,4.98031563,63.39498111,91.28798893,18.29194321,16.61715776,1.65364,9102.904087,0.04068,0.17448,0.0323 +2070,1.926702203,0,0,0.705145667,3.146868424,0.0629,1.5818,1.6122852,2.00E-04,0.001792378,0.21239756,4.0512,8.00E-04,106.2389,0,4443.2138,166.4363118,451.5371377,5.9372433,0.079630696,0.016253147,23.933745,15.9916,9.276,0.34375672,0.0033,3.3832108,0.0088,0.034874643,4.980323752,63.37754031,90.25573947,18.04923097,16.57758756,1.6301,8887.967332,0.0361,0.1668,0.0306 +2071,1.710886837,0,0,0.70113233,3.107429479,0.06091,1.50882,1.59360537,1.80E-04,0.00165795,0.205751345,3.90912,7.30E-04,106.20248,0,4441.27351,163.7238975,448.2550693,5.68298413,0.073907751,0.014775588,24.0926619,16.13316,9.34807,0.342857147,0.00314,3.41733419,0.00837,0.034874643,4.993097925,63.39843991,88.97441406,17.75964541,16.495993,1.60464,8663.253295,0.03408,0.16155,0.02951 +2072,1.495071471,0,0,0.697118992,3.067990533,0.05892,1.43584,1.57492554,1.60E-04,0.001523521,0.19910513,3.76704,6.60E-04,106.16606,0,4439.33322,161.0114832,444.973001,5.42872496,0.068184805,0.013298029,24.2515788,16.27472,9.42014,0.341957574,0.00298,3.45145758,0.00794,0.034874643,5.005872098,63.4193395,87.69308865,17.47005985,16.41439845,1.57918,8438.539258,0.03206,0.1563,0.02842 +2073,1.279256105,0,0,0.693105655,3.028551588,0.05693,1.36286,1.55624571,1.40E-04,0.001389093,0.192458915,3.62496,5.90E-04,106.12964,0,4437.39293,158.2990688,441.6909327,5.17446579,0.06246186,0.011820471,24.4104957,16.41628,9.49221,0.341058001,0.00282,3.48558097,0.00751,0.034874643,5.018646271,63.4402391,86.41176324,17.18047429,16.3328039,1.55372,8213.825221,0.03004,0.15105,0.02733 +2074,1.063440739,0,0,0.689092317,2.989112643,0.05494,1.28988,1.53756588,1.20E-04,0.001254665,0.1858127,3.48288,5.20E-04,106.09322,0,4435.45264,155.5866545,438.4088644,4.92020662,0.056738915,0.010342912,24.5694126,16.55784,9.56428,0.340158428,0.00266,3.51970436,0.00708,0.034874643,5.031420444,63.4611387,85.13043783,16.89088874,16.25120935,1.52826,7989.111184,0.02802,0.1458,0.02624 +2075,0.847625372,0,0,0.68507898,2.949673698,0.05295,1.2169,1.51888605,1.00E-04,0.001120236,0.179166485,3.3408,4.50E-04,106.0568,0,4433.51235,152.8742401,435.126796,4.66594745,0.05101597,0.008865353,24.7283295,16.6994,9.63635,0.339258855,0.0025,3.55382775,0.00665,0.034874643,5.044194616,63.4820383,83.84911242,16.60130318,16.1696148,1.5028,7764.397147,0.026,0.14055,0.02515 +2076,0.631810006,0,0,0.681065642,2.910234752,0.05096,1.14392,1.50020622,8.00E-05,9.86E-04,0.17252027,3.19872,3.80E-04,106.02038,0,4431.57206,150.1618258,431.8447277,4.41168828,0.045293024,0.007387794,24.8872464,16.84096,9.70842,0.338359282,0.00234,3.58795114,0.00622,0.034874643,5.056968789,63.50293789,82.56778701,16.31171762,16.08802024,1.47734,7539.68311,0.02398,0.1353,0.02406 +2077,0.41599464,0,0,0.677052305,2.870795807,0.04897,1.07094,1.48152639,6.00E-05,8.51E-04,0.165874055,3.05664,3.10E-04,105.98396,0,4429.63177,147.4494114,428.5626594,4.15742911,0.039570079,0.005910235,25.0461633,16.98252,9.78049,0.337459709,0.00218,3.62207453,0.00579,0.034874643,5.069742962,63.52383749,81.2864616,16.02213206,16.00642569,1.45188,7314.969073,0.02196,0.13005,0.02297 +2078,0.200179274,0,0,0.673038968,2.831356862,0.04698,0.99796,1.46284656,4.00E-05,7.17E-04,0.15922784,2.91456,2.40E-04,105.94754,0,4427.69148,144.7369971,425.280591,3.90316994,0.033847134,0.004432676,25.2050802,17.12408,9.85256,0.336560136,0.00202,3.65619792,0.00536,0.034874643,5.082517135,63.54473709,80.00513619,15.7325465,15.92483114,1.42642,7090.255036,0.01994,0.1248,0.02188 +2079,0,0,0.015636092,0.66902563,2.791917916,0.04499,0.92498,1.44416673,2.00E-05,5.83E-04,0.152581625,2.77248,1.70E-04,105.91112,0,4425.75119,142.0245828,421.9985227,3.64891077,0.028124188,0.002955118,25.3639971,17.26564,9.92463,0.335660563,0.00186,3.69032131,0.00493,0.034874643,5.095291308,63.56563669,78.72381078,15.44296094,15.84323659,1.40096,6865.540999,0.01792,0.11955,0.02079 +2080,0,0,0.231451458,0.665012293,2.752478971,0.043,0.852,1.4254869,0,4.48E-04,0.14593541,2.6304,1.00E-04,105.8747,0,4423.8109,139.3121684,418.7164544,3.3946516,0.022401243,0.001477559,25.522914,17.4072,9.9967,0.33476099,0.0017,3.7244447,0.0045,0.034874643,5.108065481,63.58653628,77.44248537,15.15337538,15.76164204,1.3755,6640.826962,0.0159,0.1143,0.0197 +2081,0,0,0.380242312,0.655400439,2.724462356,0.04131,0.81269,1.40044713,0,4.26E-04,0.141363939,2.53814,9.00E-05,105.84377,0,4421.21001,138.3939202,416.1976898,3.24927085,0.020790643,0.00134622,25.5794786,17.52036,10.01798,0.333261703,0.00161,3.74492089,0.00426,0.034837804,5.141085544,63.61542611,76.73775092,14.99381791,15.67102281,1.35195,6492.700775,0.01501,0.1107,0.01899 +2082,0,0,0.529033166,0.645788585,2.69644574,0.03962,0.77338,1.37540736,0,4.03E-04,0.136792468,2.44588,8.00E-05,105.81284,0,4418.60912,137.475672,413.6789252,3.1038901,0.019180042,0.001214882,25.6360432,17.63352,10.03926,0.331762416,0.00152,3.76539708,0.00402,0.034800964,5.174105607,63.64431593,76.03301646,14.83426044,15.58040358,1.3284,6344.574587,0.01412,0.1071,0.01828 +2083,0,0,0.677824019,0.636176731,2.668429125,0.03793,0.73407,1.35036759,0,3.81E-04,0.132220997,2.35362,7.00E-05,105.78191,0,4416.00823,136.5574238,411.1601606,2.95850935,0.017569442,0.001083543,25.6926078,17.74668,10.06054,0.330263129,0.00143,3.78587327,0.00378,0.034764125,5.20712567,63.67320576,75.328282,14.67470297,15.48978435,1.30485,6196.4484,0.01323,0.1035,0.01757 +2084,0,0,0.826614873,0.626564877,2.640412509,0.03624,0.69476,1.32532782,0,3.58E-04,0.127649526,2.26136,6.00E-05,105.75098,0,4413.40734,135.6391756,408.6413959,2.8131286,0.015958842,9.52E-04,25.7491724,17.85984,10.08182,0.328763842,0.00134,3.80634946,0.00354,0.034727285,5.240145733,63.70209558,74.62354755,14.5151455,15.39916512,1.2813,6048.322212,0.01234,0.0999,0.01686 +2085,0,0,0.975405726,0.616953023,2.612395894,0.03455,0.65545,1.30028805,0,3.36E-04,0.123078055,2.1691,5.00E-05,105.72005,0,4410.80645,134.7209273,406.1226313,2.66774785,0.014348241,8.21E-04,25.805737,17.973,10.1031,0.327264555,0.00125,3.82682565,0.0033,0.034690446,5.273165796,63.73098541,73.91881309,14.35558803,15.30854589,1.25775,5900.196025,0.01145,0.0963,0.01615 +2086,0,0,1.12419658,0.607341169,2.584379278,0.03286,0.61614,1.27524828,0,3.14E-04,0.118506584,2.07684,4.00E-05,105.68912,0,4408.20556,133.8026791,403.6038667,2.5223671,0.012737641,6.90E-04,25.8623016,18.08616,10.12438,0.325765268,0.00116,3.84730184,0.00306,0.034653607,5.30618586,63.75987523,73.21407864,14.19603056,15.21792666,1.2342,5752.069837,0.01056,0.0927,0.01544 +2087,0,0,1.272987433,0.597729315,2.556362663,0.03117,0.57683,1.25020851,0,2.91E-04,0.113935113,1.98458,3.00E-05,105.65819,0,4405.60467,132.8844309,401.0851021,2.37698635,0.011127041,5.58E-04,25.9188662,18.19932,10.14566,0.324265981,0.00107,3.86777803,0.00282,0.034616767,5.339205923,63.78876506,72.50934418,14.03647309,15.12730743,1.21065,5603.94365,0.00967,0.0891,0.01473 +2088,0,0,1.421778287,0.588117461,2.528346047,0.02948,0.53752,1.22516874,0,2.69E-04,0.109363642,1.89232,2.00E-05,105.62726,0,4403.00378,131.9661827,398.5663375,2.2316056,0.00951644,4.27E-04,25.9754308,18.31248,10.16694,0.322766694,9.80E-04,3.88825422,0.00258,0.034579928,5.372225986,63.81765488,71.80460972,13.87691562,15.03668821,1.1871,5455.817462,0.00878,0.0855,0.01402 +2089,0,0,1.570569141,0.578505607,2.500329432,0.02779,0.49821,1.20012897,0,2.46E-04,0.104792171,1.80006,1.00E-05,105.59633,0,4400.40289,131.0479345,396.0475729,2.08622485,0.00790584,2.96E-04,26.0319954,18.42564,10.18822,0.321267407,8.90E-04,3.90873041,0.00234,0.034543088,5.405246049,63.84654471,71.09987527,13.71735815,14.94606898,1.16355,5307.691275,0.00789,0.0819,0.01331 +2090,0,0,1.719359994,0.568893753,2.472312816,0.0261,0.4589,1.1750892,0,2.24E-04,0.1002207,1.7078,0,105.5654,0,4397.802,130.1296863,393.5288083,1.9408441,0.00629524,1.64E-04,26.08856,18.5388,10.2095,0.31976812,8.00E-04,3.9292066,0.0021,0.034506249,5.438266112,63.87543453,70.39514081,13.55780068,14.85544975,1.14,5159.565087,0.007,0.0783,0.0126 +2091,0,0,1.70348442,0.591116896,2.447784241,0.02441,0.43762,1.150049429,0,2.02E-04,0.097055836,1.64769,0.0012,105.53447,0,4395.20111,129.3362519,389.5035203,1.86679494,0.007758679,0.001050708,25.9699291,18.52154,10.16304,0.316577635,7.20E-04,3.9201768,0.00189,0.034272933,5.426346368,63.77882506,69.58613236,13.45728208,14.67867089,1.11568,5047.755476,0.0071,0.07583,0.01215 +2092,0,0,1.687608845,0.61334004,2.423255665,0.02272,0.41634,1.125009658,0,1.79E-04,0.093890972,1.58758,0.0024,105.50354,0,4392.60022,128.5428176,385.4782323,1.79274578,0.009222117,0.001937244,25.8512982,18.50428,10.11658,0.31338715,6.40E-04,3.911147,0.00168,0.034039616,5.414426624,63.68221558,68.77712391,13.35676348,14.50189203,1.09136,4935.945865,0.0072,0.07336,0.0117 +2093,0,0,1.671733271,0.635563183,2.39872709,0.02103,0.39506,1.099969887,0,1.57E-04,0.090726108,1.52747,0.0036,105.47261,0,4389.99933,127.7493832,381.4529443,1.71869662,0.010685556,0.002823779,25.7326673,18.48702,10.07012,0.310196665,5.60E-04,3.9021172,0.00147,0.0338063,5.402506879,63.5856061,67.96811546,13.25624488,14.32511317,1.06704,4824.136254,0.0073,0.07089,0.01125 +2094,0,0,1.655857696,0.657786327,2.374198515,0.01934,0.37378,1.074930116,0,1.34E-04,0.087561244,1.46736,0.0048,105.44168,0,4387.39844,126.9559489,377.4276563,1.64464746,0.012148995,0.003710314,25.6140364,18.46976,10.02366,0.30700618,4.80E-04,3.8930874,0.00126,0.033572984,5.390587135,63.48899663,67.15910701,13.15572628,14.14833431,1.04272,4712.326643,0.0074,0.06842,0.0108 +2095,0,0,1.639982122,0.68000947,2.349669939,0.01765,0.3525,1.049890345,0,1.12E-04,0.08439638,1.40725,0.006,105.41075,0,4384.79755,126.1625146,373.4023683,1.5705983,0.013612434,0.00459685,25.4954055,18.4525,9.9772,0.303815695,4.00E-04,3.8840576,0.00105,0.033339668,5.378667391,63.39238715,66.35009855,13.05520768,13.97155545,1.0184,4600.517032,0.0075,0.06595,0.01035 +2096,0,0,1.624106547,0.702232613,2.325141364,0.01596,0.33122,1.024850574,0,8.96E-05,0.081231515,1.34714,0.0072,105.37982,0,4382.19666,125.3690802,369.3770803,1.49654914,0.015075873,0.005483385,25.3767746,18.43524,9.93074,0.30062521,3.20E-04,3.8750278,8.40E-04,0.033106351,5.366747646,63.29577767,65.5410901,12.95468908,13.79477659,0.99408,4488.707421,0.0076,0.06348,0.0099 +2097,0,0,1.608230973,0.724455757,2.300612788,0.01427,0.30994,0.999810803,0,6.72E-05,0.078066651,1.28703,0.0084,105.34889,0,4379.59577,124.5756459,365.3517924,1.42249998,0.016539312,0.00636992,25.2581437,18.41798,9.88428,0.297434725,2.40E-04,3.865998,6.30E-04,0.032873035,5.354827902,63.19916819,64.73208165,12.85417048,13.61799773,0.96976,4376.89781,0.0077,0.06101,0.00945 +2098,0,0,1.592355398,0.7466789,2.276084213,0.01258,0.28866,0.974771032,0,4.48E-05,0.074901787,1.22692,0.0096,105.31796,0,4376.99488,123.7822116,361.3265044,1.34845082,0.01800275,0.007256455,25.1395128,18.40072,9.83782,0.29424424,1.60E-04,3.8569682,4.20E-04,0.032639719,5.342908158,63.10255872,63.9230732,12.75365188,13.44121887,0.94544,4265.088199,0.0078,0.05854,0.009 +2099,0,0,1.576479824,0.768902044,2.251555637,0.01089,0.26738,0.949731261,0,2.24E-05,0.071736923,1.16681,0.0108,105.28703,0,4374.39399,122.9887772,357.3012164,1.27440166,0.019466189,0.008142991,25.0208819,18.38346,9.79136,0.291053755,8.00E-05,3.8479384,2.10E-04,0.032406402,5.330988414,63.00594924,63.11406475,12.65313328,13.26444001,0.92112,4153.278588,0.0079,0.05607,0.00855 +2100,0,0,1.56060425,0.791125187,2.227027062,0.0092,0.2461,0.92469149,0,0,0.068572059,1.1067,0.012,105.2561,0,4371.7931,122.1953429,353.2759284,1.2003525,0.020929628,0.009029526,24.902251,18.3662,9.7449,0.28786327,0,3.8389086,0,0.032173086,5.319068669,62.90933976,62.3050563,12.55261468,13.08766115,0.8968,4041.468978,0.008,0.0536,0.0081 +2101,0,0,1.56060425,0.775302683,2.21968139,0.009138667,0.244459333,0.91852688,0,0,0.068114912,1.099322,0.01192,104.5543927,0,4342.647813,121.8417871,352.2774937,1.19235015,0.020790097,0.008969329,24.73623599,18.24375867,9.679934,0.285944182,0,3.813315876,0,0.031958599,5.312694271,62.80801687,62.15111785,12.5051556,13.05577703,0.890821333,4019.0099,0.007946667,0.053242667,0.008046 +2102,0,0,1.56060425,0.759480179,2.212335718,0.009077333,0.242818667,0.91236227,0,0,0.067657765,1.091944,0.01184,103.8526853,0,4313.502525,121.4882312,351.2790589,1.1843478,0.020650566,0.008909132,24.57022099,18.12131733,9.614968,0.284025093,0,3.787723152,0,0.031744112,5.306319873,62.70669399,61.9971794,12.45769652,13.02389291,0.884842667,3996.550822,0.007893333,0.052885333,0.007992 +2103,0,0,1.56060425,0.743657676,2.204990046,0.009016,0.241178,0.90619766,0,0,0.067200618,1.084566,0.01176,103.150978,0,4284.357238,121.1346754,350.2806242,1.17634545,0.020511035,0.008848935,24.40420598,17.998876,9.550002,0.282106005,0,3.762130428,0,0.031529624,5.299945474,62.6053711,61.84324095,12.41023745,12.9920088,0.878864,3974.091744,0.00784,0.052528,0.007938 +2104,0,0,1.56060425,0.727835172,2.197644374,0.008954667,0.239537333,0.90003305,0,0,0.066743471,1.077188,0.01168,102.4492707,0,4255.211951,120.7811195,349.2821894,1.1683431,0.020371505,0.008788739,24.23819097,17.87643467,9.485036,0.280186916,0,3.736537704,0,0.031315137,5.293571076,62.50404821,61.68930251,12.36277837,12.96012468,0.872885333,3951.632666,0.007786667,0.052170667,0.007884 +2105,0,0,1.56060425,0.712012668,2.190298702,0.008893333,0.237896667,0.89386844,0,0,0.066286324,1.06981,0.0116,101.7475633,0,4226.066663,120.4275637,348.2837547,1.16034075,0.020231974,0.008728542,24.07217597,17.75399333,9.42007,0.278267828,0,3.71094498,0,0.03110065,5.287196677,62.40272533,61.53536406,12.31531929,12.92824057,0.866906667,3929.173588,0.007733333,0.051813333,0.00783 +2106,0,0,1.56060425,0.696190164,2.182953029,0.008832,0.236256,0.88770383,0,0,0.065829177,1.062432,0.01152,101.045856,0,4196.921376,120.0740078,347.28532,1.1523384,0.020092443,0.008668345,23.90616096,17.631552,9.355104,0.276348739,0,3.685352256,0,0.030886163,5.280822279,62.30140244,61.38142561,12.26786022,12.89635645,0.860928,3906.71451,0.00768,0.051456,0.007776 +2107,0,0,1.56060425,0.680367661,2.175607357,0.008770667,0.234615333,0.88153922,0,0,0.06537203,1.055054,0.01144,100.3441487,0,4167.776089,119.720452,346.2868852,1.14433605,0.019952912,0.008608148,23.74014595,17.50911067,9.290138,0.274429651,0,3.659759532,0,0.030671675,5.27444788,62.20007955,61.22748716,12.22040114,12.86447234,0.854949333,3884.255432,0.007626667,0.051098667,0.007722 +2108,0,0,1.56060425,0.664545157,2.168261685,0.008709333,0.232974667,0.875374611,0,0,0.064914883,1.047676,0.01136,99.64244133,0,4138.630801,119.3668961,345.2884505,1.1363337,0.019813381,0.008547951,23.57413095,17.38666933,9.225172,0.272510562,0,3.634166808,0,0.030457188,5.268073482,62.09875667,61.07354871,12.17294207,12.83258822,0.848970667,3861.796354,0.007573333,0.050741333,0.007668 +2109,0,0,1.56060425,0.648722653,2.160916013,0.008648,0.231334,0.869210001,0,0,0.064457735,1.040298,0.01128,98.940734,0,4109.485514,119.0133403,344.2900158,1.12833135,0.01967385,0.008487754,23.40811594,17.264228,9.160206,0.270591474,0,3.608574084,0,0.030242701,5.261699083,61.99743378,60.91961026,12.12548299,12.8007041,0.842992,3839.337277,0.00752,0.050384,0.007614 +2110,0,0,1.56060425,0.63290015,2.153570341,0.008586667,0.229693333,0.863045391,0,0,0.064000588,1.03292,0.0112,98.23902667,0,4080.340227,118.6597844,343.291581,1.120329,0.019534319,0.008427558,23.24210093,17.14178667,9.09524,0.268672385,0,3.58298136,0,0.030028214,5.255324685,61.89611089,60.76567182,12.07802391,12.76881999,0.837013333,3816.878199,0.007466667,0.050026667,0.00756 +2111,0,0,1.56060425,0.617077646,2.146224669,0.008525333,0.228052667,0.856880781,0,0,0.063543441,1.025542,0.01112,97.53731933,0,4051.194939,118.3062286,342.2931463,1.11232665,0.019394789,0.008367361,23.07608593,17.01934533,9.030274,0.266753297,0,3.557388636,0,0.029813726,5.248950286,61.794788,60.61173337,12.03056484,12.73693587,0.831034667,3794.419121,0.007413333,0.049669333,0.007506 +2112,0,0,1.56060425,0.601255142,2.138878997,0.008464,0.226412,0.850716171,0,0,0.063086294,1.018164,0.01104,96.835612,0,4022.049652,117.9526727,341.2947116,1.1043243,0.019255258,0.008307164,22.91007092,16.896904,8.965308,0.264834208,0,3.531795912,0,0.029599239,5.242575888,61.69346512,60.45779492,11.98310576,12.70505176,0.825056,3771.960043,0.00736,0.049312,0.007452 +2113,0,0,1.56060425,0.585432638,2.131533325,0.008402667,0.224771333,0.844551561,0,0,0.062629147,1.010786,0.01096,96.13390467,0,3992.904365,117.5991169,340.2962768,1.09632195,0.019115727,0.008246967,22.74405591,16.77446267,8.900342,0.26291512,0,3.506203188,0,0.029384752,5.23620149,61.59214223,60.30385647,11.93564668,12.67316764,0.819077333,3749.500965,0.007306667,0.048954667,0.007398 +2114,0,0,1.56060425,0.569610135,2.124187653,0.008341333,0.223130667,0.838386951,0,0,0.062172,1.003408,0.01088,95.43219733,0,3963.759077,117.2455611,339.2978421,1.0883196,0.018976196,0.00818677,22.57804091,16.65202133,8.835376,0.260996031,0,3.480610464,0,0.029170265,5.229827091,61.49081934,60.14991802,11.88818761,12.64128353,0.813098667,3727.041887,0.007253333,0.048597333,0.007344 +2115,0,0,1.56060425,0.553787631,2.116841981,0.00828,0.22149,0.832222341,0,0,0.061714853,0.99603,0.0108,94.73049,0,3934.61379,116.8920052,338.2994073,1.08031725,0.018836665,0.008126573,22.4120259,16.52958,8.77041,0.259076943,0,3.45501774,0,0.028955777,5.223452693,61.38949646,59.99597958,11.84072853,12.60939941,0.80712,3704.582809,0.0072,0.04824,0.00729 +2116,0,0,1.56060425,0.537965127,2.109496309,0.008218667,0.219849333,0.826057731,0,0,0.061257706,0.988652,0.01072,94.02878267,0,3905.468503,116.5384494,337.3009726,1.0723149,0.018697134,0.008066377,22.24601089,16.40713867,8.705444,0.257157855,0,3.429425016,0,0.02874129,5.217078294,61.28817357,59.84204113,11.79326945,12.57751529,0.801141333,3682.123731,0.007146667,0.047882667,0.007236 +2117,0,0,1.56060425,0.522142623,2.102150637,0.008157333,0.218208667,0.819893121,0,0,0.060800559,0.981274,0.01064,93.32707533,0,3876.323215,116.1848935,336.3025379,1.06431255,0.018557603,0.00800618,22.07999589,16.28469733,8.640478,0.255238766,0,3.403832292,0,0.028526803,5.210703896,61.18685068,59.68810268,11.74581038,12.54563118,0.795162667,3659.664653,0.007093333,0.047525333,0.007182 +2118,0,0,1.56060425,0.50632012,2.094804965,0.008096,0.216568,0.813728511,0,0,0.060343412,0.973896,0.01056,92.625368,0,3847.177928,115.8313377,335.3041031,1.0563102,0.018418073,0.007945983,21.91398088,16.162256,8.575512,0.253319678,0,3.378239568,0,0.028312316,5.204329497,61.08552779,59.53416423,11.6983513,12.51374706,0.789184,3637.205576,0.00704,0.047168,0.007128 +2119,0,0,1.56060425,0.490497616,2.087459293,0.008034667,0.214927333,0.807563901,0,0,0.059886265,0.966518,0.01048,91.92366067,0,3818.032641,115.4777818,334.3056684,1.04830785,0.018278542,0.007885786,21.74796587,16.03981467,8.510546,0.251400589,0,3.352646844,0,0.028097828,5.197955099,60.98420491,59.38022578,11.65089222,12.48186295,0.783205333,3614.746498,0.006986667,0.046810667,0.007074 +2120,0,0,1.56060425,0.474675112,2.080113621,0.007973333,0.213286667,0.801399291,0,0,0.059429118,0.95914,0.0104,91.22195333,0,3788.887353,115.124226,333.3072337,1.0403055,0.018139011,0.007825589,21.58195087,15.91737333,8.44558,0.249481501,0,3.32705412,0,0.027883341,5.1915807,60.88288202,59.22628734,11.60343315,12.44997883,0.777226667,3592.28742,0.006933333,0.046453333,0.00702 +2121,0,0,1.56060425,0.458852608,2.072767949,0.007912,0.211646,0.795234681,0,0,0.058971971,0.951762,0.01032,90.520246,0,3759.742066,114.7706701,332.3087989,1.03230315,0.01799948,0.007765392,21.41593586,15.794932,8.380614,0.247562412,0,3.301461396,0,0.027668854,5.185206302,60.78155913,59.07234889,11.55597407,12.41809471,0.771248,3569.828342,0.00688,0.046096,0.006966 +2122,0,0,1.56060425,0.443030105,2.065422277,0.007850667,0.210005333,0.789070071,0,0,0.058514824,0.944384,0.01024,89.81853867,0,3730.596779,114.4171143,331.3103642,1.0243008,0.017859949,0.007705196,21.24992085,15.67249067,8.315648,0.245643324,0,3.275868672,0,0.027454367,5.178831904,60.68023625,58.91841044,11.50851499,12.3862106,0.765269333,3547.369264,0.006826667,0.045738667,0.006912 +2123,0,0,1.56060425,0.427207601,2.058076605,0.007789333,0.208364667,0.782905462,0,0,0.058057677,0.937006,0.01016,89.11683133,0,3701.451491,114.0635584,330.3119295,1.01629845,0.017720418,0.007644999,21.08390585,15.55004933,8.250682,0.243724235,0,3.250275948,0,0.027239879,5.172457505,60.57891336,58.76447199,11.46105592,12.35432648,0.759290667,3524.910186,0.006773333,0.045381333,0.006858 +2124,0,0,1.56060425,0.411385097,2.050730932,0.007728,0.206724,0.776740852,0,0,0.05760053,0.929628,0.01008,88.415124,0,3672.306204,113.7100026,329.3134947,1.0082961,0.017580888,0.007584802,20.91789084,15.427608,8.185716,0.241805147,0,3.224683224,0,0.027025392,5.166083107,60.47759047,58.61053354,11.41359684,12.32244237,0.753312,3502.451108,0.00672,0.045024,0.006804 +2125,0,0,1.56060425,0.395562593,2.04338526,0.007666667,0.205083333,0.770576242,0,0,0.057143383,0.92225,0.01,87.71341667,0,3643.160917,113.3564467,328.31506,1.00029375,0.017441357,0.007524605,20.75187583,15.30516667,8.12075,0.239886058,0,3.1990905,0,0.026810905,5.159708708,60.37626758,58.4565951,11.36613777,12.29055825,0.747333333,3479.99203,0.006666667,0.044666667,0.00675 +2126,0,0,1.56060425,0.37974009,2.036039588,0.007605333,0.203442667,0.764411632,0,0,0.056686235,0.914872,0.00992,87.01170933,0,3614.015629,113.0028909,327.3166252,0.9922914,0.017301826,0.007464408,20.58586083,15.18272533,8.055784,0.23796697,0,3.173497776,0,0.026596418,5.15333431,60.2749447,58.30265665,11.31867869,12.25867414,0.741354667,3457.532952,0.006613333,0.044309333,0.006696 +2127,0,0,1.56060425,0.363917586,2.028693916,0.007544,0.201802,0.758247022,0,0,0.056229088,0.907494,0.00984,86.310002,0,3584.870342,112.6493351,326.3181905,0.98428905,0.017162295,0.007404211,20.41984582,15.060284,7.990818,0.236047881,0,3.147905052,0,0.026381931,5.146959911,60.17362181,58.1487182,11.27121961,12.22679002,0.735376,3435.073875,0.00656,0.043952,0.006642 +2128,0,0,1.56060425,0.348095082,2.021348244,0.007482667,0.200161333,0.752082412,0,0,0.055771941,0.900116,0.00976,85.60829467,0,3555.725055,112.2957792,325.3197558,0.9762867,0.017022764,0.007344014,20.25383081,14.93784267,7.925852,0.234128793,0,3.122312328,0,0.026167443,5.140585513,60.07229892,57.99477975,11.22376054,12.1949059,0.729397333,3412.614797,0.006506667,0.043594667,0.006588 +2129,0,0,1.56060425,0.332272579,2.014002572,0.007421333,0.198520667,0.745917802,0,0,0.055314794,0.892738,0.00968,84.90658733,0,3526.579767,111.9422234,324.321321,0.96828435,0.016883233,0.007283818,20.08781581,14.81540133,7.860886,0.232209704,0,3.096719604,0,0.025952956,5.134211114,59.97097604,57.8408413,11.17630146,12.16302179,0.723418667,3390.155719,0.006453333,0.043237333,0.006534 +2130,0,0,1.56060425,0.316450075,2.0066569,0.00736,0.19688,0.739753192,0,0,0.054857647,0.88536,0.0096,84.20488,0,3497.43448,111.5886675,323.3228863,0.960282,0.016743702,0.007223621,19.9218008,14.69296,7.79592,0.230290616,0,3.07112688,0,0.025738469,5.127836716,59.86965315,57.68690285,11.12884238,12.13113767,0.71744,3367.696641,0.0064,0.04288,0.00648 +2131,0,0,1.56060425,0.300627571,1.999311228,0.007298667,0.195239333,0.733588582,0,0,0.0544005,0.877982,0.00952,83.50317267,0,3468.289193,111.2351117,322.3244516,0.95227965,0.016604172,0.007163424,19.75578579,14.57051867,7.730954,0.228371528,0,3.045534156,0,0.025523982,5.121462318,59.76833026,57.53296441,11.08138331,12.09925356,0.711461333,3345.237563,0.006346667,0.042522667,0.006426 +2132,0,0,1.56060425,0.284805067,1.991965556,0.007237333,0.193598667,0.727423972,0,0,0.053943353,0.870604,0.00944,82.80146533,0,3439.143905,110.8815558,321.3260168,0.9442773,0.016464641,0.007103227,19.58977079,14.44807733,7.665988,0.226452439,0,3.019941432,0,0.025309494,5.115087919,59.66700737,57.37902596,11.03392423,12.06736944,0.705482667,3322.778485,0.006293333,0.042165333,0.006372 +2133,0,0,1.56060425,0.268982564,1.984619884,0.007176,0.191958,0.721259362,0,0,0.053486206,0.863226,0.00936,82.099758,0,3409.998618,110.528,320.3275821,0.93627495,0.01632511,0.00704303,19.42375578,14.325636,7.601022,0.224533351,0,2.994348708,0,0.025095007,5.108713521,59.56568449,57.22508751,10.98646515,12.03548533,0.699504,3300.319407,0.00624,0.041808,0.006318 +2134,0,0,1.56060425,0.25316006,1.977274212,0.007114667,0.190317333,0.715094752,0,0,0.053029059,0.855848,0.00928,81.39805067,0,3380.853331,110.1744441,319.3291474,0.9282726,0.016185579,0.006982833,19.25774077,14.20319467,7.536056,0.222614262,0,2.968755984,0,0.02488052,5.102339122,59.4643616,57.07114906,10.93900608,12.00360121,0.693525333,3277.860329,0.006186667,0.041450667,0.006264 +2135,0,0,1.56060425,0.237337556,1.96992854,0.007053333,0.188676667,0.708930142,0,0,0.052571912,0.84847,0.0092,80.69634333,0,3351.708043,109.8208883,318.3307126,0.92027025,0.016046048,0.006922637,19.09172577,14.08075333,7.47109,0.220695174,0,2.94316326,0,0.024666033,5.095964724,59.36303871,56.91721061,10.891547,11.97171709,0.687546667,3255.401252,0.006133333,0.041093333,0.00621 +2136,0,0,1.56060425,0.221515052,1.962582868,0.006992,0.187036,0.702765532,0,0,0.052114765,0.841092,0.00912,79.994636,0,3322.562756,109.4673324,317.3322779,0.9122679,0.015906517,0.00686244,18.92571076,13.958312,7.406124,0.218776085,0,2.917570536,0,0.024451545,5.089590325,59.26171583,56.76327217,10.84408792,11.93983298,0.681568,3232.942174,0.00608,0.040736,0.006156 +2137,0,0,1.56060425,0.205692549,1.955237196,0.006930667,0.185395333,0.696600922,0,0,0.051657618,0.833714,0.00904,79.29292867,0,3293.417469,109.1137766,316.3338431,0.90426555,0.015766986,0.006802243,18.75969575,13.83587067,7.341158,0.216856997,0,2.891977812,0,0.024237058,5.083215927,59.16039294,56.60933372,10.79662885,11.90794886,0.675589333,3210.483096,0.006026667,0.040378667,0.006102 +2138,0,0,1.56060425,0.189870045,1.947891524,0.006869333,0.183754667,0.690436313,0,0,0.051200471,0.826336,0.00896,78.59122133,0,3264.272181,108.7602207,315.3354084,0.8962632,0.015627456,0.006742046,18.59368075,13.71342933,7.276192,0.214937908,0,2.866385088,0,0.024022571,5.076841528,59.05907005,56.45539527,10.74916977,11.87606475,0.669610667,3188.024018,0.005973333,0.040021333,0.006048 +2139,0,0,1.56060425,0.174047541,1.940545852,0.006808,0.182114,0.684271703,0,0,0.050743324,0.818958,0.00888,77.889514,0,3235.126894,108.4066649,314.3369737,0.88826085,0.015487925,0.006681849,18.42766574,13.590988,7.211226,0.21301882,0,2.840792364,0,0.023808084,5.07046713,58.95774716,56.30145682,10.70171069,11.84418063,0.663632,3165.56494,0.00592,0.039664,0.005994 +2140,0,0,1.56060425,0.158225037,1.93320018,0.006746667,0.180473333,0.678107093,0,0,0.050286177,0.81158,0.0088,77.18780667,0,3205.981607,108.0531091,313.3385389,0.8802585,0.015348394,0.006621652,18.26165073,13.46854667,7.14626,0.211099731,0,2.81519964,0,0.023593596,5.064092731,58.85642428,56.14751837,10.65425162,11.81229651,0.657653333,3143.105862,0.005866667,0.039306667,0.00594 +2141,0,0,1.529392165,0.142402534,1.925854508,0.006685333,0.178832667,0.671942483,0,0,0.04982903,0.804202,0.00872,76.48609933,0,3176.836319,107.6995532,312.3401042,0.87225615,0.015208863,0.006561456,18.09563573,13.34610533,7.081294,0.209180643,0,2.789606916,0,0.023379109,5.057718333,58.75510139,55.99357993,10.60679254,11.7804124,0.651674667,3120.646784,0.005813333,0.038949333,0.005886 +2142,0,0,1.49818008,0.12658003,1.918508835,0.006624,0.177192,0.665777873,0,0,0.049371882,0.796824,0.00864,75.784392,0,3147.691032,107.3459974,311.3416695,0.8642538,0.015069332,0.006501259,17.92962072,13.223664,7.016328,0.207261554,0,2.764014192,0,0.023164622,5.051343935,58.6537785,55.83964148,10.55933347,11.74852828,0.645696,3098.187706,0.00576,0.038592,0.005832 +2143,0,0,1.466967995,0.110757526,1.911163163,0.006562667,0.175551333,0.659613263,0,0,0.048914735,0.789446,0.00856,75.08268467,0,3118.545745,106.9924415,310.3432347,0.85625145,0.014929801,0.006441062,17.76360571,13.10122267,6.951362,0.205342466,0,2.738421468,0,0.022950135,5.044969536,58.55245562,55.68570303,10.51187439,11.71664417,0.639717333,3075.728628,0.005706667,0.038234667,0.005778 +2144,0,0,1.43575591,0.094935022,1.903817491,0.006501333,0.173910667,0.653448653,0,0,0.048457588,0.782068,0.00848,74.38097733,0,3089.400457,106.6388857,309.3448,0.8482491,0.01479027,0.006380865,17.59759071,12.97878133,6.886396,0.203423377,0,2.712828744,0,0.022735647,5.038595138,58.45113273,55.53176458,10.46441531,11.68476005,0.633738667,3053.269551,0.005653333,0.037877333,0.005724 +2145,0,0,1.404543825,0.079112519,1.896471819,0.00644,0.17227,0.647284043,0,0,0.048000441,0.77469,0.0084,73.67927,0,3060.25517,106.2853298,308.3463653,0.84024675,0.01465074,0.006320668,17.4315757,12.85634,6.82143,0.201504289,0,2.68723602,0,0.02252116,5.032220739,58.34980984,55.37782613,10.41695624,11.65287594,0.62776,3030.810473,0.0056,0.03752,0.00567 +2146,0,0,1.37333174,0.063290015,1.889126147,0.006378667,0.170629333,0.641119433,0,0,0.047543294,0.767312,0.00832,72.97756267,0,3031.109883,105.931774,307.3479305,0.8322444,0.014511209,0.006260471,17.26556069,12.73389867,6.756464,0.199585201,0,2.661643296,0,0.022306673,5.025846341,58.24848695,55.22388769,10.36949716,11.62099182,0.621781333,3008.351395,0.005546667,0.037162667,0.005616 +2147,0,0,1.342119655,0.047467511,1.881780475,0.006317333,0.168988667,0.634954823,0,0,0.047086147,0.759934,0.00824,72.27585533,0,3001.964595,105.5782181,306.3494958,0.82424205,0.014371678,0.006200275,17.09954569,12.61145733,6.691498,0.197666112,0,2.636050572,0,0.022092186,5.019471942,58.14716407,55.06994924,10.32203808,11.5891077,0.615802667,2985.892317,0.005493333,0.036805333,0.005562 +2148,0,0,1.31090757,0.031645007,1.874434803,0.006256,0.167348,0.628790213,0,0,0.046629,0.752556,0.00816,71.574148,0,2972.819308,105.2246623,305.351061,0.8162397,0.014232147,0.006140078,16.93353068,12.489016,6.626532,0.195747024,0,2.610457848,0,0.021877698,5.013097544,58.04584118,54.91601079,10.27457901,11.55722359,0.609824,2963.433239,0.00544,0.036448,0.005508 +2149,0,0,1.279695485,0.015822504,1.867089131,0.006194667,0.165707333,0.622625603,0,0,0.046171853,0.745178,0.00808,70.87244067,0,2943.674021,104.8711064,304.3526263,0.80823735,0.014092616,0.006079881,16.76751567,12.36657467,6.561566,0.193827935,0,2.584865124,0,0.021663211,5.006723145,57.94451829,54.76207234,10.22711993,11.52533947,0.603845333,2940.974161,0.005386667,0.036090667,0.005454 +2150,0,0,1.2484834,0,1.859743459,0.006133333,0.164066667,0.616460993,0,0,0.045714706,0.7378,0.008,70.17073333,0,2914.528733,104.5175506,303.3541916,0.800235,0.013953085,0.006019684,16.60150067,12.24413333,6.4966,0.191908847,0,2.5592724,0,0.021448724,5.000348747,57.84319541,54.60813389,10.17966085,11.49345536,0.597866667,2918.515083,0.005333333,0.035733333,0.0054 +2151,0,0,1.217271315,0,1.852397787,0.006072,0.162426,0.610296383,0,0,0.045257559,0.730422,0.00792,69.469026,0,2885.383446,104.1639947,302.3557568,0.79223265,0.013813554,0.005959487,16.43548566,12.121692,6.431634,0.189989758,0,2.533679676,0,0.021234237,4.993974349,57.74187252,54.45419544,10.13220178,11.46157124,0.591888,2896.056005,0.00528,0.035376,0.005346 +2152,0,0,1.18605923,0,1.845052115,0.006010667,0.160785333,0.604131773,0,0,0.044800412,0.723044,0.00784,68.76731867,0,2856.238159,103.8104389,301.3573221,0.7842303,0.013674024,0.00589929,16.26947065,11.99925067,6.366668,0.18807067,0,2.508086952,0,0.02101975,4.98759995,57.64054963,54.300257,10.0847427,11.42968713,0.585909333,2873.596927,0.005226667,0.035018667,0.005292 +2153,0,0,1.154847145,0,1.837706443,0.005949333,0.159144667,0.597967164,0,0,0.044343265,0.715666,0.00776,68.06561133,0,2827.092871,103.456883,300.3588874,0.77622795,0.013534493,0.005839093,16.10345565,11.87680933,6.301702,0.186151581,0,2.482494228,0,0.020805262,4.981225552,57.53922674,54.14631855,10.03728362,11.39780301,0.579930667,2851.13785,0.005173333,0.034661333,0.005238 +2154,0,0,1.12363506,0,1.830360771,0.005888,0.157504,0.591802554,0,0,0.043886118,0.708288,0.00768,67.363904,0,2797.947584,103.1033272,299.3604526,0.7682256,0.013394962,0.005778897,15.93744064,11.754368,6.236736,0.184232493,0,2.456901504,0,0.020590775,4.974851153,57.43790386,53.9923801,9.989824548,11.36591889,0.573952,2828.678772,0.00512,0.034304,0.005184 +2155,0,0,1.092422975,0,1.823015099,0.005826667,0.155863333,0.585637944,0,0,0.043428971,0.70091,0.0076,66.66219667,0,2768.802297,102.7497714,298.3620179,0.76022325,0.013255431,0.0057187,15.77142563,11.63192667,6.17177,0.182313404,0,2.43130878,0,0.020376288,4.968476755,57.33658097,53.83844165,9.942365471,11.33403478,0.567973333,2806.219694,0.005066667,0.033946667,0.00513 +2156,0,0,1.06121089,0,1.815669427,0.005765333,0.154222667,0.579473334,0,0,0.042971824,0.693532,0.00752,65.96048933,0,2739.657009,102.3962155,297.3635832,0.7522209,0.0131159,0.005658503,15.60541063,11.50948533,6.106804,0.180394316,0,2.405716056,0,0.020161801,4.962102356,57.23525808,53.6845032,9.894906395,11.30215066,0.561994667,2783.760616,0.005013333,0.033589333,0.005076 +2157,0,0,1.029998805,0,1.808323755,0.005704,0.152582,0.573308724,0,0,0.042514677,0.686154,0.00744,65.258782,0,2710.511722,102.0426597,296.3651484,0.74421855,0.012976369,0.005598306,15.43939562,11.387044,6.041838,0.178475227,0,2.380123332,0,0.019947313,4.955727958,57.1339352,53.53056476,9.847447318,11.27026655,0.556016,2761.301538,0.00496,0.033232,0.005022 +2158,0,0,0.99878672,0,1.800978083,0.005642667,0.150941333,0.567144114,0,0,0.04205753,0.678776,0.00736,64.55707467,0,2681.366435,101.6891038,295.3667137,0.7362162,0.012836839,0.005538109,15.27338061,11.26460267,5.976872,0.176556139,0,2.354530608,0,0.019732826,4.949353559,57.03261231,53.37662631,9.799988242,11.23838243,0.550037333,2738.84246,0.004906667,0.032874667,0.004968 +2159,0,0,0.967574635,0,1.79363241,0.005581333,0.149300667,0.560979504,0,0,0.041600382,0.671398,0.00728,63.85536733,0,2652.221147,101.335548,294.3682789,0.72821385,0.012697308,0.005477912,15.10736561,11.14216133,5.911906,0.17463705,0,2.328937884,0,0.019518339,4.942979161,56.93128942,53.22268786,9.752529165,11.20649831,0.544058667,2716.383382,0.004853333,0.032517333,0.004914 +2160,0,0,0.93636255,0,1.786286738,0.00552,0.14766,0.554814894,0,0,0.041143235,0.66402,0.0072,63.15366,0,2623.07586,100.9819921,293.3698442,0.7202115,0.012557777,0.005417716,14.9413506,11.01972,5.84694,0.172717962,0,2.30334516,0,0.019303852,4.936604763,56.82996653,53.06874941,9.705070089,11.1746142,0.53808,2693.924304,0.0048,0.03216,0.00486 +2161,0,0,0.905150465,0,1.778941066,0.005458667,0.146019333,0.548650284,0,0,0.040686088,0.656642,0.00712,62.45195267,0,2593.930573,100.6284363,292.3714095,0.71220915,0.012418246,0.005357519,14.77533559,10.89727867,5.781974,0.170798874,0,2.277752436,0,0.019089364,4.930230364,56.72864365,52.91481096,9.657611012,11.14273008,0.532101333,2671.465227,0.004746667,0.031802667,0.004806 +2162,0,0,0.87393838,0,1.771595394,0.005397333,0.144378667,0.542485674,0,0,0.040228941,0.649264,0.00704,61.75024533,0,2564.785285,100.2748804,291.3729747,0.7042068,0.012278715,0.005297322,14.60932059,10.77483733,5.717008,0.168879785,0,2.252159712,0,0.018874877,4.923855966,56.62732076,52.76087252,9.610151936,11.11084597,0.526122667,2649.006149,0.004693333,0.031445333,0.004752 +2163,0,0,0.842726295,0,1.764249722,0.005336,0.142738,0.536321064,0,0,0.039771794,0.641886,0.00696,61.048538,0,2535.639998,99.92132459,290.37454,0.69620445,0.012139184,0.005237125,14.44330558,10.652396,5.652042,0.166960697,0,2.226566988,0,0.01866039,4.917481567,56.52599787,52.60693407,9.562692859,11.07896185,0.520144,2626.547071,0.00464,0.031088,0.004698 +2164,0,0,0.81151421,0,1.75690405,0.005274667,0.141097333,0.530156454,0,0,0.039314647,0.634508,0.00688,60.34683067,0,2506.494711,99.56776874,289.3761053,0.6882021,0.011999653,0.005176928,14.27729057,10.52995467,5.587076,0.165041608,0,2.200974264,0,0.018445903,4.911107169,56.42467499,52.45299562,9.515233783,11.04707774,0.514165333,2604.087993,0.004586667,0.030730667,0.004644 +2165,0,0,0.780302125,0,1.749558378,0.005213333,0.139456667,0.523991844,0,0,0.0388575,0.62713,0.0068,59.64512333,0,2477.349423,99.21421289,288.3776705,0.68019975,0.011860123,0.005116731,14.11127557,10.40751333,5.52211,0.16312252,0,2.17538154,0,0.018231415,4.90473277,56.3233521,52.29905717,9.467774706,11.01519362,0.508186667,2581.628915,0.004533333,0.030373333,0.00459 +2166,0,0,0.74909004,0,1.742212706,0.005152,0.137816,0.517827234,0,0,0.038400353,0.619752,0.00672,58.943416,0,2448.204136,98.86065705,287.3792358,0.6721974,0.011720592,0.005056535,13.94526056,10.285072,5.457144,0.161203431,0,2.149788816,0,0.018016928,4.898358372,56.22202921,52.14511872,9.42031563,10.9833095,0.502208,2559.169837,0.00448,0.030016,0.004536 +2167,0,0,0.717877955,0,1.734867034,0.005090667,0.136175333,0.511662624,0,0,0.037943206,0.612374,0.00664,58.24170867,0,2419.058849,98.5071012,286.3808011,0.66419505,0.011581061,0.004996338,13.77924555,10.16263067,5.392178,0.159284343,0,2.124196092,0,0.017802441,4.891983973,56.12070632,51.99118028,9.372856553,10.95142539,0.496229333,2536.710759,0.004426667,0.029658667,0.004482 +2168,0,0,0.68666587,0,1.727521362,0.005029333,0.134534667,0.505498015,0,0,0.037486059,0.604996,0.00656,57.54000133,0,2389.913561,98.15354535,285.3823663,0.6561927,0.01144153,0.004936141,13.61323055,10.04018933,5.327212,0.157365254,0,2.098603368,0,0.017587954,4.885609575,56.01938344,51.83724183,9.325397477,10.91954127,0.490250667,2514.251681,0.004373333,0.029301333,0.004428 +2169,0,0,0.655453785,0,1.72017569,0.004968,0.132894,0.499333405,0,0,0.037028912,0.597618,0.00648,56.838294,0,2360.768274,97.79998951,284.3839316,0.64819035,0.011301999,0.004875944,13.44721554,9.917748,5.262246,0.155446166,0,2.073010644,0,0.017373466,4.879235176,55.91806055,51.68330338,9.277938401,10.88765716,0.484272,2491.792603,0.00432,0.028944,0.004374 +2170,0,0,0.6242417,0,1.712830018,0.004906667,0.131253333,0.493168795,0,0,0.036571765,0.59024,0.0064,56.13658667,0,2331.622987,97.44643366,283.3854968,0.640188,0.011162468,0.004815747,13.28120053,9.795306667,5.19728,0.153527077,0,2.04741792,0,0.017158979,4.872860778,55.81673766,51.52936493,9.230479324,10.85577304,0.478293333,2469.333526,0.004266667,0.028586667,0.00432 +2171,0,0,0.593029615,0,1.705484346,0.004845333,0.129612667,0.487004185,0,0,0.036114618,0.582862,0.00632,55.43487933,0,2302.477699,97.09287782,282.3870621,0.63218565,0.011022937,0.00475555,13.11518553,9.672865333,5.132314,0.151607989,0,2.021825196,0,0.016944492,4.86648638,55.71541478,51.37542648,9.183020248,10.82388893,0.472314667,2446.874448,0.004213333,0.028229333,0.004266 +2172,0,0,0.56181753,0,1.698138674,0.004784,0.127972,0.480839575,0,0,0.035657471,0.575484,0.00624,54.733172,0,2273.332412,96.73932197,281.3886274,0.6241833,0.010883407,0.004695354,12.94917052,9.550424,5.067348,0.1496889,0,1.996232472,0,0.016730005,4.860111981,55.61409189,51.22148803,9.135561171,10.79200481,0.466336,2424.41537,0.00416,0.027872,0.004212 +2173,0,0,0.530605445,0,1.690793002,0.004722667,0.126331333,0.474674965,0,0,0.035200324,0.568106,0.00616,54.03146467,0,2244.187125,96.38576612,280.3901926,0.61618095,0.010743876,0.004635157,12.78315551,9.427982667,5.002382,0.147769812,0,1.970639748,0,0.016515517,4.853737583,55.512769,51.06754959,9.088102095,10.76012069,0.460357333,2401.956292,0.004106667,0.027514667,0.004158 +2174,0,0,0.49939336,0,1.68344733,0.004661333,0.124690667,0.468510355,0,0,0.034743177,0.560728,0.00608,53.32975733,0,2215.041837,96.03221028,279.3917579,0.6081786,0.010604345,0.00457496,12.61714051,9.305541333,4.937416,0.145850723,0,1.945047024,0,0.01630103,4.847363184,55.41144611,50.91361114,9.040643018,10.72823658,0.454378667,2379.497214,0.004053333,0.027157333,0.004104 +2175,0,0,0.468181275,0,1.676101658,0.0046,0.12305,0.462345745,0,0,0.03428603,0.55335,0.006,52.62805,0,2185.89655,95.67865443,278.3933232,0.60017625,0.010464814,0.004514763,12.4511255,9.1831,4.87245,0.143931635,0,1.9194543,0,0.016086543,4.840988786,55.31012323,50.75967269,8.993183942,10.69635246,0.4484,2357.038136,0.004,0.0268,0.00405 +2176,0,0,0.43696919,0,1.668755986,0.004538667,0.121409333,0.456181135,0,0,0.033828882,0.545972,0.00592,51.92634267,0,2156.751263,95.32509858,277.3948884,0.5921739,0.010325283,0.004454566,12.28511049,9.060658667,4.807484,0.142012547,0,1.893861576,0,0.015872056,4.834614387,55.20880034,50.60573424,8.945724865,10.66446835,0.442421333,2334.579058,0.003946667,0.026442667,0.003996 +2177,0,0,0.405757105,0,1.661410313,0.004477333,0.119768667,0.450016525,0,0,0.033371735,0.538594,0.00584,51.22463533,0,2127.605975,94.97154274,276.3964537,0.58417155,0.010185752,0.004394369,12.11909549,8.938217333,4.742518,0.140093458,0,1.868268852,0,0.015657569,4.828239989,55.10747745,50.45179579,8.898265789,10.63258423,0.436442667,2312.11998,0.003893333,0.026085333,0.003942 +2178,0,0,0.37454502,0,1.654064641,0.004416,0.118128,0.443851915,0,0,0.032914588,0.531216,0.00576,50.522928,0,2098.460688,94.61798689,275.398019,0.5761692,0.010046221,0.004334172,11.95308048,8.815776,4.677552,0.13817437,0,1.842676128,0,0.015443081,4.82186559,55.00615457,50.29785735,8.850806712,10.60070011,0.430464,2289.660902,0.00384,0.025728,0.003888 +2179,0,0,0.343332935,0,1.646718969,0.004354667,0.116487333,0.437687305,0,0,0.032457441,0.523838,0.00568,49.82122067,0,2069.315401,94.26443105,274.3995842,0.56816685,0.009906691,0.004273976,11.78706547,8.693334667,4.612586,0.136255281,0,1.817083404,0,0.015228594,4.815491192,54.90483168,50.1439189,8.803347636,10.568816,0.424485333,2267.201825,0.003786667,0.025370667,0.003834 +2180,0,0,0.31212085,0,1.639373297,0.004293333,0.114846667,0.431522695,0,0,0.032000294,0.51646,0.0056,49.11951333,0,2040.170113,93.9108752,273.4011495,0.5601645,0.00976716,0.004213779,11.62105047,8.570893333,4.54762,0.134336193,0,1.79149068,0,0.015014107,4.809116794,54.80350879,49.98998045,8.755888559,10.53693188,0.418506667,2244.742747,0.003733333,0.025013333,0.00378 +2181,0,0,0.280908765,0,1.632027625,0.004232,0.113206,0.425358085,0,0,0.031543147,0.509082,0.00552,48.417806,0,2011.024826,93.55731935,272.4027147,0.55216215,0.009627629,0.004153582,11.45503546,8.448452,4.482654,0.132417104,0,1.765897956,0,0.01479962,4.802742395,54.7021859,49.836042,8.708429483,10.50504777,0.412528,2222.283669,0.00368,0.024656,0.003726 +2182,0,0,0.24969668,0,1.624681953,0.004170667,0.111565333,0.419193475,0,0,0.031086,0.501704,0.00544,47.71609867,0,1981.879539,93.20376351,271.40428,0.5441598,0.009488098,0.004093385,11.28902045,8.326010667,4.417688,0.130498016,0,1.740305232,0,0.014585132,4.796367997,54.60086302,49.68210355,8.660970406,10.47316365,0.406549333,2199.824591,0.003626667,0.024298667,0.003672 +2183,0,0,0.218484595,0,1.617336281,0.004109333,0.109924667,0.413028866,0,0,0.030628853,0.494326,0.00536,47.01439133,0,1952.734251,92.85020766,270.4058453,0.53615745,0.009348567,0.004033188,11.12300545,8.203569333,4.352722,0.128578927,0,1.714712508,0,0.014370645,4.789993598,54.49954013,49.52816511,8.61351133,10.44127954,0.400570667,2177.365513,0.003573333,0.023941333,0.003618 +2184,0,0,0.18727251,0,1.609990609,0.004048,0.108284,0.406864256,0,0,0.030171706,0.486948,0.00528,46.312684,0,1923.588964,92.49665181,269.4074105,0.5281551,0.009209036,0.003972991,10.95699044,8.081128,4.287756,0.126659839,0,1.689119784,0,0.014156158,4.7836192,54.39821724,49.37422666,8.566052254,10.40939542,0.394592,2154.906435,0.00352,0.023584,0.003564 +2185,0,0,0.156060425,0,1.602644937,0.003986667,0.106643333,0.400699646,0,0,0.029714559,0.47957,0.0052,45.61097667,0,1894.443677,92.14309597,268.4089758,0.52015275,0.009069505,0.003912795,10.79097543,7.958686667,4.22279,0.12474075,0,1.66352706,0,0.013941671,4.777244801,54.29689436,49.22028821,8.518593177,10.3775113,0.388613333,2132.447357,0.003466667,0.023226667,0.00351 +2186,0,0,0.12484834,0,1.595299265,0.003925333,0.105002667,0.394535036,0,0,0.029257412,0.472192,0.00512,44.90926933,0,1865.298389,91.78954012,267.4105411,0.5121504,0.008929975,0.003852598,10.62496043,7.836245333,4.157824,0.122821662,0,1.637934336,0,0.013727183,4.770870403,54.19557147,49.06634976,8.471134101,10.34562719,0.382634667,2109.988279,0.003413333,0.022869333,0.003456 +2187,0,0,0.093636255,0,1.587953593,0.003864,0.103362,0.388370426,0,0,0.028800265,0.464814,0.00504,44.207562,0,1836.153102,91.43598427,266.4121063,0.50414805,0.008790444,0.003792401,10.45894542,7.713804,4.092858,0.120902573,0,1.612341612,0,0.013512696,4.764496004,54.09424858,48.91241131,8.423675024,10.31374307,0.376656,2087.529202,0.00336,0.022512,0.003402 +2188,0,0,0.06242417,0,1.580607921,0.003802667,0.101721333,0.382205816,0,0,0.028343118,0.457436,0.00496,43.50585467,0,1807.007815,91.08242843,265.4136716,0.4961457,0.008650913,0.003732204,10.29293041,7.591362667,4.027892,0.118983485,0,1.586748888,0,0.013298209,4.758121606,53.99292569,48.75847287,8.376215948,10.28185896,0.370677333,2065.070124,0.003306667,0.022154667,0.003348 +2189,0,0,0.031212085,0,1.573262249,0.003741333,0.100080667,0.376041206,0,0,0.027885971,0.450058,0.00488,42.80414733,0,1777.862527,90.72887258,264.4152369,0.48814335,0.008511382,0.003672007,10.12691541,7.468921333,3.962926,0.117064396,0,1.561156164,0,0.013083722,4.751747207,53.89160281,48.60453442,8.328756871,10.24997484,0.364698667,2042.611046,0.003253333,0.021797333,0.003294 +2190,0,0,0,0,1.565916577,0.00368,0.09844,0.369876596,0,0,0.027428824,0.44268,0.0048,42.10244,0,1748.71724,90.37531674,263.4168021,0.480141,0.008371851,0.00361181,9.9609004,7.34648,3.89796,0.115145308,0,1.53556344,0,0.012869234,4.745372809,53.79027992,48.45059597,8.281297795,10.21809073,0.35872,2020.151968,0.0032,0.02144,0.00324 +2191,0,0,0,0,1.558570905,0.003618667,0.096799333,0.363711986,0,0,0.026971677,0.435302,0.00472,41.40073267,0,1719.571953,90.02176089,262.4183674,0.47213865,0.00823232,0.003551614,9.794885393,7.224038667,3.832994,0.11322622,0,1.509970716,0,0.012654747,4.738998411,53.68895703,48.29665752,8.233838718,10.18620661,0.352741333,1997.69289,0.003146667,0.021082667,0.003186 +2192,0,0,0,0,1.551225233,0.003557333,0.095158667,0.357547376,0,0,0.026514529,0.427924,0.00464,40.69902533,0,1690.426665,89.66820504,261.4199326,0.4641363,0.008092789,0.003491417,9.628870387,7.101597333,3.768028,0.111307131,0,1.484377992,0,0.01244026,4.732624012,53.58763415,48.14271907,8.186379642,10.15432249,0.346762667,1975.233812,0.003093333,0.020725333,0.003132 +2193,0,0,0,0,1.543879561,0.003496,0.093518,0.351382766,0,0,0.026057382,0.420546,0.00456,39.997318,0,1661.281378,89.3146492,260.4214979,0.45613395,0.007953259,0.00343122,9.46285538,6.979156,3.703062,0.109388043,0,1.458785268,0,0.012225773,4.726249614,53.48631126,47.98878062,8.138920565,10.12243838,0.340784,1952.774734,0.00304,0.020368,0.003078 +2194,0,0,0,0,1.536533889,0.003434667,0.091877333,0.345218156,0,0,0.025600235,0.413168,0.00448,39.29561067,0,1632.136091,88.96109335,259.4230632,0.4481316,0.007813728,0.003371023,9.296840373,6.856714667,3.638096,0.107468954,0,1.433192544,0,0.012011285,4.719875215,53.38498837,47.83484218,8.091461489,10.09055426,0.334805333,1930.315656,0.002986667,0.020010667,0.003024 +2195,0,0,0,0,1.529188216,0.003373333,0.090236667,0.339053546,0,0,0.025143088,0.40579,0.0044,38.59390333,0,1602.990803,88.6075375,258.4246284,0.44012925,0.007674197,0.003310826,9.130825367,6.734273333,3.57313,0.105549866,0,1.40759982,0,0.011796798,4.713500817,53.28366548,47.68090373,8.044002412,10.05867015,0.328826667,1907.856578,0.002933333,0.019653333,0.00297 +2196,0,0,0,0,1.521842544,0.003312,0.088596,0.332888936,0,0,0.024685941,0.398412,0.00432,37.892196,0,1573.845516,88.25398166,257.4261937,0.4321269,0.007534666,0.003250629,8.96481036,6.611832,3.508164,0.103630777,0,1.382007096,0,0.011582311,4.707126418,53.1823426,47.52696528,7.996543336,10.02678603,0.322848,1885.397501,0.00288,0.019296,0.002916 +2197,0,0,0,0,1.514496872,0.003250667,0.086955333,0.326724326,0,0,0.024228794,0.391034,0.00424,37.19048867,0,1544.700229,87.90042581,256.427759,0.42412455,0.007395135,0.003190433,8.798795353,6.489390667,3.443198,0.101711689,0,1.356414372,0,0.011367824,4.70075202,53.08101971,47.37302683,7.949084259,9.994901915,0.316869333,1862.938423,0.002826667,0.018938667,0.002862 +2198,0,0,0,0,1.5071512,0.003189333,0.085314667,0.320559717,0,0,0.023771647,0.383656,0.00416,36.48878133,0,1515.554941,87.54686997,255.4293242,0.4161222,0.007255604,0.003130236,8.632780347,6.366949333,3.378232,0.0997926,0,1.330821648,0,0.011153336,4.694377621,52.97969682,47.21908838,7.901625183,9.963017799,0.310890667,1840.479345,0.002773333,0.018581333,0.002808 +2199,0,0,0,0,1.499805528,0.003128,0.083674,0.314395107,0,0,0.0233145,0.376278,0.00408,35.787074,0,1486.409654,87.19331412,254.4308895,0.40811985,0.007116074,0.003070039,8.46676534,6.244508,3.313266,0.097873512,0,1.305228924,0,0.010938849,4.688003223,52.87837394,47.06514994,7.854166106,9.931133683,0.304912,1818.020267,0.00272,0.018224,0.002754 +2200,0,0,0,0,1.492459856,0.003066667,0.082033333,0.308230497,0,0,0.022857353,0.3689,0.004,35.08536667,0,1457.264367,86.83975827,253.4324547,0.4001175,0.006976543,0.003009842,8.300750333,6.122066667,3.2483,0.095954423,0,1.2796362,0,0.010724362,4.681628825,52.77705105,46.91121149,7.80670703,9.899249567,0.298933333,1795.561189,0.002666667,0.017866667,0.0027 +2201,0,0,0,0,1.485114184,0.003005333,0.080392667,0.302065887,0,0,0.022400206,0.361522,0.00392,34.38365933,0,1428.119079,86.48620243,252.43402,0.39211515,0.006837012,0.002949645,8.134735327,5.999625333,3.183334,0.094035335,0,1.254043476,0,0.010509875,4.675254426,52.67572816,46.75727304,7.759247954,9.867365451,0.292954667,1773.102111,0.002613333,0.017509333,0.002646 +2202,0,0,0,0,1.477768512,0.002944,0.078752,0.295901277,0,0,0.021943059,0.354144,0.00384,33.681952,0,1398.973792,86.13264658,251.4355853,0.3841128,0.006697481,0.002889448,7.96872032,5.877184,3.118368,0.092116246,0,1.228450752,0,0.010295388,4.668880028,52.57440528,46.60333459,7.711788877,9.835481336,0.286976,1750.643033,0.00256,0.017152,0.002592 +2203,0,0,0,0,1.47042284,0.002882667,0.077111333,0.289736667,0,0,0.021485912,0.346766,0.00376,32.98024467,0,1369.828505,85.77909073,250.4371505,0.37611045,0.00655795,0.002829251,7.802705313,5.754742667,3.053402,0.090197158,0,1.202858028,0,0.0100809,4.662505629,52.47308239,46.44939614,7.664329801,9.80359722,0.280997333,1728.183955,0.002506667,0.016794667,0.002538 +2204,0,0,0,0,1.463077168,0.002821333,0.075470667,0.283572057,0,0,0.021028765,0.339388,0.00368,32.27853733,0,1340.683217,85.42553489,249.4387158,0.3681081,0.006418419,0.002769055,7.636690307,5.632301333,2.988436,0.088278069,0,1.177265304,0,0.009866413,4.656131231,52.3717595,46.2954577,7.616870724,9.771713104,0.275018667,1705.724877,0.002453333,0.016437333,0.002484 +2205,0,0,0,0,1.455731496,0.00276,0.07383,0.277407447,0,0,0.020571618,0.33201,0.0036,31.57683,0,1311.53793,85.07197904,248.4402811,0.36010575,0.006278888,0.002708858,7.4706753,5.50986,2.92347,0.086358981,0,1.15167258,0,0.009651926,4.649756832,52.27043661,46.14151925,7.569411648,9.739828988,0.26904,1683.2658,0.0024,0.01608,0.00243 +2206,0,0,0,0,1.448385824,0.002698667,0.072189333,0.271242837,0,0,0.020114471,0.324632,0.00352,30.87512267,0,1282.392643,84.71842319,247.4418463,0.3521034,0.006139358,0.002648661,7.304660293,5.387418667,2.858504,0.084439893,0,1.126079856,0,0.009437439,4.643382434,52.16911373,45.9875808,7.521952571,9.707944873,0.263061333,1660.806722,0.002346667,0.015722667,0.002376 +2207,0,0,0,0,1.441040152,0.002637333,0.070548667,0.265078227,0,0,0.019657324,0.317254,0.00344,30.17341533,0,1253.247355,84.36486735,246.4434116,0.34410105,0.005999827,0.002588464,7.138645287,5.264977333,2.793538,0.082520804,0,1.100487132,0,0.009222951,4.637008035,52.06779084,45.83364235,7.474493495,9.676060757,0.257082667,1638.347644,0.002293333,0.015365333,0.002322 +2208,0,0,0,0,1.43369448,0.002576,0.068908,0.258913617,0,0,0.019200177,0.309876,0.00336,29.471708,0,1224.102068,84.0113115,245.4449769,0.3360987,0.005860296,0.002528267,6.97263028,5.142536,2.728572,0.080601716,0,1.074894408,0,0.009008464,4.630633637,51.96646795,45.6797039,7.427034418,9.644176641,0.251104,1615.888566,0.00224,0.015008,0.002268 +2209,0,0,0,0,1.426348808,0.002514667,0.067267333,0.252749007,0,0,0.018743029,0.302498,0.00328,28.77000067,0,1194.956781,83.65775566,244.4465421,0.32809635,0.005720765,0.00246807,6.806615273,5.020094667,2.663606,0.078682627,0,1.049301684,0,0.008793977,4.624259239,51.86514507,45.52576546,7.379575342,9.612292525,0.245125333,1593.429488,0.002186667,0.014650667,0.002214 +2210,0,0,0,0,1.419003136,0.002453333,0.065626667,0.246584397,0,0,0.018285882,0.29512,0.0032,28.06829333,0,1165.811493,83.30419981,243.4481074,0.320094,0.005581234,0.002407874,6.640600267,4.897653333,2.59864,0.076763539,0,1.02370896,0,0.00857949,4.61788484,51.76382218,45.37182701,7.332116265,9.580408409,0.239146667,1570.97041,0.002133333,0.014293333,0.00216 +2211,0,0,0,0,1.411657464,0.002392,0.063986,0.240419787,0,0,0.017828735,0.287742,0.00312,27.366586,0,1136.666206,82.95064396,242.4496726,0.31209165,0.005441703,0.002347677,6.47458526,4.775212,2.533674,0.07484445,0,0.998116236,0,0.008365002,4.611510442,51.66249929,45.21788856,7.284657189,9.548524294,0.233168,1548.511332,0.00208,0.013936,0.002106 +2212,0,0,0,0,1.404311791,0.002330667,0.062345333,0.234255177,0,0,0.017371588,0.280364,0.00304,26.66487867,0,1107.520919,82.59708812,241.4512379,0.3040893,0.005302172,0.00228748,6.308570253,4.652770667,2.468708,0.072925362,0,0.972523512,0,0.008150515,4.605136043,51.5611764,45.06395011,7.237198112,9.516640178,0.227189333,1526.052254,0.002026667,0.013578667,0.002052 +2213,0,0,0,0,1.396966119,0.002269333,0.060704667,0.228090568,0,0,0.016914441,0.272986,0.00296,25.96317133,0,1078.375631,82.24353227,240.4528032,0.29608695,0.005162642,0.002227283,6.142555247,4.530329333,2.403742,0.071006273,0,0.946930788,0,0.007936028,4.598761645,51.45985352,44.91001166,7.189739036,9.484756062,0.221210667,1503.593177,0.001973333,0.013221333,0.001998 +2214,0,0,0,0,1.389620447,0.002208,0.059064,0.221925958,0,0,0.016457294,0.265608,0.00288,25.261464,0,1049.230344,81.88997642,239.4543684,0.2880846,0.005023111,0.002167086,5.97654024,4.407888,2.338776,0.069087185,0,0.921338064,0,0.007721541,4.592387246,51.35853063,44.75607321,7.142279959,9.452871946,0.215232,1481.134099,0.00192,0.012864,0.001944 +2215,0,0,0,0,1.382274775,0.002146667,0.057423333,0.215761348,0,0,0.016000147,0.25823,0.0028,24.55975667,0,1020.085057,81.53642058,238.4559337,0.28008225,0.00488358,0.002106889,5.810525233,4.285446667,2.27381,0.067168096,0,0.89574534,0,0.007507053,4.586012848,51.25720774,44.60213477,7.094820883,9.42098783,0.209253333,1458.675021,0.001866667,0.012506667,0.00189 +2216,0,0,0,0,1.374929103,0.002085333,0.055782667,0.209596738,0,0,0.015543,0.250852,0.00272,23.85804933,0,990.9397693,81.18286473,237.457499,0.2720799,0.004744049,0.002046693,5.644510227,4.163005333,2.208844,0.065249008,0,0.870152616,0,0.007292566,4.579638449,51.15588486,44.44819632,7.047361807,9.389103715,0.203274667,1436.215943,0.001813333,0.012149333,0.001836 +2217,0,0,0,0,1.367583431,0.002024,0.054142,0.203432128,0,0,0.015085853,0.243474,0.00264,23.156342,0,961.794482,80.82930889,236.4590642,0.26407755,0.004604518,0.001986496,5.47849522,4.040564,2.143878,0.063329919,0,0.844559892,0,0.007078079,4.573264051,51.05456197,44.29425787,6.99990273,9.357219599,0.197296,1413.756865,0.00176,0.011792,0.001782 +2218,0,0,0,0,1.360237759,0.001962667,0.052501333,0.197267518,0,0,0.014628706,0.236096,0.00256,22.45463467,0,932.6491947,80.47575304,235.4606295,0.2560752,0.004464987,0.001926299,5.312480213,3.918122667,2.078912,0.061410831,0,0.818967168,0,0.006863592,4.566889652,50.95323908,44.14031942,6.952443654,9.325335483,0.191317333,1391.297787,0.001706667,0.011434667,0.001728 +2219,0,0,0,0,1.352892087,0.001901333,0.050860667,0.191102908,0,0,0.014171559,0.228718,0.00248,21.75292733,0,903.5039073,80.12219719,234.4621948,0.24807285,0.004325456,0.001866102,5.146465207,3.795681333,2.013946,0.059491742,0,0.793374444,0,0.006649104,4.560515254,50.85191619,43.98638097,6.904984577,9.293451367,0.185338667,1368.838709,0.001653333,0.011077333,0.001674 +2220,0,0,0,0,1.345546415,0.00184,0.04922,0.184938298,0,0,0.013714412,0.22134,0.0024,21.05122,0,874.35862,79.76864135,233.46376,0.2400705,0.004185926,0.001805905,4.9804502,3.67324,1.94898,0.057572654,0,0.76778172,0,0.006434617,4.554140856,50.75059331,43.83244253,6.857525501,9.261567251,0.17936,1346.379631,0.0016,0.01072,0.00162 +2221,0,0,0,0,1.338200743,0.001778667,0.047579333,0.178773688,0,0,0.013257265,0.213962,0.00232,20.34951267,0,845.2133327,79.4150855,232.4653253,0.23206815,0.004046395,0.001745708,4.814435193,3.550798667,1.884014,0.055653566,0,0.742188996,0,0.00622013,4.547766457,50.64927042,43.67850408,6.810066424,9.229683136,0.173381333,1323.920553,0.001546667,0.010362667,0.001566 +2222,0,0,0,0,1.330855071,0.001717333,0.045938667,0.172609078,0,0,0.012800118,0.206584,0.00224,19.64780533,0,816.0680453,79.06152965,231.4668905,0.2240658,0.003906864,0.001685512,4.648420187,3.428357333,1.819048,0.053734477,0,0.716596272,0,0.006005643,4.541392059,50.54794753,43.52456563,6.762607348,9.19779902,0.167402667,1301.461476,0.001493333,0.010005333,0.001512 +2223,0,0,0,0,1.323509399,0.001656,0.044298,0.166444468,0,0,0.012342971,0.199206,0.00216,18.946098,0,786.922758,78.70797381,230.4684558,0.21606345,0.003767333,0.001625315,4.48240518,3.305916,1.754082,0.051815389,0,0.691003548,0,0.005791155,4.53501766,50.44662465,43.37062718,6.715148271,9.165914904,0.161424,1279.002398,0.00144,0.009648,0.001458 +2224,0,0,0,0,1.316163727,0.001594667,0.042657333,0.160279858,0,0,0.011885824,0.191828,0.00208,18.24439067,0,757.7774707,78.35441796,229.4700211,0.2080611,0.003627802,0.001565118,4.316390173,3.183474667,1.689116,0.0498963,0,0.665410824,0,0.005576668,4.528643262,50.34530176,43.21668873,6.667689195,9.134030788,0.155445333,1256.54332,0.001386667,0.009290667,0.001404 +2225,0,0,0,0,1.308818055,0.001533333,0.041016667,0.154115248,0,0,0.011428677,0.18445,0.002,17.54268333,0,728.6321833,78.00086212,228.4715863,0.20005875,0.003488271,0.001504921,4.150375167,3.061033333,1.62415,0.047977212,0,0.6398181,0,0.005362181,4.522268863,50.24397887,43.06275029,6.620230118,9.102146672,0.149466667,1234.084242,0.001333333,0.008933333,0.00135 +2226,0,0,0,0,1.301472383,0.001472,0.039376,0.147950638,0,0,0.010971529,0.177072,0.00192,16.840976,0,699.486896,77.64730627,227.4731516,0.1920564,0.00334874,0.001444724,3.98436016,2.938592,1.559184,0.046058123,0,0.614225376,0,0.005147694,4.515894465,50.14265598,42.90881184,6.572771042,9.070262557,0.143488,1211.625164,0.00128,0.008576,0.001296 +2227,0,0,0,0,1.294126711,0.001410667,0.037735333,0.141786028,0,0,0.010514382,0.169694,0.00184,16.13926867,0,670.3416087,77.29375042,226.4747169,0.18405405,0.00320921,0.001384527,3.818345153,2.816150667,1.494218,0.044139035,0,0.588632652,0,0.004933207,4.509520066,50.0413331,42.75487339,6.525311965,9.038378441,0.137509333,1189.166086,0.001226667,0.008218667,0.001242 +2228,0,0,0,0,1.286781039,0.001349333,0.036094667,0.135621419,0,0,0.010057235,0.162316,0.00176,15.43756133,0,641.1963213,76.94019458,225.4762821,0.1760517,0.003069679,0.00132433,3.652330147,2.693709333,1.429252,0.042219946,0,0.563039928,0,0.004718719,4.503145668,49.94001021,42.60093494,6.477852889,9.006494325,0.131530667,1166.707008,0.001173333,0.007861333,0.001188 +2229,0,0,0,0,1.279435367,0.001288,0.034454,0.129456809,0,0,0.009600088,0.154938,0.00168,14.735854,0,612.051034,76.58663873,224.4778474,0.16804935,0.002930148,0.001264134,3.48631514,2.571268,1.364286,0.040300858,0,0.537447204,0,0.004504232,4.49677127,49.83868732,42.44699649,6.430393812,8.974610209,0.125552,1144.24793,0.00112,0.007504,0.001134 +2230,0,0,0,0,1.272089694,0.001226667,0.032813333,0.123292199,0,0,0.009142941,0.14756,0.0016,14.03414667,0,582.9057467,76.23308288,223.4794127,0.160047,0.002790617,0.001203937,3.320300133,2.448826667,1.29932,0.038381769,0,0.51185448,0,0.004289745,4.490396871,49.73736444,42.29305805,6.382934736,8.942726094,0.119573333,1121.788852,0.001066667,0.007146667,0.00108 +2231,0,0,0,0,1.264744022,0.001165333,0.031172667,0.117127589,0,0,0.008685794,0.140182,0.00152,13.33243933,0,553.7604593,75.87952704,222.4809779,0.15204465,0.002651086,0.00114374,3.154285127,2.326385333,1.234354,0.036462681,0,0.486261756,0,0.004075258,4.484022473,49.63604155,42.1391196,6.33547566,8.910841978,0.113594667,1099.329775,0.001013333,0.006789333,0.001026 +2232,0,0,0,0,1.25739835,0.001104,0.029532,0.110962979,0,0,0.008228647,0.132804,0.00144,12.630732,0,524.615172,75.52597119,221.4825432,0.1440423,0.002511555,0.001083543,2.98827012,2.203944,1.169388,0.034543592,0,0.460669032,0,0.00386077,4.477648074,49.53471866,41.98518115,6.288016583,8.878957862,0.107616,1076.870697,9.60E-04,0.006432,9.72E-04 +2233,0,0,0,0,1.250052678,0.001042667,0.027891333,0.104798369,0,0,0.0077715,0.125426,0.00136,11.92902467,0,495.4698847,75.17241534,220.4841084,0.13603995,0.002372025,0.001023346,2.822255113,2.081502667,1.104422,0.032624504,0,0.435076308,0,0.003646283,4.471273676,49.43339577,41.8312427,6.240557507,8.847073746,0.101637333,1054.411619,9.07E-04,0.006074667,9.18E-04 +2234,0,0,0,0,1.242707006,9.81E-04,0.026250667,0.098633759,0,0,0.007314353,0.118048,0.00128,11.22731733,0,466.3245973,74.8188595,219.4856737,0.1280376,0.002232494,9.63E-04,2.656240107,1.959061333,1.039456,0.030705415,0,0.409483584,0,0.003431796,4.464899277,49.33207289,41.67730425,6.19309843,8.81518963,0.095658667,1031.952541,8.53E-04,0.005717333,8.64E-04 +2235,0,0,0,0,1.235361334,9.20E-04,0.02461,0.092469149,0,0,0.006857206,0.11067,0.0012,10.52561,0,437.17931,74.46530365,218.487239,0.12003525,0.002092963,9.03E-04,2.4902251,1.83662,0.97449,0.028786327,0,0.38389086,0,0.003217309,4.458524879,49.23075,41.5233658,6.145639354,8.783305515,0.08968,1009.493463,8.00E-04,0.00536,8.10E-04 +2236,0,0,0,0,1.228015662,8.59E-04,0.022969333,0.086304539,0,0,0.006400059,0.103292,0.00112,9.823902667,0,408.0340227,74.11174781,217.4888042,0.1120329,0.001953432,8.43E-04,2.324210093,1.714178667,0.909524,0.026867239,0,0.358298136,0,0.003002821,4.45215048,49.12942711,41.36942736,6.098180277,8.751421399,0.083701333,987.0343851,7.47E-04,0.005002667,7.56E-04 +2237,0,0,0,0,1.22066999,7.97E-04,0.021328667,0.080139929,0,0,0.005942912,0.095914,0.00104,9.122195333,0,378.8887353,73.75819196,216.4903695,0.10403055,0.001813901,7.83E-04,2.158195087,1.591737333,0.844558,0.02494815,0,0.332705412,0,0.002788334,4.445776082,49.02810423,41.21548891,6.050721201,8.719537283,0.077722667,964.5753073,6.93E-04,0.004645333,7.02E-04 +2238,0,0,0,0,1.213324318,7.36E-04,0.019688,0.073975319,0,0,0.005485765,0.088536,9.60E-04,8.420488,0,349.743448,73.40463611,215.4919348,0.0960282,0.00167437,7.22E-04,1.99218008,1.469296,0.779592,0.023029062,0,0.307112688,0,0.002573847,4.439401684,48.92678134,41.06155046,6.003262124,8.687653167,0.071744,942.1162294,6.40E-04,0.004288,6.48E-04 +2239,0,0,0,0,1.205978646,6.75E-04,0.018047333,0.067810709,0,0,0.005028618,0.081158,8.80E-04,7.718780667,0,320.5981607,73.05108027,214.4935,0.08802585,0.001534839,6.62E-04,1.826165073,1.346854667,0.714626,0.021109973,0,0.281519964,0,0.00235936,4.433027285,48.82545845,40.90761201,5.955803048,8.655769051,0.065765333,919.6571515,5.87E-04,0.003930667,5.94E-04 +2240,0,0,0,0,1.198632974,6.13E-04,0.016406667,0.061646099,0,0,0.004571471,0.07378,8.00E-04,7.017073333,0,291.4528733,72.69752442,213.4950653,0.0800235,0.001395309,6.02E-04,1.660150067,1.224413333,0.64966,0.019190885,0,0.25592724,0,0.002144872,4.426652887,48.72413556,40.75367356,5.908343971,8.623884936,0.059786667,897.1980736,5.33E-04,0.003573333,5.40E-04 +2241,0,0,0,0,1.191287302,5.52E-04,0.014766,0.055481489,0,0,0.004114324,0.066402,7.20E-04,6.315366,0,262.307586,72.34396857,212.4966306,0.07202115,0.001255778,5.42E-04,1.49413506,1.101972,0.584694,0.017271796,0,0.230334516,0,0.001930385,4.420278488,48.62281268,40.59973512,5.860884895,8.59200082,0.053808,874.7389957,4.80E-04,0.003216,4.86E-04 +2242,0,0,0,0,1.18394163,4.91E-04,0.013125333,0.049316879,0,0,0.003657176,0.059024,6.40E-04,5.613658667,0,233.1622987,71.99041273,211.4981958,0.0640188,0.001116247,4.82E-04,1.328120053,0.979530667,0.519728,0.015352708,0,0.204741792,0,0.001715898,4.41390409,48.52148979,40.44579667,5.813425818,8.560116704,0.047829333,852.2799178,4.27E-04,0.002858667,4.32E-04 +2243,0,0,0,0,1.176595958,4.29E-04,0.011484667,0.04315227,0,0,0.003200029,0.051646,5.60E-04,4.911951333,0,204.0170113,71.63685688,210.4997611,0.05601645,9.77E-04,4.21E-04,1.162105047,0.857089333,0.454762,0.013433619,0,0.179149068,0,0.001501411,4.407529691,48.4201669,40.29185822,5.765966742,8.528232588,0.041850667,829.82084,3.73E-04,0.002501333,3.78E-04 +2244,0,0,0,0,1.169250286,3.68E-04,0.009844,0.03698766,0,0,0.002742882,0.044268,4.80E-04,4.210244,0,174.871724,71.28330104,209.5013263,0.0480141,8.37E-04,3.61E-04,0.99609004,0.734648,0.389796,0.011514531,0,0.153556344,0,0.001286923,4.401155293,48.31884402,40.13791977,5.718507665,8.496348472,0.035872,807.3617621,3.20E-04,0.002144,3.24E-04 +2245,0,0,0,0,1.161904614,3.07E-04,0.008203333,0.03082305,0,0,0.002285735,0.03689,4.00E-04,3.508536667,0,145.7264367,70.92974519,208.5028916,0.04001175,6.98E-04,3.01E-04,0.830075033,0.612206667,0.32483,0.009595442,0,0.12796362,0,0.001072436,4.394780894,48.21752113,39.98398132,5.671048589,8.464464357,0.029893333,784.9026842,2.67E-04,0.001786667,2.70E-04 +2246,0,0,0,0,1.154558942,2.45E-04,0.006562667,0.02465844,0,0,0.001828588,0.029512,3.20E-04,2.806829333,0,116.5811493,70.57618934,207.5044569,0.0320094,5.58E-04,2.41E-04,0.664060027,0.489765333,0.259864,0.007676354,0,0.102370896,0,8.58E-04,4.388406496,48.11619824,39.83004288,5.623589513,8.432580241,0.023914667,762.4436063,2.13E-04,0.001429333,2.16E-04 +2247,0,0,0,0,1.14721327,1.84E-04,0.004922,0.01849383,0,0,0.001371441,0.022134,2.40E-04,2.105122,0,87.435862,70.2226335,206.5060221,0.02400705,4.19E-04,1.81E-04,0.49804502,0.367324,0.194898,0.005757265,0,0.076778172,0,6.43E-04,4.382032097,48.01487535,39.67610443,5.576130436,8.400696125,0.017936,739.9845284,1.60E-04,0.001072,1.62E-04 +2248,0,0,0,0,1.139867597,1.23E-04,0.003281333,0.01232922,0,0,9.14E-04,0.014756,1.60E-04,1.403414667,0,58.29057467,69.86907765,205.5075874,0.0160047,2.79E-04,1.20E-04,0.332030013,0.244882667,0.129932,0.003838177,0,0.051185448,0,4.29E-04,4.375657699,47.91355247,39.52216598,5.52867136,8.368812009,0.011957333,717.5254505,1.07E-04,7.15E-04,1.08E-04 +2249,0,0,0,0,1.132521925,6.13E-05,0.001640667,0.00616461,0,0,4.57E-04,0.007378,8.00E-05,0.701707333,0,29.14528733,69.5155218,204.5091527,0.00800235,1.40E-04,6.02E-05,0.166015007,0.122441333,0.064966,0.001919088,0,0.025592724,0,2.14E-04,4.369283301,47.81222958,39.36822753,5.481212283,8.336927893,0.005978667,695.0663726,5.33E-05,3.57E-04,5.40E-05 +2250,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2251,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2252,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2253,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2254,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2255,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2256,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2257,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2258,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2259,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2260,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2261,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2262,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2263,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2264,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2265,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2266,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2267,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2268,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2269,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2270,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2271,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2272,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2273,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2274,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2275,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2276,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2277,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2278,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2279,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2280,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2281,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2282,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2283,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2284,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2285,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2286,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2287,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2288,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2289,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2290,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2291,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2292,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2293,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2294,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2295,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2296,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2297,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2298,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2299,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 +2300,0,0,0,0,1.125176253,0,0,0,0,0,0,0,0,0,0,0,69.16196596,203.5107179,0,0,0,0,0,0,0,0,0,0,0,4.362908902,47.71090669,39.21428908,5.433753207,8.305043778,0,672.6072948,0,0,0 diff --git a/inst/shinyApp/www/inputs/ssp245_emissions.csv b/inst/shinyApp/www/inputs/ssp245_emissions.csv new file mode 100644 index 0000000..ebd112e --- /dev/null +++ b/inst/shinyApp/www/inputs/ssp245_emissions.csv @@ -0,0 +1,562 @@ +; ssp245 from rcmip,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; hectordata 0.0.0.9000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; commit dab9aad8750535b,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; date Fri Nov 4 11:35:30 2022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; UNITS:,Pg C/yr,Pg C/yr,Pg C/yr,Pg C/yr,Tg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg CH4,Tg CO,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg N,Tg,Tg NMVOC,Tg N,Tg,Gg,Gg S,Gg,Gg,Gg +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_emissions,CCl4_emissions,CF4_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CFC11_emissions,CFC12_emissions,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_emissions,CH4_emissions,CO_emissions,HCFC141b_emissions,HCFC142b_emissions,HCFC22_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC23_emissions,HFC245fa_emissions,HFC32_emissions,HFC4310_emissions,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,SF6_emissions,SO2_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions +1745,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1746,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1747,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1748,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1749,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1750,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1751,0.002594106,0.08266927,0,0,2.072925926,0,0.024856862,0.010071225,0,0,0,0,0,105.1072,0,4276.7685,18.91510887,343.9263672,0,0,0,0,0,0,0,0,0,0,0,0.055785796,6.860142185,59.08812628,3.833772936,15.18871674,0,1206.06818,0.007723273,0,0 +1752,0.002595208,0.084190146,0,0,2.064311933,0,0.024856862,0.010071225,0,0,0,0,0,105.12502,0,4277.7049,18.88971181,341.8090339,0,0,0,0,0,0,0,0,0,0,0,0.056839716,6.819482037,58.63199703,3.834371851,15.03447574,0,1200.427847,0.007723273,0,0 +1753,0.002595302,0.085739002,0,0,2.071950564,0,0.024856862,0.010071225,0,0,0,0,0,105.10373,0,4276.586,19.12137723,343.6754562,0,0,0,0,0,0,0,0,0,0,0,0.057913547,6.881438529,59.0263494,3.817794323,15.18254515,0,1207.227099,0.007723273,0,0 +1754,0.002596404,0.087316353,0,0,2.099349783,0,0.024856862,0.010071225,0,0,0,0,0,105.07356,0,4274.9998,19.50906107,349.8156252,0,0,0,0,0,0,0,0,0,0,0,0.059007665,7.015189224,60.26994517,3.847331337,15.55877305,0,1232.953114,0.007723273,0,0 +1755,0.002597506,0.088922722,0,0,2.099173165,0,0.024856862,0.010071225,0,0,0,0,0,105.09182,0,4275.9598,19.50045493,348.144668,0,0,0,0,0,0,0,0,0,0,0,0.060122454,6.943989043,59.82493372,3.886652888,15.35818253,0,1223.082685,0.007723273,0,0 +1756,0.00277509,0.090558644,0,0,2.068915407,0,0.024856862,0.010071225,0,0,0,0,0,105.08556,0,4275.6306,19.4625366,343.3231517,0,0,0,0,0,0,0,0,0,0,0,0.061258303,6.922711557,58.94682931,3.780146274,15.19577663,0,1211.479202,0.007723273,0,0 +1757,0.002776193,0.092224663,0,0,2.147923676,0,0.024856862,0.010071225,0,0,0,0,0,105.09137,0,4275.9361,20.02354066,355.9418923,0,0,0,0,0,0,0,0,0,0,0,0.062415611,7.047674129,61.263693,3.998436266,15.70481912,0,1255.688247,0.007723273,0,0 +1758,0.002777295,0.093921331,0,0,2.12061141,0,0.024856862,0.010071225,0,0,0,0,0,105.09662,0,4276.2118,19.93400533,351.839749,0,0,0,0,0,0,0,0,0,0,0,0.063594783,6.995459768,60.43461244,3.95160932,15.51461163,0,1241.80619,0.007723273,0,0 +1759,0.002778397,0.095649213,0,0,2.117267431,0,0.024856862,0.010071225,0,0,0,0,0,105.08372,0,4275.5338,20.14146621,351.5077627,0,0,0,0,0,0,0,0,0,0,0,0.064796232,7.045958325,60.44526305,3.882559461,15.57401349,0,1238.693446,0.007723273,0,0 +1760,0.002778491,0.097408883,0,0,2.127804105,0,0.024856862,0.010071225,0,0,0,0,0,105.04022,0,4273.2473,20.41679714,354.4182853,0,0,0,0,0,0,0,0,0,0,0,0.06602038,7.128048286,61.05172479,3.870426966,15.81906393,0,1250.820917,0.007723273,0,0 +1761,0.0030418,0.099200926,0,0,2.137756989,0,0.024856862,0.010071225,0,0,0,0,0,105.09143,0,4275.9395,20.45599017,354.7079679,0,0,0,0,0,0,0,0,0,0,0,0.067267654,7.080969808,60.9842272,3.947785545,15.69191588,0,1256.548122,0.007723273,0,0 +1762,0.003042907,0.101025937,0,0,2.101748109,0,0.024856862,0.010071225,0,0,0,0,0,105.08127,0,4275.4052,20.45168738,349.2496972,0,0,0,0,0,0,8.32E-08,0,0,1.51E-06,0,0.068538493,7.072547337,60.02708933,3.805606722,15.52593531,0,1235.176016,0.007723273,0,0 +1763,0.003044015,0.102884523,0,0,2.107029758,0,0.024856862,0.010071225,0,0,0,0,0,105.09332,0,4276.0386,20.54517934,350.0593349,0,0,0,0,0,0,6.68E-07,0,0,1.24E-05,0,0.06983334,7.067982584,60.12706627,3.846149431,15.52676249,0,1242.431334,0.007723273,0,0 +1764,0.003045122,0.104777302,0,0,2.071549227,0,0.024856862,0.010071225,0,0,0,0,0,105.1104,0,4276.9364,20.26091721,342.0446107,0,0,0,0,0,0,1.27E-06,0,0,2.50E-05,0,0.07115265,6.89874574,58.43835717,3.829003368,14.95869898,0,1212.823098,0.007723273,0,0 +1765,0.003046229,0.106704903,0,0,2.123600022,0,0.024856862,0.010071225,0,0,0,0,0,105.07293,0,4274.9668,20.919155,352.9327258,0,0,0,0,0,0,1.39E-06,0,0,3.03E-05,0,0.072496884,7.112382325,60.62945786,3.878155223,15.67992411,0,1250.725203,0.007723273,0,0 +1766,0.003396267,0.108667966,0,0,2.110459977,0,0.024856862,0.010071225,0,0,0,0,0,105.07758,0,4275.2111,20.8535919,349.380645,0,0,0,0,0,0,1.42E-06,0,0,3.44E-05,0,0.073866514,7.036296531,59.85878463,3.884852898,15.35883081,0,1244.142077,0.007723273,0,0 +1767,0.003397374,0.110667143,0,0,2.112460701,0,0.024856862,0.010071225,0,0,0,0,0,105.08566,0,4275.6359,20.99917946,349.616099,0,0,0,0,0,0,1.46E-06,0,0,3.84E-05,0,0.07526202,7.045382427,59.8910269,3.880476349,15.4005645,0,1243.308056,0.007723273,0,0 +1768,0.003398482,0.1127031,0,0,2.18313204,0,0.024856862,0.010071225,0,0,0,0,0,105.04673,0,4273.5893,21.65945211,362.6536848,0,0,0,0,0,0,1.49E-06,0,0,4.25E-05,0,0.07668389,7.223617821,62.36582555,4.039005154,16.0637302,0,1294.705423,0.007723273,0,0 +1769,0.003399589,0.114776512,0,0,2.137633742,0,0.024856862,0.010071225,0,0,0,0,0,105.0767,0,4275.165,21.49633535,355.0254185,0,0,0,0,0,0,1.53E-06,0,0,4.65E-05,0,0.078132622,7.157863703,60.95040361,3.914619863,15.73509479,0,1273.362221,0.007723273,0,0 +1770,0.003400696,0.116888069,0,0,2.139364739,0,0.024856862,0.010071225,0,0,0,0,0,105.04544,0,4273.5216,21.63439757,355.3605476,0,0,0,0,0,0,1.57E-06,0,0,5.06E-05,0,0.079608724,7.155978284,60.96602721,3.927122991,15.74271509,0,1277.49221,0.007723273,0,0 +1771,0.003768892,0.119038473,0,0,2.100909701,0,0.024856862,0.010071225,0,0,0,0,0,105.07227,0,4274.9318,21.4289211,347.8619883,0,0,0,0,0,0,1.60E-06,0,0,5.47E-05,0,0.081112713,7.069218405,59.42424033,3.843192573,15.32197739,0,1230.128239,0.007723273,0,0 +1772,0.003770005,0.121228438,0,0,2.087077541,0,0.024856862,0.010071225,0,0,0,0,0,105.08887,0,4275.8046,21.39461572,344.6134738,0,0,0,0,0,0,1.64E-06,0,0,5.87E-05,0,0.082645116,7.043230562,58.72495295,3.812980037,15.11418329,0,1217.836348,0.007723273,0,0 +1773,0.003771118,0.123458692,0,0,2.092755603,0,0.024856862,0.010071225,0,0,0,0,0,105.06952,0,4274.7874,21.59523139,345.7768091,0,0,0,0,0,0,1.67E-06,0,0,6.28E-05,0,0.084206469,7.104503735,58.91656885,3.795742519,15.20466379,0,1220.686645,0.007723273,0,0 +1774,0.003772231,0.125729977,0,0,2.154900741,0,0.024856862,0.010071225,0,0,0,0,0,105.0265,0,4272.5262,22.25970773,358.103585,0,0,0,0,0,0,1.71E-06,0,0,6.68E-05,0,0.08579732,7.347701469,61.31335787,3.892106055,15.87559318,0,1266.428616,0.007723273,0,0 +1775,0.003773344,0.128043046,0,0,2.148996597,0,0.024856862,0.010071225,0,0,0,0,0,105.05246,0,4273.8905,22.20096329,355.0471729,0,0,0,0,0,0,1.75E-06,0,0,7.09E-05,0,0.087418226,7.26964482,60.54083046,3.918102925,15.5891357,0,1250.604504,0.007723273,0,0 +1776,0.004161709,0.13039867,0,0,2.112143132,0,0.024856862,0.010071225,0,0,0,0,0,105.03944,0,4273.2061,22.14194213,348.8985525,0,0,0,0,0,0,1.78E-06,0,0,7.49E-05,0,0.089069754,7.261469977,59.3811448,3.777483547,15.37007702,0,1235.260121,0.007723273,0,0 +1777,0.004162822,0.132797629,0,0,2.170244784,0,0.024856862,0.010071225,0,0,0,0,0,105.05273,0,4273.9048,22.56871006,357.545361,0,0,0,0,0,0,1.82E-06,0,0,7.90E-05,0,0.090752483,7.355973763,60.89349007,3.937981414,15.67345753,0,1262.643552,0.007723273,0,0 +1778,0.004163935,0.135240723,0,0,2.198001402,0,0.024856862,0.010071225,0,0,0,0,0,105.04465,0,4273.48,22.85608093,362.7554135,0,0,0,0,0,0,1.85E-06,0,0,8.30E-05,0,0.092467003,7.434606067,61.78348695,4.021077007,15.89945625,0,1282.280293,0.007723273,0,0 +1779,0.004165048,0.137728763,0,0,2.159615777,0,0.024856862,0.010071225,0,0,0,0,0,105.03691,0,4273.0734,22.82063569,355.9261715,0,0,0,0,0,0,1.89E-06,0,0,8.71E-05,0,0.094213914,7.418773457,60.50081488,3.865645204,15.62745786,0,1253.809198,0.007723273,0,0 +1780,0.00416717,0.140262576,0,0,2.189267588,0,0.024856862,0.010071225,0,0,0,0,0,104.98817,0,4270.511,23.24616665,361.6140422,0,0,0,0,0,0,1.92E-06,0,0,9.10E-05,0,0.095993828,7.569429121,61.61859566,3.871147964,16.0183808,0,1274.797709,0.007723273,0,0 +1781,0.004659413,0.142843003,0,0,2.1894412,0,0.024856862,0.010071225,0,0,0,0,0,105.04236,0,4273.3596,23.24965548,360.0900539,0,0,0,0,0,0,1.96E-06,0,0,9.52E-05,0,0.097807369,7.505783353,61.19330647,3.920723923,15.80695227,0,1277.536252,0.007723273,0,0 +1782,0.004660532,0.145470903,0,0,2.160522701,0,0.024856862,0.010071225,0,0,0,0,0,105.03125,0,4272.7759,23.34175812,356.0465546,0,0,0,0,0,0,2.00E-06,0,0,9.92E-05,0,0.099655171,7.519625788,60.48572145,3.793838185,15.71282083,0,1261.050876,0.007723273,0,0 +1783,0.004662661,0.148147149,0,0,2.15072559,0,0.024856862,0.010071225,0,0,0,0,0,105.0436,0,4273.4248,23.37991679,354.2869243,0,0,0,0,0,0,2.03E-06,0,0,1.03E-04,0,0.101537883,7.496232273,60.10171272,3.788738178,15.60726047,0,1258.691216,0.007723273,0,0 +1784,0.00466378,0.150872629,0,0,2.140542212,0,0.024856862,0.010071225,0,0,0,0,0,105.05531,0,4274.0405,23.2940423,350.5694963,0,0,0,0,0,0,2.07E-06,0,0,1.07E-04,0,0.103456163,7.3811564,59.21225989,3.835360348,15.22814126,0,1241.091384,0.007723273,0,0 +1785,0.004666993,0.153648251,0,0,2.165839691,0,0.024856862,0.010071225,0,0,0,0,0,105.02817,0,4272.6136,23.80210554,356.8051254,0,0,0,0,0,0,2.10E-06,0,0,1.11E-04,0,0.105410684,7.538152323,60.49447936,3.821649192,15.73271148,0,1266.56815,0.007723273,0,0 +1786,0.00529538,0.156474937,0,0,2.158683485,0,0.024856862,0.010071225,0,0,0,0,0,105.02684,0,4272.5442,23.831995,354.2058773,0,0,0,0,0,0,2.14E-06,0,0,1.15E-04,0,0.107402131,7.491084254,59.91468241,3.826316215,15.46715712,0,1263.905903,0.007723273,0,0 +1787,0.005297508,0.159353625,0,0,2.185179294,0,0.024856862,0.010071225,0,0,0,0,0,105.03415,0,4272.9283,24.17652818,358.7933683,0,0,0,0,0,0,2.18E-06,0,0,1.19E-04,0,0.1094312,7.55517197,60.75335708,3.885107996,15.71033146,0,1281.331419,0.007723273,0,0 +1788,0.005298627,0.162285272,0,0,2.255223484,0,0.024856862,0.010071225,0,0,0,0,0,104.9922,0,4270.7227,24.85592892,371.3570923,0,0,0,0,0,0,2.21E-06,0,0,1.23E-04,0,0.111498603,7.730934741,63.12433047,4.038519355,16.34335434,0,1326.080725,0.007723273,0,0 +1789,0.005300755,0.165270854,0,0,2.207664632,0,0.024856862,0.010071225,0,0,0,0,0,105.0242,0,4272.405,24.71707284,363.4416446,0,0,0,0,0,0,2.25E-06,0,0,1.28E-04,0,0.113605064,7.663516243,61.63229238,3.911091424,16.00040861,0,1300.935055,0.007723273,0,0 +1790,0.005302883,0.168311362,0,0,2.216436996,0,0.024856862,0.010071225,0,0,0,0,0,104.99139,0,4270.6805,24.94220857,364.8802164,0,0,0,0,0,0,2.28E-06,0,0,1.32E-04,0,0.115751321,7.680254371,61.84599181,3.937203207,16.05674391,0,1304.800481,0.007723273,0,0 +1791,0.005920183,0.171407806,0,0,2.172583556,0,0.024856862,0.010071225,0,0,0,0,0,105.02128,0,4272.2515,24.77843217,356.6583862,0,0,0,0,0,0,2.32E-06,0,0,1.36E-04,0,0.117938125,7.556943543,60.2187392,3.848117366,15.61644988,0,1284.768804,0.007723273,0,0 +1792,0.006098811,0.174561216,0,0,2.161650793,0,0.024856862,0.010071225,0,0,0,0,0,105.04466,0,4273.4807,24.81889294,354.2515376,0,0,0,0,0,0,2.36E-06,0,0,1.40E-04,0,0.120166243,7.499155045,59.70568574,3.852168551,15.44666919,0,1279.936623,0.007723273,0,0 +1793,0.006105082,0.17777264,0,0,2.153273834,0,0.024856862,0.010071225,0,0,0,0,0,105.02605,0,4272.5025,25.03153141,353.3723093,0,0,0,0,0,0,2.39E-06,0,0,1.44E-04,0,0.122436456,7.518120739,59.5849395,3.798134648,15.47797954,0,1276.675891,0.007723273,0,0 +1794,0.006092419,0.181043144,0,0,2.213843116,0,0.024856862,0.010071225,0,0,0,0,0,104.98417,0,4270.301,25.76753778,365.721914,0,0,0,0,0,0,2.43E-06,0,0,1.48E-04,0,0.124749558,7.731535991,62.03822453,3.901984421,16.16525997,0,1323.391544,0.007723273,0,0 +1795,0.006095933,0.184373817,0,0,2.202692273,0,0.024856862,0.010071225,0,0,0,0,0,105.01093,0,4271.7076,25.77334281,362.1921227,0,0,0,0,0,0,2.46E-06,0,0,1.52E-04,0,0.127106359,7.626169221,61.24273214,3.919106621,15.88313195,0,1307.117791,0.007723273,0,0 +1796,0.006396386,0.187765764,0,0,2.153154616,0,0.024856862,0.010071225,0,0,0,0,0,104.99978,0,4271.1214,25.74058407,354.4783029,0,0,0,0,0,0,2.50E-06,0,0,1.56E-04,0,0.129507686,7.581863097,59.86424243,3.749609514,15.6283698,0,1286.414837,0.007723273,0,0 +1797,0.006712627,0.191220113,0,0,2.213475036,0,0.024856862,0.010071225,0,0,0,0,0,105.01623,0,4271.986,26.23006226,363.5482372,0,0,0,0,0,0,2.54E-06,0,0,1.60E-04,0,0.131954379,7.636302582,61.47137695,3.940974102,15.93865305,0,1322.1792,0.007723273,0,0 +1798,0.006990649,0.194738012,0,0,2.234056283,0,0.024856862,0.010070485,0,0,0,0,0,105.0081,0,4271.559,26.54644012,367.6501028,0,0,0,0,0,0,2.57E-06,0,0,1.64E-04,0,0.134447296,7.671017716,62.19763903,4.015700361,16.12667274,0,1344.494311,0.007723273,0,0 +1799,0.007363034,0.198320631,0,0,2.207292165,0,0.024856862,0.010071964,0,0,0,0,0,104.99068,0,4270.6431,26.70648817,363.4860469,0,0,0,0,0,0,2.61E-06,0,0,1.68E-04,0,0.13698731,7.67446285,61.4962302,3.882903388,16.03734279,0,1332.732765,0.007723273,0,0 +1800,0.007853248,0.201969159,0,0,2.215974055,0,0.024856862,0.010071225,0,0,0,0,0,104.95838,0,4268.9449,27.05634308,365.8466368,0,0,0,0,0,0,2.64E-06,0,0,1.72E-04,0,0.13957531,7.740645322,62.00320914,3.867691465,16.2421417,0,1351.401885,0.007723273,0,0 +1801,0.007792363,0.20568481,0,0,2.21940169,0,0.024856862,0.010071225,0,0,0,0,0,105.01099,0,4271.7107,27.12488718,364.9170684,0,0,0,0,0,0,2.68E-06,0,0,1.76E-04,0,0.142212204,7.701186978,61.66564779,3.921843763,16.06373322,0,1346.312669,0.007723273,0,0 +1802,0.010116776,0.209468818,0,0,2.202692661,0,0.024856862,0.010071225,0,0,0,0,0,104.99468,0,4270.8532,27.33978432,362.9627075,0,0,0,0,0,0,2.72E-06,0,0,1.80E-04,0,0.144898914,7.763054085,61.32615659,3.814905719,16.07582361,0,1365.792459,0.007723273,0,0 +1803,0.008763958,0.213322441,0,0,2.180015828,0,0.024856862,0.010071225,0,0,0,0,0,105.0108,0,4271.7009,27.32049985,358.65078,0,0,0,0,0,0,2.75E-06,0,0,1.84E-04,0,0.147636382,7.720863757,60.40434182,3.773697199,15.83103088,0,1340.023262,0.007723273,0,0 +1804,0.00956559,0.21724696,0,0,2.197298087,0,0.024856862,0.010071225,0,0,0,0,0,105.0121,0,4271.7691,27.46474997,359.528696,0,0,0,0,0,0,2.79E-06,0,0,1.88E-04,0,0.150425568,7.68708673,60.36470275,3.871473305,15.67624811,0,1347.990682,0.007723273,0,0 +1805,0.009351564,0.221243678,0,0,2.215042398,0,0.024856862,0.010071225,0,0,0,0,0,104.98963,0,4270.588,27.9507982,364.3037043,0,0,0,0,0,0,2.82E-06,0,0,1.92E-04,0,0.153267447,7.835162209,61.31991146,3.843518327,16.0941548,0,1367.021932,0.007723273,0,0 +1806,0.009786482,0.225313924,0,0,2.222822585,0,0.024856862,0.010071225,0,0,0,0,0,104.98239,0,4270.2074,28.13437245,364.3432293,0,0,0,0,0,0,2.86E-06,0,0,1.96E-04,0,0.156163016,7.843541453,61.22344968,3.877012285,15.95144317,0,1370.297233,0.007723273,0,0 +1807,0.010470139,0.229459052,0,0,2.239871982,0,0.024856862,0.010071225,0,0,0,0,0,104.99423,0,4270.8298,28.45865603,367.2349328,0,0,0,0,0,0,2.90E-06,0,0,2.00E-04,0,0.159113289,7.906227329,61.70646914,3.906741383,16.11756408,0,1389.725529,0.007723273,0,0 +1808,0.009785087,0.233680437,0,0,2.311936484,0,0.024856862,0.010071225,0,0,0,0,0,104.95199,0,4268.6094,29.18524117,380.035272,0,0,0,0,0,0,2.93E-06,0,0,2.04E-04,0,0.162119299,8.095303457,64.08195973,4.070358273,16.7315469,0,1425.575123,0.007723273,0,0 +1809,0.009793704,0.237979484,0,0,2.26744264,0,0.024856862,0.010071225,0,0,0,0,0,104.979,0,4270.0292,29.12865813,372.8486855,0,0,0,0,0,0,2.97E-06,0,0,2.08E-04,0,0.1651821,8.062766978,62.71002213,3.940068496,16.44016599,0,1403.131587,0.007723273,0,0 +1810,0.010412685,0.242357621,0,0,2.279523716,0,0.024856862,0.010071225,0,0,0,0,0,104.93988,0,4267.9729,29.42453242,374.7180119,0,0,0,0,0,0,3.00E-06,0,0,2.12E-04,0,0.168302763,8.107079152,62.97351665,3.9615916,16.52538808,0,1414.194561,0.007723273,0,0 +1811,0.011014901,0.246816304,0,0,2.252530236,0,0.024856862,0.010071225,0,0,0,0,0,104.96903,0,4269.505,29.40578756,369.2694863,0,0,0,0,0,0,3.04E-06,0,0,2.17E-04,0,0.171482384,8.026948341,61.829606,3.9187457,16.18886557,0,1403.686743,0.007723273,0,0 +1812,0.011395912,0.251357013,0,0,2.228006935,0,0.024856862,0.010071225,0,0,0,0,0,104.99029,0,4270.6225,29.4202985,364.5806875,0,0,0,0,0,0,3.07E-06,0,0,2.21E-04,0,0.174722074,7.965169636,60.85746997,3.875988658,15.92905063,0,1394.884132,0.007723273,0,0 +1813,0.011449081,0.255981258,0,0,2.231996859,0,0.024856862,0.010071225,0,0,0,0,0,104.97005,0,4269.5589,29.77847603,365.9138874,0,0,0,0,0,0,3.11E-06,0,0,2.25E-04,0,0.178022969,8.032995952,61.1361302,3.844088557,16.06491504,0,1400.325553,0.007723273,0,0 +1814,0.011703716,0.260690576,0,0,2.291579691,0,0.024856862,0.010071225,0,0,0,0,0,104.93884,0,4267.9182,30.54785186,377.9855417,0,0,0,0,0,0,3.14E-06,0,0,2.29E-04,0,0.181386226,8.255365792,63.49192823,3.946873452,16.71992349,0,1449.11988,0.007723273,0,0 +1815,0.012094117,0.265486531,0,0,2.287324694,0,0.024856862,0.010071225,0,0,0,0,0,104.94955,0,4268.4808,30.64433954,375.5806648,0,0,0,0,0,0,3.18E-06,0,0,2.33E-04,0,0.184813022,8.178894558,62.8715757,3.977998266,16.48749688,0,1442.834604,0.007723273,0,0 +1816,0.013382563,0.270370719,0,0,2.261022,0,0.024856862,0.010071225,0,0,0,0,0,104.93504,0,4267.7184,30.79985622,371.6298228,0,0,0,0,0,0,3.22E-06,0,0,2.37E-04,0,0.188304559,8.188247477,62.14643252,3.866008445,16.39503385,0,1449.517631,0.007723273,0,0 +1817,0.013970106,0.275344761,0,0,2.296180569,0,0.024856862,0.010071225,0,0,0,0,0,104.95336,0,4268.6815,31.19839541,376.4429441,0,0,0,0,0,0,3.25E-06,0,0,2.41E-04,0,0.191862058,8.220825384,62.94153101,3.981202576,16.51722865,0,1472.005827,0.007723273,0,0 +1818,0.014054847,0.280410312,0,0,2.335490105,0,0.024856862,0.010071225,0,0,0,0,0,104.94012,0,4267.9855,31.68760832,383.9142096,0,0,0,0,0,0,3.29E-06,0,0,2.45E-04,0,0.195486767,8.306817108,64.26768049,4.109295846,16.84964888,0,1503.330753,0.007723273,0,0 +1819,0.01412101,0.285569054,0,0,2.304129482,0,0.024856862,0.010071225,0,0,0,0,0,104.92235,0,4267.0511,31.84544135,378.3325838,0,0,0,0,0,0,3.32E-06,0,0,2.49E-04,0,0.199179954,8.302878859,63.25758927,3.96351919,16.66519821,0,1480.397209,0.007723273,0,0 +1820,0.014336733,0.290822702,0,0,2.321048766,0,0.024856862,0.010071225,0,0,0,0,0,104.88909,0,4265.3029,32.33339467,382.4197483,0,0,0,0,0,0,3.36E-06,0,0,2.53E-04,0,0.202942914,8.416077975,64.0766433,3.958562233,16.96356441,0,1500.127423,0.007723273,0,0 +1821,0.014562069,0.296173002,0,0,2.333483777,0,0.024856862,0.010071225,0,0,0,0,0,104.93899,0,4267.9261,32.52138863,382.8975341,0,0,0,0,0,0,3.40E-06,0,0,2.57E-04,0,0.206776965,8.396299171,63.98744909,4.029731628,16.86010032,0,1506.00016,0.007723273,0,0 +1822,0.015133379,0.301621733,0,0,2.302515118,0,0.024856862,0.010071225,0,0,0,0,0,104.92104,0,4266.9822,32.73451052,378.6708004,0,0,0,0,0,0,3.43E-06,0,0,2.61E-04,0,0.21068345,8.447852069,63.22724653,3.871133523,16.79629808,0,1499.477254,0.007723273,0,0 +1823,0.016038149,0.307170704,0,0,2.282471765,0,0.024856862,0.010071225,0,0,0,0,0,104.94096,0,4268.0293,32.75571509,374.3931813,0,0,0,0,0,0,3.47E-06,0,0,2.65E-04,0,0.214663737,8.395261064,62.26076437,3.846052063,16.53271228,0,1499.604752,0.007723273,0,0 +1824,0.016501009,0.31282176,0,0,2.310947811,0,0.024856862,0.010071225,0,0,0,0,0,104.93425,0,4267.6765,33.0519787,377.0407114,0,0,0,0,0,0,3.50E-06,0,0,2.69E-04,0,0.218719221,8.395833943,62.5634338,3.956577313,16.47072526,0,1512.912552,0.007723273,0,0 +1825,0.017222663,0.318576779,0,0,2.322703112,0,0.024856862,0.010071225,0,0,0,0,0,104.91652,0,4266.7449,33.52533882,380.3167498,0,0,0,0,0,0,3.54E-06,0,0,2.73E-04,0,0.222851322,8.516236489,63.18578955,3.919068065,16.80867752,0,1538.203336,0.007723273,0,0 +1826,0.01738223,0.324437675,0,0,2.320968834,0,0.024856862,0.010071225,0,0,0,0,0,104.90841,0,4266.3186,33.7481029,378.8222655,0,0,0,0,0,0,3.57E-06,0,0,2.77E-04,0,0.227061488,8.523620414,62.81594151,3.911604483,16.62077908,0,1531.982813,0.007723273,0,0 +1827,0.018639877,0.330406393,0,0,2.346337782,0,0.024856862,0.010071225,0,0,0,0,0,104.91515,0,4266.6729,34.15505001,382.4773392,0,0,0,0,0,0,3.61E-06,0,0,2.81E-04,0,0.231351194,8.585850324,63.38999011,3.962793591,16.79991923,0,1566.092214,0.007723273,0,0 +1828,0.018824746,0.336484919,0,0,2.420774153,0,0.024856862,0.010071225,0,0,0,0,0,104.87222,0,4264.4159,34.99912851,395.9754325,0,0,0,0,0,0,3.64E-06,0,0,2.85E-04,0,0.235721941,8.801495947,65.90535949,4.116354977,17.4805645,0,1618.020723,0.007723273,0,0 +1829,0.018664196,0.342675273,0,0,2.379376332,0,0.024856862,0.010071225,0,0,0,0,0,104.90025,0,4265.8895,35.01640513,389.1746282,0,0,0,0,0,0,3.68E-06,0,0,2.89E-04,0,0.240175262,8.767229394,64.57289824,4.000350816,17.19408165,0,1597.238302,0.007723273,0,0 +1830,0.024933734,0.348979511,0,0,2.403159831,0,0.024856862,0.010071225,0,0,0,0,0,104.8667,0,4264.1256,35.40215534,392.1065329,0,0,0,0,0,0,3.72E-06,0,0,2.93E-04,0,0.244712716,8.818806446,64.94076179,4.03843029,17.31425157,0,1705.903254,0.007723273,0,0 +1831,0.023660178,0.355399729,0,0,2.361347125,0,0.024856862,0.010071225,0,0,0,0,0,104.89174,0,4265.442,35.37418705,384.2012507,0,0,0,0,0,0,3.75E-06,0,0,2.97E-04,0,0.249335894,8.731507392,63.33682174,3.947409453,16.87772867,0,1661.03313,0.007723273,0,0 +1832,0.023685925,0.36193806,0,0,2.353863299,0,0.024856862,0.010071225,0,0,0,0,0,104.90924,0,4266.362,35.56272349,382.363398,0,0,0,0,0,0,3.79E-06,0,0,3.01E-04,0,0.254046413,8.712430009,62.87089656,3.946175053,16.73898675,0,1660.610583,0.007723273,0,0 +1833,0.024226693,0.368596678,0,0,2.356959381,0,0.024856862,0.010070485,0,0,0,0,0,104.89175,0,4265.4426,35.98083111,383.4537928,0,0,0,0,0,0,3.82E-06,0,0,3.05E-04,0,0.258845925,8.790922957,63.0695837,3.905335594,16.86449692,0,1673.874936,0.007723273,0,0 +1834,0.024702586,0.375377795,0,0,2.412445466,0,0.024856862,0.010071964,0,0,0,0,0,104.854,0,4263.4584,36.76106097,394.1429023,0,0,0,0,0,0,3.86E-06,0,0,3.09E-04,0,0.26373611,9.001420472,65.10499264,3.989061294,17.45428534,0,1721.269347,0.007723273,0,0 +1835,0.025273638,0.382283665,0,0,2.405456375,0,0.024856862,0.010071225,0,0,0,0,0,104.8698,0,4264.2887,36.88278973,390.5551392,0,0,0,0,0,0,3.90E-06,0,0,3.13E-04,0,0.268718682,8.925548286,64.23544317,3.998558037,17.17048679,0,1718.222125,0.007723273,0,0 +1836,0.029221069,0.389316584,0,0,2.404187956,0,0.024856862,0.010071225,0,0,0,0,0,104.84901,0,4263.1961,37.24729235,389.9786644,0,0,0,0,0,0,3.93E-06,0,0,3.17E-04,0,0.273795386,8.993015086,64.08016333,3.917445996,17.23500429,0,1783.083419,0.007723273,0,0 +1837,0.029260399,0.396478888,0,0,2.440210174,0,0.024856862,0.010071225,0,0,0,0,0,104.86946,0,4264.2707,37.69980678,394.7565038,0,0,0,0,0,0,3.97E-06,0,0,3.21E-04,0,0.278968001,9.027059824,64.82242714,4.040217213,17.35383524,0,1798.088197,0.007723273,0,0 +1838,0.030288693,0.403772957,0,0,2.477311746,0,0.024856862,0.010071225,0,0,0,0,0,104.85548,0,4263.5362,38.24210962,401.296187,0,0,0,0,0,0,4.00E-06,0,0,3.25E-04,0,0.284238338,9.122535895,65.94724657,4.142172855,17.64153847,0,1841.543139,0.007723273,0,0 +1839,0.031310557,0.411201217,0,0,2.452638138,0,0.024856862,0.010071225,0,0,0,0,0,104.83788,0,4262.6108,38.51117556,396.9116369,0,0,0,0,0,0,4.04E-06,0,0,3.29E-04,0,0.289608243,9.139608329,65.11131218,4.015311872,17.50517633,0,1843.080824,0.007723273,0,0 +1840,0.033542974,0.418766135,0,0,2.443877522,0,0.024856862,0.010071225,0,0,0,0,0,104.80755,0,4261.0163,38.88776194,395.8809162,0,0,0,0,0,0,4.07E-06,0,0,3.33E-04,0,0.295079598,9.211326299,64.92298176,3.92426914,17.57513248,0,1874.141828,0.007723273,0,0 +1841,0.034601229,0.426470225,0,0,2.490489852,0,0.024856862,0.010071225,0,0,0,0,0,104.84789,0,4263.137,39.38162317,402.3727418,0,0,0,0,0,0,4.11E-06,0,0,3.37E-04,0,0.30065432,9.249453202,65.94544518,4.089445548,17.74554357,0,1916.264207,0.007723273,0,0 +1842,0.03663998,0.434316049,0,0,2.449170469,0,0.024856862,0.010070485,0,0,0,0,0,104.84034,0,4262.7403,39.61872888,396.9951221,0,0,0,0,0,0,4.14E-06,0,0,3.41E-04,0,0.30633436,9.261381852,64.92167359,3.936168061,17.59096172,0,1931.462508,0.007723273,0,0 +1843,0.037450386,0.442306214,0,0,2.411136271,0,0.024856862,0.010071964,0,0,0,0,0,104.85726,0,4263.6297,39.65326382,389.7367809,0,0,0,0,0,0,4.18E-06,0,0,3.45E-04,0,0.31212171,9.185852612,63.42406091,3.846066212,17.21821832,0,1929.660398,0.007723273,0,0 +1844,0.039846973,0.450443374,0,0,2.443825896,0,0.024856862,0.010071225,0,0,0,0,0,104.85117,0,4263.3094,40.04426499,392.7074417,0,0,0,0,0,0,4.22E-06,0,0,3.49E-04,0,0.318018395,9.178913526,63.7624543,3.965309781,17.1801219,0,1991.445647,0.007723273,0,0 +1845,0.043792129,0.458730235,0,0,2.471371875,0,0.024856862,0.010071225,0,0,0,0,0,104.83257,0,4262.3319,40.66967667,397.850056,0,0,0,0,0,0,4.25E-06,0,0,3.53E-04,0,0.324026483,9.307905911,64.68556723,3.957876345,17.5993633,0,2080.381092,0.007723273,0,0 +1846,0.044197374,0.46716955,0,0,2.471198742,0,0.024856862,0.010071225,0,0,0,0,0,104.82423,0,4261.8933,40.97519975,395.9082622,0,0,0,0,0,0,4.29E-06,0,0,3.57E-04,0,0.330148076,9.302498358,64.24405153,3.94954154,17.39887857,0,2072.290434,0.007723273,0,0 +1847,0.047464619,0.475764124,0,0,2.521115228,0,0.024856862,0.010071225,0,0,0,0,0,104.82758,0,4262.0693,41.61647168,402.9851575,0,0,0,0,0,0,4.32E-06,0,0,3.61E-04,0,0.336385321,9.401962019,65.44362075,4.0405661,17.76051419,0,2154.230603,0.007723273,0,0 +1848,0.047117807,0.484516814,0,0,2.5773718,1.49E-05,0.024856862,0.010070485,0,0,0,0,0,104.78829,0,4260.004,42.44947063,413.5582929,0,0,0,0,0,0,4.36E-06,0,0,3.65E-04,0,0.342740401,9.573238567,67.39824375,4.1550565,18.30069373,0,2204.416735,0.007723273,0,0 +1849,0.048851442,0.493430528,0,0,2.552394089,1.20E-04,0.024856862,0.010071964,0,0,0,0,0,104.81678,0,4261.5016,42.63396461,408.9399341,0,0,0,0,0,0,4.39E-06,0,0,3.69E-04,0,0.349215542,9.543358834,66.42707154,4.087020956,18.07478627,0,2224.89572,0.007723273,0,0 +1850,0.051384895,0.502508228,0,0,2.571124479,2.25E-04,0.024856862,0.010071225,0,0,0,0,0,104.93295,0,4267.6083,43.14236365,411.4628743,0,0,0,0,0,0,4.44E-06,0,0,3.74E-04,0,0.355813014,9.604162557,66.78304875,4.096904208,18.22682479,0,2275.776711,0.007723273,0,0 +1851,0.051562308,0.494656367,0,0,2.526692589,2.41E-04,0.024856862,0.010071225,0,0,0,0,0,104.96457,0,4269.2706,43.15191371,402.2448153,0,0,0,0,0,0,4.48E-06,0,0,3.78E-04,0,0.363793441,9.478471328,64.95004659,4.010397678,17.72630049,0,2256.815147,0.007723273,0,0 +1852,0.05364238,0.550685869,0,0,2.50763416,2.42E-04,0.024856862,0.010071225,0,0,0,0,0,104.98199,0,4270.1861,43.34412933,397.49852,0,0,0,0,0,0,4.51E-06,0,0,3.83E-04,0,0.372424224,9.424520247,63.95789986,3.958451611,17.47926155,0,2277.634405,0.007723273,0,0 +1853,0.055952349,0.548631086,0,0,2.527811743,2.43E-04,0.024856862,0.010071225,0,0,0,0,0,104.9693,0,4269.5191,43.88435963,400.3388041,0,0,0,0,0,0,4.55E-06,0,0,3.87E-04,0,0.380109709,9.493187126,64.44555418,3.968326235,17.65848988,0,2326.420616,0.007723273,0,0 +1854,0.065895655,0.546739774,0,0,2.610048543,2.44E-04,0.024856862,0.010071225,0,0,0,0,0,104.9226,0,4267.0641,44.80907906,413.3991315,0,0,0,0,0,0,4.58E-06,0,0,3.90E-04,0,0.388118038,9.708926054,66.79469522,4.086374133,18.34043133,0,2535.158195,0.007723273,0,0 +1855,0.066560595,0.543758287,0,0,2.593264313,2.45E-04,0.024856862,0.010070485,0,0,0,0,0,104.95064,0,4268.5385,44.9570539,408.1104539,0,0,0,0,0,0,4.62E-06,0,0,3.95E-04,0,0.395154931,9.60821845,65.65156398,4.071657216,17.9916486,0,2531.882071,0.007723273,0,0 +1856,0.071195717,0.549725266,0,0,2.573430007,2.47E-04,0.024856862,0.010071964,0,0,0,0,0,104.92886,0,4267.3934,45.32147323,404.8549167,0,0,0,0,0,0,4.65E-06,0,0,3.98E-04,0,0.401213616,9.648967408,65.0425347,3.941501863,17.95411805,0,2598.32335,0.007723273,0,0 +1857,0.071893947,0.555060913,0,0,2.636452577,2.49E-04,0.024856862,0.010071225,0,0,0,0,0,104.94976,0,4268.4922,46.01300694,414.6731918,0,0,0,0,0,0,4.69E-06,0,0,4.03E-04,0,0.40752619,9.717987449,66.72779877,4.159141007,18.29156565,0,2646.996287,0.007723273,0,0 +1858,0.07302816,0.55973691,0,0,2.660122642,2.51E-04,0.024856862,0.010071225,0,0,0,0,0,104.93987,0,4267.9722,46.54057729,419.0140236,0,0,0,0,0,0,4.73E-06,0,0,4.07E-04,0,0.412517456,9.773872717,67.47060376,4.240872485,18.4792763,0,2684.853418,0.007723273,0,0 +1859,0.077852113,0.567385369,0,0,2.64820325,2.53E-04,0.024856862,0.010071225,0,0,0,0,0,104.91443,0,4266.635,46.94962615,416.2997485,0,0,0,0,0,0,4.76E-06,0,0,4.10E-04,0,0.416997408,9.815633788,66.95694734,4.119710729,18.44950598,0,2765.351504,0.007723273,0,0 +1860,0.08580579,0.57190571,0,0,2.648404731,2.55E-04,0.024856862,0.010810676,0,0,0,0,0,104.89112,0,4265.4096,47.37614023,416.0639966,0,0,0,0,0,0,4.79E-06,0,0,4.14E-04,0,0.420752578,9.868462594,66.84953493,4.060976263,18.520468,0,2898.377784,0.007723273,0,0 +1861,0.090437572,0.583095346,0,0,2.670268663,2.57E-04,0.024856862,0.010810691,0,0,0,0,0,104.94268,0,4268.1198,48.2346867,417.2441372,0,0,0,0,0,0,4.83E-06,0,0,4.19E-04,0,0.42335986,9.857135646,66.88575551,4.161212988,18.43711983,0,2971.278843,0.007723273,0,0 +1862,0.091865591,0.522956563,0,0,2.648564983,2.60E-04,0.024856862,0.010071254,0,0,0,0,0,104.93302,0,4267.612,49.13056212,414.1628066,0,0,0,0,0,0,4.87E-06,0,0,4.23E-04,0,0.425968395,9.918881972,66.35896016,4.042449359,18.41589321,0,2976.388043,0.007723273,0,0 +1863,0.097488554,0.523134297,0,0,2.629269514,2.62E-04,0.024856862,0.010071254,0,0,0,0,0,104.9509,0,4268.552,49.71022253,408.1224194,0,0,0,0,0,0,4.91E-06,0,0,4.27E-04,0,0.428432683,9.868665854,65.0096354,3.971519356,18.09141101,0,3064.446907,0.007723273,0,0 +1864,0.104725139,0.523481383,0,0,2.667755634,2.65E-04,0.024856862,0.010071254,0,0,0,0,0,104.94467,0,4268.2247,50.66032473,411.3310643,0,0,0,0,0,0,4.94E-06,0,0,4.31E-04,0,0.431014196,9.887134077,65.39906664,4.087458726,18.0938173,0,3193.218259,0.007723273,0,0 +1865,0.110936319,0.524250384,0,0,2.720201066,2.68E-04,0.024856862,0.010810706,0,0,0,0,0,104.93017,0,4267.4623,51.9800751,420.489005,0,0,0,0,0,0,4.98E-06,0,0,4.35E-04,0,0.433438772,10.07353478,67.10347351,4.157661467,18.66656838,0,3327.080176,0.007723273,0,0 +1866,0.114738508,0.524386363,0,0,2.710298337,2.71E-04,0.024856862,0.01081072,0,0,0,0,0,104.92398,0,4267.1368,52.74699293,417.1011849,0,0,0,0,0,0,5.01E-06,0,0,4.39E-04,0,0.435744776,10.06454912,66.37528156,4.133671178,18.39468019,0,3388.258078,0.007723273,0,0 +1867,0.12258204,0.522876455,0,0,2.761022671,2.74E-04,0.024856862,0.010070544,0,0,0,0,0,104.93094,0,4267.5026,53.94102178,424.2969753,0,0,0,0,0,0,5.05E-06,0,0,4.43E-04,0,0.438210649,10.1891331,67.66026449,4.231180961,18.76835617,0,3565.435535,0.007723273,0,0 +1868,0.125609442,0.521415398,0,0,2.825140562,2.77E-04,0.024856862,0.010072023,0,0,0,0,0,104.89186,0,4265.4483,55.28767356,434.9302283,0,0,0,0,0,0,5.08E-06,0,0,4.47E-04,0,0.441434256,10.37220092,69.64729381,4.363304735,19.30124757,0,3668.308732,0.007723273,0,0 +1869,0.133291522,0.519770898,0,0,2.785004317,2.81E-04,0.024856862,0.010810735,0,0,0,0,0,104.93014,0,4267.4609,55.83359728,426.4036167,0,0,0,0,0,0,5.12E-06,0,0,4.51E-04,0,0.443908266,10.31106127,67.92949559,4.245329954,18.88882504,0,3791.462745,0.007723273,0,0 +1870,0.136674384,0.51867186,0,0,2.831200782,2.84E-04,0.024856862,0.01081075,0,0,0,0,0,104.89317,0,4265.5174,56.99659231,433.2287624,0,0,0,0,0,0,5.15E-06,0,0,4.55E-04,0,0.446639961,10.44102397,69.12187694,4.32346865,19.25812075,0,3887.529335,0.007723273,0,0 +1871,0.145249161,0.538815215,0,0,2.797830347,2.88E-04,0.024856862,0.010071314,0,0,0,0,0,104.92871,0,4267.3856,57.57401422,425.1606513,0,0,0,0,0,0,5.19E-06,0,0,4.59E-04,0,0.454335934,10.3694977,67.42862358,4.269404037,18.76177377,0,4016.032279,0.007723273,0,0 +1872,0.160346513,0.624237802,0,0,2.771292694,2.92E-04,0.024856862,0.010810765,0,0,0,0,0,104.95075,0,4268.5441,58.18710545,417.7442734,0,0,0,0,0,0,5.23E-06,0,0,4.63E-04,0,0.470862622,10.33038424,65.84553711,4.178709817,18.36534165,0,4250.256916,0.007723273,0,0 +1873,0.170095482,0.635197776,0,0,2.841633848,2.96E-04,0.024856862,0.01081078,0,0,0,0,0,104.93223,0,4267.5705,59.62016165,429.280289,0,0,0,0,0,0,5.26E-06,0,0,4.67E-04,0,0.49389425,10.56453512,67.99437045,4.309987324,18.9372989,0,4473.449628,0.007723273,0,0 +1874,0.161012643,0.642458922,0,0,2.86805891,3.00E-04,0.024856862,0.010810794,0,0,0,0,0,104.88493,0,4265.0843,60.88850035,435.80418,0,0,0,0,0,0,5.30E-06,0,0,4.71E-04,0,0.521735812,10.75161101,69.34908007,4.369596918,19.30481072,0,4382.176552,0.007723273,0,0 +1875,0.173259068,0.650321509,0,0,2.833489105,3.05E-04,0.024856862,0.010810809,0,0,0,0,0,104.93101,0,4267.5065,61.4471703,426.8934955,0,0,0,0,0,0,5.33E-06,0,0,4.75E-04,0,0.552163614,10.66354523,67.4820886,4.311546236,18.75387609,0,4552.510356,0.007723273,0,0 +1876,0.175938232,0.65804039,0,0,2.843125267,3.09E-04,0.024856862,0.010810824,0,0,0,0,0,104.90175,0,4265.968,62.60294811,429.4805477,0,0,0,0,0,0,5.37E-06,0,0,4.79E-04,0,0.58288316,10.83189303,68.07266489,4.273649915,19.00214066,0,4640.322706,0.007723273,0,0 +1877,0.179825348,0.664694086,0,0,2.881579173,3.14E-04,0.024856862,0.010810839,0,0,0,0,0,104.92824,0,4267.3608,63.64524259,434.060346,0,0,0,0,0,0,5.41E-06,0,0,4.83E-04,0,0.612226706,10.8970216,68.77838073,4.413505724,19.0890591,0,4762.604755,0.007723273,0,0 +1878,0.180776983,0.671585762,0,0,2.905036494,3.19E-04,0.024856862,0.010810853,0,0,0,0,0,104.92472,0,4267.1759,64.71120383,437.9599498,0,0,0,0,0,0,5.44E-06,0,0,4.87E-04,0,0.637718424,10.99894534,69.46979574,4.503130841,19.22817131,0,4806.316495,0.007723273,0,0 +1879,0.193175438,0.678615294,0,0,2.92925864,3.23E-04,0.024856862,0.010810868,0,0,0,0,0,104.88028,0,4264.8396,65.90279841,440.8517591,0,0,0,0,0,0,5.47E-06,0,0,4.91E-04,0,0.658926777,11.18150569,70.08572002,4.447158396,19.48731539,0,5054.634873,0.007723273,0,0 +1880,0.219340005,0.684857424,0,0,2.921172062,3.29E-04,0.024856862,0.010810144,0,0,0,0,0,104.88174,0,4264.9162,66.6649843,437.3657275,0,0,0,0,0,0,5.51E-06,0,0,4.95E-04,0,0.672777776,11.21057035,69.18788119,4.386751757,19.32682128,0,5476.691841,0.007723273,0,0 +1881,0.22522318,0.722626203,0,0,2.962877226,3.34E-04,0.024856862,0.011551088,0,0,0,0,0,104.92914,0,4267.4079,67.70670095,440.9737248,0,0,0,0,0,0,5.55E-06,0,0,4.99E-04,0,0.680636704,11.27474846,69.70896889,4.531822011,19.32716624,0,5655.562653,0.007723273,0,0 +1882,0.236948997,0.674378608,0,0,2.944345851,3.39E-04,0.024856862,0.011550379,0,0,0,0,0,104.92759,0,4267.3266,68.57787524,436.0786301,0,0,0,0,0,0,5.59E-06,0,0,5.04E-04,0,0.689255681,11.34322096,68.75016749,4.409841205,19.15816229,0,5878.580768,0.007723273,0,0 +1883,0.250894677,0.681454028,0,0,2.918084088,3.45E-04,0.024856862,0.010810957,0,0,0,0,0,104.95902,0,4268.979,69.1859791,428.2212034,0,0,0,0,0,0,5.62E-06,0,0,5.08E-04,0,0.695872552,11.30107278,67.06254476,4.344707595,18.70936137,0,6136.750815,0.007723273,0,0 +1884,0.252849902,0.684683542,0,0,2.97815874,3.50E-04,0.024856862,0.010810972,0,0,0,0,0,104.93535,0,4267.7345,70.48060515,436.5183492,0,0,0,0,0,0,5.66E-06,0,0,5.12E-04,0,0.70169045,11.46377857,68.59402326,4.507763748,19.00988998,0,6243.347605,0.007723273,0,0 +1885,0.254442991,0.690863781,0,0,2.987658653,3.56E-04,0.024856862,0.011550438,0,0,0,0,0,104.93798,0,4267.8727,71.60546241,438.1415385,0,0,0,0,0,0,5.69E-06,0,0,5.16E-04,0,0.707890871,11.60315357,68.94977818,4.492846371,19.20686906,0,6294.938313,0.007723273,0,0 +1886,0.258326127,0.691934912,0,0,3.000148376,3.62E-04,0.024856862,0.011550467,0,0,0,0,0,104.9357,0,4267.7531,72.58254388,437.7333269,0,0,0,0,0,0,5.73E-06,0,0,5.20E-04,0,0.712632779,11.67579747,68.86926284,4.534738954,19.06781958,0,6353.027294,0.007723273,0,0 +1887,0.270973326,0.691885463,0,0,3.044590075,3.68E-04,0.024856862,0.011550497,0,0,0,0,0,104.94903,0,4268.4538,73.77743063,443.1077381,0,0,0,0,0,0,5.77E-06,0,0,5.24E-04,0,0.71821666,11.82565523,69.79403942,4.618994874,19.32845364,0,6605.766965,0.007723273,0,0 +1888,0.299024069,0.691539784,0,0,3.123484052,3.74E-04,0.024856862,0.011550526,0,0,0,0,0,104.91459,0,4266.6433,75.11035553,452.502308,0,0,0,0,0,0,5.80E-06,0,0,5.28E-04,0,0.724224235,12.04162329,71.42723744,4.741896917,19.78574643,0,7182.264809,0.007723273,0,0 +1889,0.29939589,0.691049208,0,0,3.104668338,3.81E-04,0.024856862,0.011550556,0,0,0,0,0,104.95877,0,4268.9657,75.92960019,448.6908696,0,0,0,0,0,0,5.84E-06,0,0,5.32E-04,0,0.730764112,12.07532791,70.65718772,4.727164288,19.55277705,0,7178.592239,0.007723273,0,0 +1890,0.32528597,0.68776294,0,0,3.159194949,3.87E-04,0.024856862,0.011550586,0,0,0,0,0,104.9317,0,4267.5425,77.07862319,453.8990323,0,0,0,0,0,0,5.87E-06,0,0,5.36E-04,0,0.755661554,12.22188071,71.47659717,4.807916688,19.77806486,0,7728.431301,0.007723273,0,0 +1891,0.340453909,0.684411407,0,0,3.125180696,3.94E-04,0.024856862,0.011550615,0,0,0,0,0,104.97344,0,4269.7366,77.68229292,444.3827318,0,0,0,0,0,0,5.91E-06,0,0,5.40E-04,0,0.766996007,12.1596402,69.53172191,4.743306066,19.19967303,0,8025.900173,0.007723273,0,0 +1892,0.342946092,0.69893132,0,0,3.110528365,4.01E-04,0.024856862,0.011550645,0,0,0,0,0,104.99082,0,4270.6504,78.54558089,439.808659,0,0,0,0,0,0,5.95E-06,0,0,5.45E-04,0,0.778272468,12.19914652,68.66391959,4.695682305,18.94952176,0,8166.143155,0.007723273,0,0 +1893,0.33787039,0.699713125,0,0,3.125430895,4.08E-04,0.024856862,0.012290126,0,0,0,0,0,104.97994,0,4270.0783,79.81501329,443.3506558,0,0,0,0,0,0,5.99E-06,0,0,5.49E-04,0,0.789729823,12.37945386,69.48705802,4.715239733,19.1784562,0,8120.644735,0.007723273,0,0 +1894,0.351124504,0.715581396,0,0,3.205110618,4.15E-04,0.024856862,0.01229017,0,0,0,0,0,104.93101,0,4267.5063,81.38345626,456.6960325,0,0,0,0,0,0,6.02E-06,0,0,5.52E-04,0,0.802004637,12.66238559,71.90804381,4.888948538,19.83612848,0,8411.388473,0.007723273,0,0 +1895,0.371712037,0.720945096,0,0,3.216163845,4.22E-04,0.024856862,0.011550763,0,0,0,0,0,104.96751,0,4269.4251,82.23116014,453.551885,0,0,0,0,0,0,6.06E-06,0,0,5.57E-04,0,0.812887633,12.67244423,71.15178658,4.919171254,19.52250048,0,8846.66701,0.007723273,0,0 +1896,0.383674818,0.723440788,0,0,3.170768747,4.30E-04,0.024856862,0.012290244,0,0,0,0,0,104.96751,0,4269.4252,83.00005426,444.0944278,0,0,0,0,0,0,6.09E-06,0,0,5.61E-04,0,0.824102858,12.72059369,69.42267706,4.733994615,19.17728772,0,9089.598433,0.007723273,0,0 +1897,0.401981164,0.725878271,0,0,3.268702112,4.37E-04,0.024856862,0.012290288,0,0,0,0,0,104.99693,0,4270.9718,84.39253635,456.4122055,0,0,0,0,0,0,6.13E-06,0,0,5.65E-04,0,0.834637127,12.8902171,71.5467325,5.026760132,19.58218288,0,9520.393854,0.007723273,0,0 +1898,0.42330421,0.72837657,0,0,3.296870259,4.45E-04,0.02485618,0.012290333,0,0,0,0,0,105.01512,0,4271.9281,85.36127162,456.6037674,0,0,0,0,0,0,6.17E-06,0,0,5.69E-04,0,0.844305316,12.95906823,71.45665952,5.098029535,19.50168111,0,10010.09583,0.007723236,0,0 +1899,0.463317192,0.728556158,0,0,3.355831345,4.86E-04,0.024857703,0.012290377,0,0,0,0,0,104.97653,0,4269.8993,86.70543387,462.1035994,0,0,0,0,0,0,6.20E-06,0,0,5.73E-04,0,0.853783366,13.20706844,72.46072256,5.094979384,19.86870993,0,10838.11345,0.007723233,0,0 +1900,0.488155862,0.73057236,0,0,3.361821037,0.002392668,0.024856437,0.028558348,0,0,0,0,0,104.98481,0,4270.3344,87.61328845,459.5444669,0,0,0,0,0,0,6.24E-06,0,0,5.77E-04,0,0.863169654,13.27666955,71.90656631,5.089168388,19.75078793,0,11348.7275,0.007723268,0,0 +1901,0.504485719,0.796906313,0,0,3.382952935,0.004820097,0.024857442,0.047784449,0,0,0,0,0,105.04131,0,4273.3046,88.39116711,457.6168305,0,0,0,0,0,0,6.28E-06,0,0,5.82E-04,0,0.871405959,13.3014099,71.63263161,5.202144138,19.48762217,0,11775.2552,0.007723268,0,0 +1902,0.519345117,0.800278636,0,0,3.38154147,0.005778122,0.024856062,0.050743008,0,0,0,0,0,105.04898,0,4273.708,89.26282464,455.0261768,0,0,0,0,0,0,6.32E-06,0,0,5.86E-04,0,0.881215447,13.41248803,71.24149846,5.179688037,19.3580615,0,12100.54877,0.007723268,0,0 +1903,0.566454621,0.829571146,0,0,3.389386332,0.006957613,0.024857979,0.05591998,0,0,0,0,0,105.09555,0,4276.1561,89.89074057,449.9625304,0,0,0,0,0,0,6.36E-06,0,0,5.90E-04,0,0.890660734,13.43752052,70.25376393,5.190103458,19.03059788,0,13044.15816,0.007723268,0,0 +1904,0.575152133,0.856100074,0,0,3.4640583,0.009436339,0.024855289,0.068491568,0,0,0,0,0,105.07939,0,4275.3063,91.35674943,462.621765,0,0,0,0,0,0,6.39E-06,0,0,5.94E-04,0,0.900998672,13.7314717,72.88437625,5.400226563,19.65611973,0,13274.43719,0.007723268,0,0 +1905,0.612296247,0.883090418,0,0,3.525334738,0.013412831,0.024859105,0.087718467,0,0,0,0,0,105.08907,0,4275.8152,92.40132432,467.4401288,0,0,0,0,0,0,6.43E-06,0,0,5.99E-04,0,0.911796751,13.85510547,73.70973522,5.570897784,19.75296716,0,14100.97838,0.007723268,0,0 +1906,0.644276357,0.913945895,0,0,3.54932448,0.018196454,0.024853655,0.11138246,0,0,0,0,0,105.10645,0,4276.7286,93.24998316,466.4356479,0,0,0,0,0,0,6.47E-06,0,0,6.03E-04,0,0.922864309,13.95964537,73.46173851,5.607842107,19.60693136,0,14766.45012,0.007723268,0,0 +1907,0.726915977,0.922997028,0,0,3.674457368,0.016966195,0.025812945,0.10398923,0,0,0,0,0,105.14627,0,4278.822,94.56080194,480.3174564,0,0,0,0,0,0,6.51E-06,0,0,6.07E-04,0,0.933557019,14.21677499,76.00444514,5.92575152,20.14449075,0,16264.98721,0.007723268,0,0 +1908,0.703232591,0.932378464,0,0,3.67587664,0.021404879,0.029231937,0.12765503,0,0,0,0,0,105.12414,0,4277.6586,95.71237193,482.582634,0,0,0,0,0,0,6.54E-06,0,0,6.11E-04,0,0.943978146,14.40742286,76.856238,5.975251674,20.34218955,0,15590.71312,0.007723268,0,0 +1909,0.7293531,0.939463987,0,0,3.690048662,0.036714367,0.765086,0.21121463,0,0,0,0,0,105.16533,0,4279.824,96.4666946,480.6894688,0,0,0,0,0,0,6.58E-06,0,0,6.16E-04,0,0.954146693,14.46573428,76.4408771,6.041715332,20.10967131,0,16371.00547,0.007723268,0,0 +1910,0.765726395,0.945592087,0,0,3.767608107,0.042342327,1.0366888,0.24301505,0,0,0,0,0,105.14442,0,4278.7248,97.77187103,491.4713622,0,0,0,0,0,0,6.62E-06,0,0,6.20E-04,0,0.964867509,14.73060447,78.48124343,6.225241543,20.6023284,0,17123.07052,0.007723268,0,0 +1911,0.781014654,0.887403675,0,0,3.725917532,0.047217079,0.55672031,0.27037941,0,0,0,0,0,105.20214,0,4281.7592,98.42938116,482.3736484,0,0,0,0,0,0,6.66E-06,0,0,6.24E-04,0,0.976172007,14.67937454,76.73370569,6.205453711,20.00760743,0,17244.18549,0.007723268,0,0 +1912,0.819966191,0.85083987,0,0,3.709100468,0.055977137,1.3372385,0.31844894,0,0,0,0,0,105.23472,0,4283.4718,99.26614632,477.9889215,0,0,0,0,0,0,6.70E-06,0,0,6.29E-04,0,0.99242033,14.7136648,75.83160819,6.219463911,19.68089243,0,17989.19691,0.007723268,0,0 +1913,0.88953397,0.82034848,0,0,3.787939036,0.05934571,2.7874772,0.33694139,0,0,0,0,0,105.25437,0,4284.5046,100.6125584,488.2676035,0,0,0,0,0,0,6.74E-06,0,0,6.33E-04,0,1.011440097,14.92180765,77.5799616,6.45387962,20.00732869,0,19072.75319,0.007723268,0,0 +1914,0.811491369,0.809204505,0,0,3.764418792,0.064801984,4.5655912,0.36726542,0,0,0,0,0,105.19867,0,4281.5767,102.2840587,494.4978826,0,0,0,0,0,0,6.77E-06,0,0,6.36E-04,0,1.032129514,15.24149746,79.77807343,6.499176733,20.59248109,0,17594.43406,0.007723268,0,0 +1915,0.802991659,0.797401958,0,0,3.722337783,0.084000629,6.2098372,0.47153519,0,0,0,0,0,105.2716,0,4285.4105,103.0579197,484.2476849,0,0,0,0,0,0,6.81E-06,0,0,6.41E-04,0,1.054619583,15.23213103,78.35040062,6.482772073,20.06142458,0,17573.11604,0.007723268,0,0 +1916,0.86533079,0.799710226,0,0,3.744207069,0.10465075,5.9968917,0.58467971,0,0,0,0,0,105.29863,0,4286.831,104.0889435,482.954266,0,0,0,0,0,0,6.85E-06,0,0,6.46E-04,0,1.077791382,15.34284718,78.27985155,6.601680858,19.90829861,0,19065.48428,0.007723268,0,0 +1917,0.896621585,0.802745574,0,0,3.826396856,0.11034348,5.1585271,0.61870744,0,0,0,0,0,105.37275,0,4290.7275,105.4397415,492.9600448,0,0,0,0,0,0,6.89E-06,0,0,6.51E-04,0,1.100255613,15.500365,80.45481807,7.003710361,20.17756104,0,19906.99893,0.007723268,0,0 +1918,0.887395559,0.80603585,0,0,3.83059738,0.10461425,4.2721672,0.58914082,0,0,0,0,0,105.37311,0,4290.7462,106.7459316,496.2420731,0,0,0,0,0,0,6.93E-06,0,0,6.55E-04,0,1.121226709,15.70439103,81.61294814,7.118191256,20.36895158,0,19743.24497,0.007723268,0,0 +1919,0.780860402,0.811159148,0,0,3.722641135,0.10155164,3.196035,0.57214502,0,0,0,0,0,105.33647,0,4288.8202,108.095107,490.9794171,0,0,0,0,0,0,6.96E-06,0,0,6.59E-04,0,1.140233478,15.91565271,81.67724386,6.926922673,20.36863821,0,16994.78687,0.007723268,0,0 +1920,0.903060101,0.813518455,0,0,3.813010121,0.071874804,4.0059497,0.41169313,0,0,0,0,0,105.40157,0,4292.2427,109.1336385,498.8745999,0,0,0,0,0,0,7.01E-06,0,0,6.64E-04,0,1.157633765,16.03665614,82.96992111,7.318815146,20.4023951,0,18802.69892,0.007723268,0,0 +1921,0.793835864,0.861299333,0,0,3.661222702,0.05599481,6.3575755,0.32444592,0,0,0,0,0,105.42979,0,4293.7261,109.809348,486.6136242,0,0,0,0,0,0,7.05E-06,0,0,6.68E-04,0,1.173417685,16.0101613,81.18725519,7.146950074,19.84610877,0,16049.70593,0.007723268,0,0 +1922,0.843896663,0.853369204,0,0,3.658333723,0.10093674,7.5196689,0.56921203,0,0,0,0,0,105.47367,0,4296.0327,110.4858104,484.8273418,0,0,0,0,0,0,7.09E-06,0,0,6.73E-04,0,1.188779372,16.07300912,80.53069431,7.252038815,19.4742784,0,16950.896,0.007723268,0,0 +1923,0.959559001,0.86148441,0,0,3.88124621,0.13753371,8.1995609,0.77479139,0,0,0,0,0,105.54539,0,4299.8026,112.2535641,514.2343951,0,0,0,0,0,0,7.13E-06,0,0,6.78E-04,0,1.205120978,16.4693053,86.27583424,8.013836332,20.41782521,0,19723.67202,0.007723268,0,0 +1924,0.970359441,0.867663331,0,0,3.774809016,0.14595489,10.064032,0.82730698,0,0,0,0,0,105.55899,0,4300.5175,112.633506,499.0974144,0,0,0,0,0,0,7.17E-06,0,0,6.82E-04,0,1.222219042,16.41564777,83.21123114,7.790296572,19.77882376,0,19521.89407,0.007723268,0,0 +1925,0.983699121,0.870847171,0,0,3.790606982,0.15281139,9.887985,0.86947278,0,0,0,0,0,105.60265,0,4302.8128,113.6704269,502.6957688,0,0,0,0,0,0,7.21E-06,0,0,6.87E-04,0,1.237791101,16.84168156,84.06174423,7.983263812,19.75345484,0,19738.88984,0.007723268,0,0 +1926,0.971193664,0.875288161,0,0,3.724383638,0.16877181,10.020584,0.96266008,0,0,0,0,0,105.65209,0,4305.4116,114.5456303,499.0418204,0,0,0,0,0,0,7.25E-06,0,0,6.92E-04,0,1.252612106,17.14732508,84.16877083,8.057166102,19.57302011,0,19808.91323,0.007723268,0,0 +1927,1.071982298,0.914815243,0,0,3.850357382,0.19366311,13.691728,1.1076116,0,0,0,0,0,105.65063,0,4305.3352,115.74748,515.0910884,0,0,0,0,0,0,7.29E-06,0.004945027,0,6.96E-04,0,1.266765284,17.43232174,86.52753525,8.499773807,19.87550986,0,21139.78229,0.007723268,0,0 +1928,1.076174298,0.918261907,0,0,3.828134932,0.2132805,16.914307,1.2252077,0.020814729,0,0,0,0,105.59392,0,4302.3537,116.7958666,515.8400889,0,0,0,0,0,0,7.32E-06,0.030139896,0,6.99E-04,0,1.279785085,17.62700285,87.11586337,8.569023695,19.91593076,0,21065.04746,0.007723269,0,0 +1929,1.156951387,0.945536477,0,0,3.890215994,0.20802541,19.38339,1.2037865,0.33502494,0,0,0,0,105.60372,0,4297.9849,118.0199977,527.0535755,0,0,0,0,0,0,7.35E-06,0.003329301,0,7.02E-04,0,1.290827582,17.86727278,89.37670247,8.894481948,20.27497394,0,22402.21952,0.007723266,0,0 +1930,1.072886478,1.022800884,0,0,3.907622806,0.17035764,20.571834,0.99750344,1.1701026,0,0,0,0,105.91829,0,4287.8382,119.6701788,535.0349028,0,0,0,0,0,0,7.36E-06,-0.026051043,0,7.03E-04,0,1.300370355,18.10997615,91.59573863,8.841770878,20.95238859,0,20792.33986,0.007723273,0,0 +1931,0.968671726,1.033130291,0,0,3.699193086,0.11326202,21.232329,0.6766021,1.6600329,0,0,0,0,106.6887,0,4282.6938,119.9075078,504.8981345,0,0,0,0,0,0,7.38E-06,-0.003829208,0,7.06E-04,0,1.307318192,17.9582942,86.48531867,8.206316153,19.78298346,0,18348.146,0.007723259,0,0 +1932,0.880274393,0.934985061,0,0,3.701120519,0.085847633,23.837144,0.51911084,1.6167368,0,0,0,0,107.41813,0,4276.7559,121.4219873,510.1823315,0,0,0.005764349,0,0,0,7.40E-06,7.43E-04,0,7.08E-04,0,1.314106352,18.10001304,87.90725373,8.142484302,20.16181555,0,16151.1052,0.007723289,0,0 +1933,0.923452608,0.931801343,0,0,3.673991696,0.1016274,28.120028,0.61081444,1.6336582,0,0,0,0,108.09758,0,4271.2585,122.3437659,508.1160121,0,0,0.14482802,0,0,0,7.43E-06,8.08E-04,0,7.11E-04,0,1.319777787,18.14058312,87.73926442,8.102332977,20.01961331,0,16995.04081,0.007723222,0,0 +1934,1.000687974,0.920029755,0,0,3.817622407,0.15202423,34.519287,0.91252255,1.6505883,0,0,0,0,108.91202,0,4272.3774,123.9532999,528.033166,0,0,0.60639434,0,0,0,7.47E-06,8.78E-04,0,7.15E-04,0,1.326062979,18.32411359,91.49703968,8.603675585,20.70261784,0,18679.91277,0.007723374,0,0 +1935,1.050596869,0.918684315,0,0,3.826763235,0.22028466,40.132859,1.3303298,1.6675173,0,0,0,0,109.70014,0,4272.1486,124.8946044,529.4409406,0,0,0.97427321,0,0,0,7.50E-06,9.54E-04,0,7.19E-04,0,1.33245233,18.31731965,91.90214074,8.779424673,20.54319704,0,20077.94332,0.007723023,0,0 +1936,1.150366722,0.927069389,0,0,3.972008023,0.28820401,42.33712,1.7570203,1.6844464,0,0,0,0,110.56758,0,4275.9063,126.4647048,550.0398549,0,0,1.0455299,0,0,0,7.55E-06,0.001037276,0,7.24E-04,0,1.338689989,18.65286964,95.83484543,9.362043925,21.16418654,0,21597.57179,0.007723846,0,0 +1937,1.231103105,0.904516492,0,0,3.977215074,0.34372195,44.188471,2.1186454,1.7013755,0.006390022,0,0,0,111.3625,0,4275.9946,127.1823371,550.6109419,0,0,1.1131878,0,0,0,7.58E-06,0.001127477,0,7.28E-04,0,1.346525353,18.735883,95.84567433,9.575630542,20.85060471,0,23231.71203,0.00772185,0,0 +1938,1.161421971,0.907321542,0,0,3.879546431,0.39883954,49.06474,2.4891541,1.7183047,0.1328808,0,0,0,112.0603,0,4271.2734,127.905393,535.4268485,0,0,1.185033,0,0,0,7.61E-06,0.001225424,0,7.31E-04,0,1.355126677,18.72062801,93.23706062,9.133612085,20.283818,0,21542.97587,0.007728553,0,0 +1939,1.232613704,0.905880028,0,0,4.010820601,0.43390074,56.683054,2.745053,1.7352338,0.68779311,0,0,0,112.8293,0,4270.1197,129.5013568,554.5379171,0,0,1.2571398,0,0,0,7.64E-06,0.001332062,0,7.35E-04,0,1.366829172,18.98792969,97.34535423,9.632984019,21.02085333,0,23010.26881,0.11813875,0,0 +1940,1.332494478,0.893463629,0,0,4.026253626,0.50172554,67.980741,3.2190952,1.7521629,1.4928916,0,0,0,113.75015,0,4276.3916,130.1349943,550.4654056,0,0,1.3304594,0,0,0,7.69E-06,0.001448183,0,7.41E-04,0,1.379589207,18.93380648,96.49612887,9.961368881,20.56627575,0,25159.07412,0.21814961,0,0 +1941,1.35733239,0.876081403,0,0,4.050294267,0.64957282,81.740279,4.2240743,1.769092,2.2339929,0,0,0,114.54353,0,4282.9257,132.2180939,552.9500651,0,0,1.4028748,0,0,0,7.73E-06,0.00157415,0,7.45E-04,0,1.427063176,19.03403078,97.09407345,10.19371174,20.46203137,0,26113.9497,0.1951164,0,0 +1942,1.359049319,0.897314522,0,0,4.114193284,0.84353078,95.021136,5.585489,1.7860212,2.976471,0,0,0.19841173,115.26991,0,4303.7401,134.7060241,560.1841861,0,0,1.4745564,0,0,0,7.76E-06,0.001710955,0,7.48E-04,0,1.529818545,19.21018323,98.65719695,10.34548378,21.01419377,0,26702.04279,0.16898031,0,0 +1943,1.402945825,0.892124843,0,0,4.114085782,0.80476688,89.521615,5.4576739,1.8029502,3.7199961,0,0.056451758,4.3053247,116.04761,0,4331.4951,136.6296869,561.0185503,0,0,1.5467027,0,0,0,7.79E-06,0.001859737,0,7.52E-04,0,1.677793207,19.22648995,99.48634644,10.64406286,20.76469901,0,27110.34859,0.14684461,0,0 +1944,1.387913119,0.898318952,0,0,4.111269896,0.41764093,72.694302,2.9606569,1.8198794,4.4638059,0,0.97266311,16.545617,116.85265,0,4354.745,138.9310562,569.4275578,0,0,1.6191675,0,0,0,7.83E-06,0.002021507,0,7.56E-04,0,1.853743997,19.45467137,102.0083052,10.97214997,20.91812228,0,26578.15151,0.11439264,0,0 +1945,1.180916482,0.898822172,0,0,3.970406317,0.20111842,68.369262,1.5076942,1.8368084,5.2077233,0,3.4593405,24.846154,117.6118,0,4376.5008,141.022964,562.3881403,0,0,1.69101,0,0,0,7.86E-06,0.002197258,0,7.60E-04,0,2.046836624,19.53099873,102.3868629,10.81105837,20.63041519,0,23414.92286,0.080798572,0,0 +1946,1.294211066,0.982947007,0,0,3.971696435,0.27970458,74.717234,2.0726649,1.8537378,5.9856104,0,4.9404679,24.839378,118.39896,0,4399.6117,142.7064022,555.289963,0,0,1.7631908,0,0,0,7.89E-06,0.002388349,0,7.64E-04,0,2.242235208,19.68948842,102.6581835,10.80993836,20.3059335,0,23137.29124,0.064300427,0,0 +1947,1.449894938,1.013635265,0,0,4.004289599,0.34838359,84.081746,2.6369074,1.8706665,6.4443541,0,4.8390374,24.982371,119.2973,0,4428.0553,144.7944965,563.4037754,0,0,1.8372679,0,0,0,7.94E-06,0.002596315,0,7.69E-04,0,2.428654505,19.91609513,104.1573676,11.48967842,20.19099947,0.003372839,25978.58013,0.046731228,0,0 +1948,1.541746758,1.021788966,0,0,4.123520873,0.33316898,90.670686,2.6243892,1.8875961,6.6649072,0,4.8563661,24.987103,120.08364,0,4451.0369,147.2720295,586.53608,0,0,1.966277,0,0,0,7.98E-06,0.003327672,0,7.73E-04,0,2.589644896,20.34906056,108.0964174,12.19576499,20.65035706,0.023611977,27162.31675,0.020169381,0,0 +1949,1.51503408,1.032229109,0,0,4.095746551,0.31424196,91.962416,2.5926444,1.8955033,7.1640705,0,5.561141,27.295461,120.70601,0,4466.7618,150.2157149,588.4410387,0,0,1.6426278,0,0,0,7.99E-06,0.02463759,0,7.75E-04,0,2.714013981,20.9091959,109.1544258,11.86397123,21.08117938,0.063741035,26198.85137,-0.001578436,0,0 +1950,1.695680787,1.04543439,0,0,4.331260791,0.32876887,78.580053,2.8441101,1.9897329,7.4706053,0,8.1460574,32.673745,121.62274,0,4499.2896,152.2010084,619.9439709,0,0,1.0661465,0,0,0,8.05E-06,0.10531435,0,7.81E-04,0,2.786823806,21.60140457,113.8598472,13.13214183,22.10581056,0.16053368,29148.54682,2.43E-04,0,0 +1951,1.817356704,1.263788462,0,0,4.212336067,0.33222262,70.47669,3.0430784,2.1685287,7.5542237,0,12.050138,36.815853,122.51807,0.014330518,4529.1876,155.2719352,593.1994506,0,0,1.0527789,0,0,0,8.09E-06,0.2343219,0,7.85E-04,0,2.830792646,21.71096706,109.0909544,13.15219389,20.39818818,0.23983988,30378.93497,0.001166432,0,0 +1952,1.85187593,1.291508658,0,0,4.278249967,0.32854487,76.508762,3.2228257,2.4120426,7.6734014,0,16.078842,40.441283,123.26435,0.21725302,4558.7052,160.5733576,606.95634,0,0,1.4414744,0,0,0,8.10E-06,0.3628351,0,7.87E-04,0,2.873469224,22.39378605,112.6182109,13.48661504,20.95793435,0.24565292,30772.87938,-0.002030065,0,0 +1953,1.905887196,1.288662579,0,0,4.400134891,0.31999622,81.681224,3.3863087,2.8478934,7.7034458,0,20.201055,45.581432,124.06078,1.3575508,4600.7084,165.6818323,623.9750548,0,0,2.100408,0,0,0,8.12E-06,0.48047903,0,7.90E-04,0,2.918473221,23.08627653,116.7765378,14.05062035,21.60093971,0.24572915,31392.44296,-2.28E-04,0,0 +1954,1.955325831,1.342683244,0,0,4.475107773,0.29457384,86.86347,3.4048632,3.2763156,7.760213,0,25.212381,51.892411,124.75392,3.6198833,4629.2231,170.3710079,628.9096635,0,0,2.8888848,0,0,0,8.14E-06,0.59576061,0,7.91E-04,0,2.965305231,23.5182693,118.7896929,14.35262782,21.65473895,0.24580572,31601.64062,-0.004070821,0,0 +1955,2.138786817,1.387820683,0,0,4.585745112,0.26311875,91.980019,3.3346824,3.6788015,7.6370702,0,30.727319,59.871881,125.74327,6.4848679,4666.3367,174.7404471,641.3267253,0,0,3.5564777,0,0,0,8.18E-06,0.70910415,0,7.96E-04,0,3.016004168,23.78869162,122.5425815,15.35988489,21.61194057,0.24588273,34555.40272,0.001049355,0,0 +1956,2.291039468,1.446283643,0,0,4.844401489,0.22075982,97.008491,3.0796375,4.2759912,7.5430316,0,33.546756,66.950489,126.58168,9.1561662,4699.2729,180.6711175,673.806229,0,0,4.5322658,0,0,0,8.21E-06,0.82044371,0,8.00E-04,0,3.06769313,24.39548109,129.82302,16.40773077,22.72448276,0.24595899,37118.77109,0.006640162,0,0 +1957,2.384773,1.477494579,0,0,5.084522572,0.18587639,102.11597,2.8571248,4.9612019,7.3765313,0,32.871446,72.204141,127.41838,11.488509,4733.2024,186.0555677,695.9496131,0,0,5.9875108,0,0,0,8.25E-06,0.92977447,0,8.03E-04,0,3.122765936,25.10938271,135.5915206,17.20228851,23.82634945,0.24603635,38873.75431,0.004342369,0,0 +1958,2.467095469,1.528597347,0,0,5.060488043,0.17928487,107.206,2.9954591,5.6330503,6.9087313,0,34.746284,80.925329,128.42262,14.781202,4771.3965,188.3855399,661.2854858,0,0,7.120204,0,0,0,8.29E-06,1.0371306,0,8.08E-04,0,3.184188319,25.26871426,129.2085836,17.04310474,22.2466504,0.2461131,39341.99136,0.002605294,1.53E-05,1.55E-04 +1959,2.603672914,1.473668289,0,0,5.186762349,0.18081021,112.29185,3.2476716,6.3880226,6.8760458,0,43.506257,93.983467,129.47587,18.063698,4808.726,192.6867573,665.4367222,0,0,8.0253807,0,0,0,8.33E-06,1.1424694,0,8.12E-04,0,3.250322629,25.78456832,131.2104974,17.51526633,22.13695045,0.30755864,41319.47351,8.68E-04,1.22E-04,0.001246036 +1960,2.728446849,1.461519532,0,0,5.288213084,0.17259465,117.2597,3.3209398,7.3201718,7.2392631,0,56.281481,107.5417,130.53321,21.750437,4847.0424,197.2611005,668.565663,0,0,9.5885732,0,0,0,8.37E-06,1.2458107,0,8.17E-04,0,3.323928526,26.12794679,133.3368149,18.13798676,22.06866314,0.4304021,42970.73471,-8.68E-04,2.31E-04,0.002375087 +1961,2.75210185,1.531158202,0,0,5.280187775,0.16861102,121.58986,3.4304351,8.4287849,7.4514735,0.001861801,70.618557,123.80387,131.26152,27.278298,4864.0212,205.1383413,701.0053453,0,0,11.884386,0,0,0,8.37E-06,1.346892,0,8.17E-04,0,3.545375735,26.8897385,143.5652635,18.73899699,23.37357314,0.55328481,48370.7476,-0.002605324,2.49E-04,0.003546415 +1962,2.868392579,1.520724684,0,0,5.268371109,0.17112099,125.71015,3.6249821,9.6127678,7.5805279,0.045181371,86.214551,144.89716,132.4011,32.049021,4895.6486,207.2122992,678.8492234,0,0,14.500089,0,0,0,8.41E-06,1.4460951,0,8.21E-04,0,3.678783292,27.3913443,140.105892,19.33292939,22.55009464,0.61483924,49373.46267,-0.004342521,2.53E-04,0.004920676 +1963,3.036186161,1.527209311,0,0,5.437875743,0.18314033,128.88013,3.9881367,10.949721,7.9110854,0.24720738,101.83231,167.67883,132.99126,37.52532,4904.2354,216.1922656,741.3196016,0,0,17.280228,0,0,0,8.39E-06,1.5429261,0,8.19E-04,0,3.803776307,28.74464761,156.130954,20.52084737,24.60921093,0.55366285,50918.54792,-0.007869931,3.52E-04,0.005972759 +1964,3.193585727,1.518253087,0,0,5.259909465,0.20130699,129.76929,4.4326257,12.657214,8.4778946,0.46848862,116.30072,189.8766,134.07707,49.914046,4933.087,216.556163,689.11146,0,0,20.771971,0,0,0,8.44E-06,1.6379776,0,8.24E-04,0,3.945754292,28.60741633,146.4547756,21.25062666,22.37762398,0.49245891,52831.63767,-7.60E-04,0.001030371,0.033580017 +1965,3.342046615,1.549410355,0,0,5.270010253,0.2250418,129.69213,4.9089192,14.528257,9.0358315,0.58010695,130.83984,213.3919,135.19804,70.507935,4953.0596,222.6664157,709.3122963,0,0,25.0603,0,0,0,8.46E-06,1.7308461,0,8.27E-04,0,4.115195266,29.97215368,153.4053912,22.08301054,22.64997293,0.4926084,54063.80178,0.015948649,0.002140689,0.11324642 +1966,3.50172055,1.551765281,0,0,5.285174796,0.26721734,129.70542,5.6248074,16.547774,9.5008952,0.77191369,147.99606,240.15802,136.46754,94.258765,4976.4474,226.3106958,710.9414665,0,0,30.477075,0,0,0,8.51E-06,1.8217969,0,8.32E-04,0,4.311197356,31.55306755,156.4949809,22.8477914,22.43429714,0.61550021,55269.31676,0.069786165,0.003103097,0.20275693 +1967,3.625966014,1.595865386,0,0,5.390458849,0.32052973,129.68847,6.3547572,18.918172,9.9208119,1.0373,169.42177,269.58286,137.66763,116.32544,4995.4184,232.3331465,746.2098209,0,0,36.036945,1.25E-05,0,6.90E-05,8.54E-06,1.9105949,0,8.37E-04,0,4.481777635,33.16777605,164.7753162,24.19623738,23.58529354,0.7384486,54762.8971,0.24404072,0.003754249,0.26151045 +1968,3.834595266,1.546993091,0,0,5.370373092,0.40423022,129.73308,7.3324415,21.713594,10.295172,1.3673824,195.13757,299.71437,139.24379,133.08156,5029.5667,235.3354027,740.4824182,0,0.009237978,40.359034,8.80E-05,0,4.86E-04,8.63E-06,1.9976935,0,8.46E-04,0,4.618299686,34.38157284,165.0957088,25.41081254,22.82579691,0.67731523,56868.37887,0.44305972,0.005543179,0.29037411 +1969,4.061567727,1.543708902,0,0,5.404091613,0.5206411,129.76058,8.4831718,24.938178,10.638634,1.7120901,220.72612,327.55328,140.05867,146.61896,5026.2804,239.1848516,747.0297315,0,0.18322115,44.144508,9.37E-05,0,5.04E-04,0.009824818,2.0817369,0,8.45E-04,0,4.732615323,34.96181251,169.6815713,26.06506901,22.10048951,0.67751619,58467.8108,0.55613635,0.03648951,0.30862539 +1970,4.323514044,1.531929069,0,0,5.549708797,0.6581692,129.69302,9.5318801,28.576904,11.00827,1.8909658,245.38621,354.60102,141.52757,173.56366,5048.3132,244.4183955,781.0375523,0,0.60795801,49.037394,2.47E-05,0,1.09E-04,0.036330653,2.1644992,0,8.52E-04,0,4.714190308,37.46957853,179.6859547,27.82408407,22.78022432,0.80047128,61529.77979,0.64373178,0.11813403,0.34789664 +1971,4.510244869,1.405554242,0,0,5.703748992,0.82992065,129.60227,10.711494,32.729139,11.452529,2.1402118,276.44309,387.53989,143.1196,217.72405,5067.5026,249.2895331,796.2029425,0,0.8564576,55.790888,1.33E-05,0,4.26E-05,0.064586906,2.2451174,0,8.59E-04,0,4.663522046,38.13342516,183.5355579,28.61726398,23.19511601,0.86210262,61716.79563,0.78786166,0.2232129,0.40686343 +1972,4.706494312,1.326937135,0,0,5.971153375,1.0559029,129.65777,12.24311,37.465523,11.97792,2.5517628,314.22879,427.68026,144.52172,267.60333,5079.1924,257.2102054,868.4735708,0,0.87667663,61.456633,1.35E-05,0,4.30E-05,0.082580189,2.3233295,0,8.64E-04,0,4.93074212,39.56446297,196.6655247,30.23622151,25.52743454,0.86237286,63465.10424,1.0951867,0.31882408,0.4721474 +1973,4.975651786,1.318385656,0,0,5.895831576,1.330787,129.79157,14.085332,42.979262,12.585161,2.92937,338.0693,454.71123,146.54158,301.85553,5118.3195,260.294725,826.0293132,0,0.82240702,65.420113,1.38E-05,0,5.50E-05,0.090214925,2.4006492,0,8.77E-04,0,5.050826137,39.95714271,186.5259319,31.24009688,23.45564811,0.92401065,66317.71189,1.5930673,0.39726303,0.54390644 +1974,4.948149198,1.290549,0,0,5.971643938,1.4191691,129.76026,14.311146,49.247959,13.447442,3.5184015,340.6055,453.22872,147.80664,327.35544,5113.8208,261.8082771,824.6214022,0,0.76119143,71.666995,1.40E-05,0,0.052416219,0.087063163,2.474116,0,8.78E-04,0,5.034419125,40.69211664,183.6005251,31.07740605,23.59962462,1.0394718,65371.62667,2.1806547,0.67241083,0.65809554 +1975,4.9286224,1.303204964,0,0,5.998431374,1.4004084,129.65616,14.321042,57.565811,14.538442,4.2176868,337.71465,440.16522,148.91662,384.99818,5104.4298,263.0585486,816.9194859,0,0.80304672,79.153904,1.42E-05,0,0.19213674,0.072875586,2.545125,0,8.78E-04,0,5.206812767,41.4767259,177.5130673,30.76637271,23.12965379,1.1646458,64182.76882,2.8018363,1.2682709,0.8287437 +1976,5.194661022,1.320205358,0,0,6.237496532,1.5554771,129.63321,16.011714,57.24638,15.386466,4.743647,329.27602,426.10768,150.23158,475.43135,5104.2152,269.9482097,856.0634915,0,0.82394648,92.664426,1.44E-05,0,0.33759564,0.047412585,2.614347,0,8.80E-04,0,5.352361697,42.52135697,186.2474273,32.28663209,24.40571792,1.4235416,67153.40876,3.4107057,1.8435573,0.98712807 +1977,5.36442864,1.352097971,0,0,6.353178768,1.692355,129.63647,16.762577,55.875241,15.71703,5.1782548,306.11158,404.2283,152.04264,533.0325,5117.6518,274.0301524,868.4313097,0,0.93269902,109.06413,2.14E-06,0,0.42456315,0.022180513,3.5323931,0,8.87E-04,0,5.499463795,43.27485688,189.2255323,33.05929028,24.38724427,2.1583469,67777.19082,3.8826089,2.1420878,1.0852977 +1978,5.581802903,1.2993019,0,0,6.579044818,1.7691766,130.48849,16.898235,72.245349,15.529417,5.5214166,278.45958,383.9896,153.91731,529.79652,5132.0601,276.3333545,897.4051484,0,1.277913,112.78031,-6.25E-05,0,0.45249588,-0.059867027,4.661461,0,8.95E-04,0,5.625120896,44.24089207,192.9347955,34.2691933,25.01974419,2.8286901,68023.04188,4.2701212,2.1599238,1.1209157 +1979,5.73073214,1.252317648,0,0,6.677231649,1.9203395,128.37989,17.898313,94.634628,14.991238,6.1020639,271.13342,394.80033,155.58904,518.50501,5138.651,281.6000656,900.4664227,0,1.7595655,113.22088,-2.04E-06,0,0.42017076,-0.17766763,5.0937882,0,9.00E-04,0,5.807081799,45.13478108,196.0169029,35.01398718,25.21247986,2.8296177,69119.86371,4.6513697,2.0579417,1.1328091 +1980,5.650947967,1.244135794,0,0,6.618387125,1.9633226,125.08456,17.664267,120.23426,14.760861,7.2362595,276.09356,398.43779,157.04196,513.02719,5131.8984,283.3464702,890.5114952,0,2.0330453,118.29604,7.94E-05,0,0.35605477,-0.12485274,5.1732709,0,9.02E-04,8.17E-05,5.872959052,45.97852705,194.391242,34.76440147,25.23254566,2.8304823,68783.84557,5.1129913,2.1545661,1.1562096 +1981,5.539335981,1.252813549,0,0,6.57778223,1.7391266,126.52811,16.187192,128.45086,13.920115,8.6372447,271.00597,403.07178,158.51506,516.86109,5123.4643,279.7894207,875.7816094,0,1.96562,122.37567,1.71E-05,0,0.32601335,0.11779446,4.4274361,0,9.03E-04,6.97E-04,5.805407446,46.37436562,189.1686139,34.11541673,24.87329597,2.9541119,66688.82722,6.0090215,2.4863888,1.1742814 +1982,5.477249508,1.258145478,0,0,6.915258578,1.6205522,129.38621,15.97381,128.57689,13.885459,9.2748324,277.72577,391.79861,159.18065,532.93449,5083.3728,287.6693154,967.4292983,0,1.6573364,125.26367,-8.23E-05,0,0.33083911,0.22216908,3.5575865,0,8.94E-04,0.001578501,6.043062728,47.66689068,206.8844648,34.15609141,28.27220571,2.9550432,65532.30175,6.4693449,3.0131287,1.352411 +1983,5.483062193,1.433024176,0,0,6.625402214,1.8456854,130.75989,16.384525,150.74703,15.564841,9.057039,353.29433,385.70972,160.09109,547.19948,5047.3484,281.6176584,862.0214943,0,1.3378778,129.4055,-2.71E-05,0,0.33559498,0.09748991,3.8040369,0,8.87E-04,0.002017846,6.06583408,47.6454021,183.8358223,33.28512898,24.45951343,3.2014371,64552.41617,6.0034055,3.8198142,1.378774 +1984,5.619005091,1.461224853,0,0,6.815018955,1.954181,134.9934,14.927399,167.86607,17.177696,10.537606,352.61795,438.30954,162.15076,546.6524,5054.1956,285.0030452,889.7020107,0,1.2391705,137.14097,8.66E-05,0,0.48356263,0.027417786,4.8805395,0,8.93E-04,0.004307161,5.996375963,48.69349353,189.3335257,34.32486538,25.32627636,3.570683,65309.89915,6.3412338,4.7987259,1.1329507 +1985,5.678895003,1.499743779,0,0,6.922761989,1.930951,138.44665,13.863624,191.20489,18.042992,12.093107,321.80334,487.46531,164.43684,559.24581,5072.7864,285.6752697,906.9368199,0,1.4290266,148.48134,2.16E-04,0,0.56320674,0.085787554,5.2553933,0,9.02E-04,0.012966035,5.996554239,49.41563613,190.4568857,34.8615092,25.83243998,3.6945657,65474.08715,7.6862714,5.5359652,1.1864916 +1986,5.784334368,1.530113569,0,0,7.013703662,2.0447892,134.66824,14.595216,226.48099,17.343175,11.156209,363.19165,561.19711,166.53505,605.54478,5079.9439,290.8084488,914.5218093,0,2.1480617,163.26271,2.16E-04,6.84E-04,0.57273931,0.044305139,5.6896951,0,9.08E-04,0.028102657,6.123193923,50.21167874,195.6652235,35.24652923,25.91211685,3.9411958,65479.27148,8.6199267,5.6626388,1.453026 +1987,5.942054872,1.515689335,0,0,7.200139154,2.1868179,140.05915,15.122737,234.71551,15.986362,11.176584,377.17492,543.59326,168.70781,636.85035,5087.8651,295.0485147,952.0611492,0.001157823,3.2631248,177.25124,5.82E-05,0.004878587,0.79616882,-0.099665792,6.5386064,0,9.14E-04,0.044783508,6.350228642,51.33101366,203.5851701,36.43815818,27.25186717,4.3106697,66721.094,9.1692428,5.2412687,1.7364871 +1988,6.133362797,1.515094775,0,0,7.39663506,2.2384091,134.89421,15.295333,225.34631,14.052169,12.063592,324.40759,433.01446,171.54521,645.54402,5119.7697,298.6854951,950.4151874,0.34924766,5.2661192,185.3279,0.021115007,0.06849384,0.88192316,-0.073662439,6.6278139,0,9.28E-04,0.060567348,6.188309996,51.72677742,203.5322276,37.79778929,27.18506613,4.6802608,67287.4839,10.094657,4.7030971,1.770198 +1989,6.211121149,1.53212989,0,0,7.320233668,2.2075539,105.50252,15.212081,212.83728,10.119863,11.292045,246.46809,357.7641,174.22363,713.52261,5139.3872,302.1641744,930.8467755,0.72136249,10.730464,189.56819,0.31476996,0.67304705,0.82629641,0.054397397,6.6572182,0,0.006065534,0.076147787,6.264529715,52.06403696,200.3165052,38.13825088,26.33140677,5.0499664,67312.93275,10.904862,4.3864096,1.6702493 +1990,6.186811699,1.445096887,0,0,7.508271532,2.1076967,86.426532,14.407865,176.8456,7.0905085,10.591201,208.25652,333.97703,176.36773,658.40311,5137.248,305.2725547,940.5626313,1.5203264,17.768055,192.30881,0.96053501,1.7208698,0.69729352,0.18589003,6.6838429,0,0.02696988,0.091767095,6.277152283,52.52170068,203.021231,38.25721546,27.36536835,5.1743108,67094.07179,10.051338,4.2741531,1.7373255 +1991,6.190131152,1.63686011,0,0,8.011536269,1.982897,85.142226,12.924815,120.64491,6.9542228,10.775591,159.81289,286.27307,177.30503,474.47964,5089.9323,318.7311921,1129.983883,6.9394223,22.06288,185.52075,1.727734,2.7251313,0.70613627,0.24819351,7.0572566,0,0.058141591,0.10715402,6.344945592,54.26130892,244.4286341,39.69249193,34.39493833,5.29866,66472.31502,9.6580528,4.1585749,1.6735462 +1992,6.145912973,1.683057085,0,0,7.364888993,1.9500444,85.437279,11.907588,74.361852,5.3089984,10.120439,106.91739,227.43518,179.3441,361.04368,5056.1355,299.4017955,913.3754186,22.26499,24.233416,194.061,2.4767485,4.0250116,1.0018637,0.18194194,7.9102615,0,0.088755914,0.12273589,6.358476439,52.37759099,198.238473,38.71717596,26.64897689,5.4230636,64223.92565,10.784362,3.8127392,1.4631107 +1993,6.193394815,1.54672743,0,0,7.531122847,1.9984803,84.458339,11.381334,50.567396,3.463778,8.6771649,84.3251,231.9618,179.76429,256.33383,5078.4684,299.4425141,941.8816353,34.33223,22.551362,208.33854,3.0949997,11.967198,1.5166355,0.157163,8.3534838,0,0.1188094,0.13825367,6.310752017,52.78275226,203.7757832,39.74372709,28.11499626,5.424762,63195.55052,11.612337,3.3180441,1.2514505 +1994,6.240067755,1.503716685,0,0,7.895732734,2.1430557,86.05046,11.006658,37.565451,4.6095776,8.163643,85.893495,238.58315,178.03958,159.08791,5003.2837,310.2518368,1060.282744,45.287421,24.423112,237.88968,3.5515518,24.558229,2.3253155,0.20390529,8.737968,0,0.14808425,0.15358509,6.441827,54.21042307,231.0503543,40.27137016,33.14335063,5.5491826,61820.50124,11.303115,2.9604627,1.1962062 +1995,6.377386454,1.486080505,0,0,7.813189501,2.3880707,80.480245,10.682998,23.473127,5.7076242,7.6747577,86.264975,210.72453,180.13151,95.783763,5016.3948,305.4095889,955.0363062,51.095458,27.59918,230.3453,3.8771223,36.211193,3.4395305,0.29614801,9.315257,0,0.17780027,0.16982122,6.504076136,53.41671788,206.4742485,40.45040793,29.71540754,5.6736625,60635.50707,11.011358,2.8923304,1.0842597 +1996,6.511379279,1.470193985,0,0,7.686339551,2.6638414,75.256035,10.505743,13.005309,4.6522227,5.5242189,85.278741,170.78176,183.444,59.514335,5297.7083,307.2912075,930.0218807,53.568363,26.00128,224.86947,4.0579149,48.538296,4.5014521,0.39044285,9.7707047,0,0.20547879,0.23841137,6.542220103,53.42127729,200.8724208,40.45019229,28.71419152,5.5527008,59650.01603,10.510994,2.8654227,0.84755661 +1997,6.574573879,2.18331399,0,0,8.269788743,2.8728437,75.489912,10.417958,10.398164,3.7691062,3.4559389,86.341446,160.63531,180.149,29.550907,5288.9251,331.2889198,1204.992305,55.763481,29.370536,240.5221,4.6266327,58.758537,5.5717023,0.427562,9.7952259,4.96E-05,0.25820595,0.31501343,6.740456045,56.11803189,264.6751503,41.89315592,38.34138232,5.7834259,59868.27682,9.8242768,2.8566852,0.76826308 +1998,6.590459871,1.541245282,0,0,8.412226876,2.9899069,72.916263,10.335348,12.992477,3.9615346,2.9318362,86.348141,156.67666,176.1082,23.412636,5175.5355,315.3326212,1085.430599,55.956781,28.471196,234.46613,6.9049469,70.049792,6.8917397,0.54029666,10.02529,3.58E-04,0.60512272,0.38665542,6.446521521,56.58934432,232.3180182,42.33468434,37.8122783,5.6031107,58604.36759,10.323837,2.701239,0.76943857 +1999,6.661329053,1.303430472,0,0,7.698162125,2.9607505,72.96355,10.216505,14.054175,3.9749853,3.1538842,82.703538,140.42544,168.37661,18.420173,5112.4264,309.4083709,940.700678,58.338707,25.741051,252.31636,8.6848445,91.978363,7.9486502,0.7424207,10.07373,0.003108151,1.0699013,0.49435229,6.281150807,54.7693723,205.1118782,40.94720104,30.44917133,5.1676463,55523.54474,10.262658,2.1509855,0.7706312 +2000,6.893167303,1.201338049,0,0,7.457347232,2.8153943,72.651408,9.9231457,9.4043884,3.9867142,2.3476518,76.330076,122.76605,165.25876,19.471227,5074.2696,310.1868098,886.5647302,56.341686,25.730152,263.60627,10.640667,99.657424,8.5987563,0.86319988,9.2978389,0.034006926,1.411492,0.57423278,6.112229814,54.50959652,195.3241582,41.26362178,27.9819784,5.2735332,55661.00151,9.4801348,1.9694412,0.77151922 +2001,6.957086928,0.961802096,0,0,7.591758769,3.0480682,70.656969,10.593275,5.9590471,3.2771364,1.1600545,68.271466,111.64066,165.599,19.806901,5094.2258,312.8963787,881.6703956,56.368781,24.490463,261.60586,11.075295,96.243251,9.8521252,0.94275566,8.9840003,0.80619906,1.6540309,0.63867332,6.188009183,54.70989639,196.1877828,41.37717554,27.87799844,5.3282102,56049.16643,8.8337936,2.3248261,0.74608572 +2002,7.097947295,1.070652511,0,0,8.046474187,3.4534372,70.456674,11.982167,3.1513602,2.420559,0.95011524,63.484809,101.90454,161.14055,12.302716,5096.5932,322.2788312,970.7244172,50.843174,25.156097,270.32175,12.214474,102.73275,11.617585,1.2107813,9.7208997,2.9170651,2.8037817,0.73327062,6.359556248,57.07665954,218.4604141,41.89878327,33.80824329,5.4976481,55687.52236,8.3685909,2.2797577,0.67660085 +2003,7.424688348,0.901041903,0,0,8.241697598,3.16329,69.839024,12.579882,5.7693016,1.7336337,0.74505988,62.277955,97.844828,158.92828,10.122917,5113.7538,328.1242242,944.7470786,44.441172,25.070909,287.30923,15.640539,117.40605,13.114832,1.560512,11.005369,5.226518,4.7856897,0.85366012,6.428305305,57.69037488,214.4033914,42.68216556,34.36218135,5.5417194,57641.7237,8.0831154,2.0262772,0.60195554 +2004,7.812644316,1.038213168,0,0,8.542465507,2.2029533,66.998563,12.194883,9.216749,1.4729969,0.75667708,60.966802,87.654103,156.21655,9.7469995,5141.4447,338.9417722,945.5469501,49.135801,28.554887,307.57676,15.758879,125.65071,13.097501,2.0510461,12.712613,6.6512131,5.4873038,0.97410928,6.590470047,58.11358477,216.6872834,44.5568559,32.33033041,5.6480085,60340.85189,7.5267646,2.1192661,0.55294607 +2005,8.093491316,1.025657164,0,0,8.840128386,1.9480504,63.195607,11.060838,4.6297025,1.8139658,0.58070615,60.331179,71.956593,154.12291,7.5405195,5209.9819,346.3955546,950.5924444,53.955471,33.447493,329.52471,16.143675,126.49199,12.434284,2.365528,14.626529,7.0791974,6.3606922,1.0845927,6.693579484,58.88341048,218.7880648,45.62238086,32.72399071,6.2799143,62587.82672,6.9433284,1.8947828,0.46971744 +2006,8.35813441,1.092642828,0,0,8.92564815,2.045423,60.048081,10.21735,0.6450641,1.7510311,0.58710647,63.037203,65.575271,152.41471,9.3190485,5272.2746,356.4696896,986.1510089,51.911598,36.489809,346.30497,19.891066,133.41048,14.118518,2.3531588,12.639849,6.8754044,8.3862482,1.1852524,6.875606953,60.37974253,229.8954395,46.63913374,34.3551466,6.9409178,63046.34515,6.3118449,1.5902358,0.43579597 +2007,8.681148087,0.966211967,0,0,9.284494092,1.7666158,57.257154,9.3272415,4.5089203,1.5545493,0.78280059,64.737513,61.623755,147.28895,9.6981304,5250.6823,355.0225755,945.8695944,49.953532,37.109679,357.26506,26.595246,127.25708,16.399738,2.4154053,9.3262891,6.6980995,8.4029745,1.2649376,6.596141361,60.96582609,219.7058707,48.13085999,33.27729799,6.9754073,62641.3592,5.7707437,1.7021554,0.59162888 +2008,8.733139806,0.668337987,0,0,9.091850914,1.746034,56.837697,9.0353429,8.3395339,1.9164483,0.45696793,63.060877,57.108479,144.47281,6.337645,5191.6855,360.4917105,912.5104843,54.881457,33.091627,362.72449,30.815622,138.28669,17.544095,2.6196596,8.8123411,7.076053,10.669375,1.3164863,6.638276368,61.31644175,214.695495,48.0350761,31.61901151,6.8835341,61275.77058,5.5737514,1.6171325,0.63840472 +2009,8.584990107,0.754863283,0,0,9.109514002,1.7995507,55.355253,9.6854874,5.7877004,1.6755174,0.3835494,60.065148,54.788238,144.24254,3.7694324,5145.2658,364.2003634,917.7292309,61.506343,32.081369,366.5558,33.926872,160.10848,21.142804,2.9666725,9.9336003,7.8522494,16.223306,1.4335012,6.712782947,61.3779593,218.7581143,46.48309573,31.77247637,7.159861,58721.16171,5.2570896,1.7272846,0.47723148 +2010,8.975543684,0.885110055,0,0,9.665129376,1.7742176,56.090865,10.48947,4.4070317,1.4644148,0.65896445,58.86009,52.271203,142.6745,2.4614781,5179.9719,370.8962528,953.2286303,65.209531,29.851794,361.74691,35.069515,165.044,20.460881,3.1827017,11.247607,8.7778712,15.914528,1.3375544,6.708375368,62.44447212,224.6021121,47.31829704,34.61053251,7.2759031,58249.45527,4.8975548,1.8511656,0.39655186 +2011,9.25596626,0.91365454,0,0,9.478876566,1.8467555,57.565927,11.056837,4.6237938,2.0468287,0.85601742,62.415615,52.120722,140.42156,3.0036158,5252.9333,372.6576832,906.7673675,67.690592,28.645628,366.94427,43.330418,190.47655,22.158614,3.410604,12.498165,9.4654578,20.415233,1.1291345,6.648935415,62.39874927,218.628754,48.49222156,32.51825927,7.4656928,58834.52202,4.3361773,2.096153,0.39105944 +2012,9.386649745,0.970689078,0,0,9.705285171,1.794986,59.464919,9.6609456,5.4529267,2.0520518,0.7168607,70.235225,53.35878,136.71475,3.0096674,5232.3317,380.8097666,949.6022184,63.311547,25.468261,356.29002,45.81505,205.00564,21.423,3.2771162,12.591587,9.054248,24.0671,0.98551995,6.742796632,63.84845417,229.1069362,48.17674509,35.82690196,7.7062836,57925.01408,3.8379813,1.7328717,0.41594871 +2013,9.659396496,0.91865757,0,0,9.560553735,1.6324652,62.512861,8.3027436,6.5167934,1.9408617,0.61330322,75.740842,54.819887,133.39273,1.8384424,5231.2321,381.5943928,901.2387566,59.817791,19.467118,342.89828,38.8888,202.01825,23.8069,2.9986006,11.604213,9.7859,21.452891,0.87225171,6.847910646,63.65097665,219.3811793,47.50620674,33.24556583,7.686158,57413.51787,3.5745493,0.96258078,0.44442215 +2014,9.719224641,1.095764818,0,0,9.744379658,1.6517,53.5475,9.8735,2.8024,1.6696,1.114899,54.9365,28.9612,133.6791,1.2625,5358.4982,387.8735392,964.0476182,59.82,22.47,358.8813,57.1243,200.0249,25.2487,3.5393,12.991,10.1025,30.4858,1.1516,6.916164551,65.03685366,233.525518,47.38523786,36.14582139,7.8784,57093.26142,3.481,1.2299,0.3854 +2015,9.724603237,0.959883081,0,0,9.727423577,1.57,47.5476,10.8699,0.8742,1.6696,1.6714,43.5734,14.6096,133.823,0,5404.8069,388.0727957,934.3498847,59.82,22.47,358.8813,78.7906,201.9534,32.381,3.6633,14.4857,11.7285,38.5792,1.1516,6.937624392,65.27970313,227.2448193,47.34877178,34.74602423,8.02,50464.18814,3.2933,1.3378,0.3481 +2016,9.820270765,0.945799698,0,0,9.546242688,1.5674,45.01716,10.8519602,0.78156,1.515231454,1.61422146,41.88082,12.88774,133.77542,0,5402.94348,388.0763511,923.9837001,60.8428786,21.9901556,351.625206,98.363272,214.99666,38.77266,4.06551696,12.12738,13.7053912,32.29838,1.1829135,6.991451807,65.63437282,225.5668824,46.89505483,34.479772,8.04314,48391.95431,3.07158,1.29166,0.33428 +2017,9.915938293,0.931716315,0,0,9.3650618,1.5648,42.48672,10.8340204,0.68892,1.360862908,1.55704292,40.18824,11.16588,133.72784,0,5401.08006,388.0799065,913.6175156,61.8657572,21.5103112,344.369112,117.935944,228.03992,45.16432,4.46773392,9.76906,15.6822824,26.01756,1.214227,7.045279221,65.9890425,223.8889455,46.44133788,34.21351977,8.06628,46319.72047,2.84986,1.24552,0.32046 +2018,10.01160582,0.917632933,0,0,9.183880911,1.5622,39.95628,10.8160806,0.59628,1.206494362,1.49986438,38.49566,9.44402,133.68026,0,5399.21664,388.0834619,903.251331,62.8886358,21.0304668,337.113018,137.508616,241.08318,51.55598,4.86995088,7.41074,17.6591736,19.73674,1.2455405,7.099106635,66.34371219,222.2110086,45.98762093,33.94726754,8.08942,44247.48664,2.62814,1.19938,0.30664 +2019,10.10727335,0.90354955,0,0,9.002700023,1.5596,37.42584,10.7981408,0.50364,1.052125816,1.44268584,36.80308,7.72216,133.63268,0,5397.35322,388.0870173,892.8851464,63.9115144,20.5506224,329.856924,157.081288,254.12644,57.94764,5.27216784,5.05242,19.6360648,13.45592,1.276854,7.15293405,66.69838187,220.5330716,45.53390398,33.68101532,8.11256,42175.2528,2.40642,1.15324,0.29282 +2020,10.20294088,0.889466167,0,0,8.821519134,1.557,34.8954,10.780201,0.411,0.89775727,1.3855073,35.1105,6.0003,133.5851,0,5395.4898,388.0905727,882.5189619,64.934393,20.070778,322.60083,176.65396,267.1697,64.3393,5.6743848,2.6941,21.612956,7.1751,1.3081675,7.206761464,67.05305156,218.8551347,45.08018703,33.41476309,8.1357,40103.01896,2.1847,1.1071,0.279 +2021,10.29044516,0.879150427,0,0,8.741611203,1.55626,33.28538,10.775021,0.37899,0.833926213,1.342148655,33.87909,5.50149,133.57155,0,5394.95176,389.2261399,879.2564144,63.8401921,19.2265454,304.67177,181.708385,261.75265,66.04767,5.64972451,2.48112,22.1511087,6.60788,1.254602996,7.263147064,67.59376004,218.4302047,44.89707177,33.24738459,7.66123,40045.54775,2.06237,1.07222,0.26903 +2022,10.37794944,0.868834687,0,0,8.661703272,1.55552,31.67536,10.769841,0.34698,0.770095156,1.29879001,32.64768,5.00268,133.558,0,5394.41372,390.3617071,875.9938668,62.7459912,18.3823128,286.74271,186.76281,256.3356,67.75604,5.62506422,2.26814,22.6892614,6.04066,1.201038492,7.319532664,68.13446851,218.0052747,44.71395651,33.08000609,7.18676,39988.07653,1.94004,1.03734,0.25906 +2023,10.46545372,0.858518947,0,0,8.581795341,1.55478,30.06534,10.764661,0.31497,0.706264099,1.255431365,31.41627,4.50387,133.54445,0,5393.87568,391.4972744,872.7313193,61.6517903,17.5380802,268.81365,191.817235,250.91855,69.46441,5.60040393,2.05516,23.2274141,5.47344,1.147473988,7.375918264,68.67517699,217.5803447,44.53084125,32.91262759,6.71229,39930.60532,1.81771,1.00246,0.24909 +2024,10.552958,0.848203208,0,0,8.50188741,1.55404,28.45532,10.759481,0.28296,0.642433042,1.21207272,30.18486,4.00506,133.5309,0,5393.33764,392.6328416,869.4687718,60.5575894,16.6938476,250.88459,196.87166,245.5015,71.17278,5.57574364,1.84218,23.7655668,4.90622,1.093909484,7.432303864,69.21588547,217.1554147,44.34772599,32.7452491,6.23782,39873.13411,1.69538,0.96758,0.23912 +2025,10.64046229,0.837887468,0,0,8.421979478,1.5533,26.8453,10.754301,0.25095,0.578601985,1.168714075,28.95345,3.50625,133.51735,0,5392.7996,393.7684089,866.2062243,59.4633885,15.849615,232.95553,201.926085,240.08445,72.88115,5.55108335,1.6292,24.3037195,4.339,1.04034498,7.488689464,69.75659395,216.7304846,44.16461073,32.5778706,5.76335,39815.66289,1.57305,0.9327,0.22915 +2026,10.72796657,0.827571728,0,0,8.342071547,1.55256,25.23528,10.749121,0.21894,0.514770928,1.12535543,27.72204,3.00744,133.5038,0,5392.26156,394.9039761,862.9436768,58.3691876,15.0053824,215.02647,206.98051,234.6674,74.58952,5.52642306,1.41622,24.8418722,3.77178,0.986780476,7.545075064,70.29730243,216.3055546,43.98149547,32.4104921,5.28888,39758.19168,1.45072,0.89782,0.21918 +2027,10.81547085,0.817255988,0,0,8.262163616,1.55182,23.62526,10.743941,0.18693,0.450939871,1.081996785,26.49063,2.50863,133.49025,0,5391.72352,396.0395433,859.6811293,57.2749867,14.1611498,197.09741,212.034935,229.25035,76.29789,5.50176277,1.20324,25.3800249,3.20456,0.933215972,7.601460664,70.83801091,215.8806246,43.79838021,32.2431136,4.81441,39700.72046,1.32839,0.86294,0.20921 +2028,10.90297513,0.806940248,0,0,8.182255685,1.55108,22.01524,10.738761,0.15492,0.387108814,1.03863814,25.25922,2.00982,133.4767,0,5391.18548,397.1751106,856.4185817,56.1807858,13.3169172,179.16835,217.08936,223.8333,78.00626,5.47710248,0.99026,25.9181776,2.63734,0.879651468,7.657846264,71.37871938,215.4556946,43.61526495,32.0757351,4.33994,39643.24925,1.20606,0.82806,0.19924 +2029,10.99047941,0.796624509,0,0,8.102347754,1.55034,20.40522,10.733581,0.12291,0.323277757,0.995279495,24.02781,1.51101,133.46315,0,5390.64744,398.3106778,853.1560342,55.0865849,12.4726846,161.23929,222.143785,218.41625,79.71463,5.45244219,0.77728,26.4563303,2.07012,0.826086964,7.714231864,71.91942786,215.0307646,43.43214969,31.90835661,3.86547,39585.77803,1.08373,0.79318,0.18927 +2030,11.07798369,0.786308769,0,0,8.022439822,1.5496,18.7952,10.728401,0.0909,0.2594467,0.95192085,22.7964,1.0122,133.4496,0,5390.1094,399.4462451,849.8934867,53.992384,11.628452,143.31023,227.19821,212.9992,81.423,5.4277819,0.5643,26.994483,1.5029,0.77252246,7.770617463,72.46013634,214.6058346,43.24903442,31.74097811,3.391,39528.30682,0.9614,0.7583,0.1793 +2031,11.11875143,0.766740343,0,0,7.947593946,1.54117,17.92802,10.6700816,0.08382,0.241007612,0.922171126,21.99688,0.92805,133.29531,0,5384.05172,397.7812952,844.578536,51.7698,10.82562094,131.008084,226.050031,208.16209,81.29742,5.32028896,0.53513,26.9819363,1.42521,0.744561346,7.797032382,72.75346284,214.0324247,42.82325066,31.53835369,3.35405,38905.72161,0.90757,0.7344,0.1729 +2032,11.15951917,0.747171917,0,0,7.87274807,1.53274,17.06084,10.6117622,0.07674,0.222568525,0.892421402,21.19736,0.8439,133.14102,0,5377.99404,396.1163453,839.2635852,49.547216,10.02278988,118.705938,224.901852,203.32498,81.17184,5.21279602,0.50596,26.9693896,1.34752,0.716600232,7.823447301,73.04678934,213.4590148,42.39746689,31.33572928,3.3171,38283.13641,0.85374,0.7105,0.1665 +2033,11.20028691,0.727603492,0,0,7.797902193,1.52431,16.19366,10.5534428,0.06966,0.204129437,0.862671678,20.39784,0.75975,132.98673,0,5371.93636,394.4513954,833.9486345,47.324632,9.21995882,106.403792,223.753673,198.48787,81.04626,5.10530308,0.47679,26.9568429,1.26983,0.688639118,7.84986222,73.34011584,212.8856049,41.97168313,31.13310486,3.28015,37660.5512,0.79991,0.6866,0.1601 +2034,11.24105465,0.708035066,0,0,7.723056317,1.51588,15.32648,10.4951234,0.06258,0.18569035,0.832921954,19.59832,0.6756,132.83244,0,5365.87868,392.7864455,828.6336838,45.102048,8.41712776,94.101646,222.605494,193.65076,80.92068,4.99781014,0.44762,26.9442962,1.19214,0.660678004,7.876277139,73.63344234,212.312195,41.54589936,30.93048045,3.2432,37037.96599,0.74608,0.6627,0.1537 +2035,11.28182239,0.68846664,0,0,7.64821044,1.50745,14.4593,10.436804,0.0555,0.167251262,0.80317223,18.7988,0.59145,132.67815,0,5359.821,391.1214956,823.318733,42.879464,7.6142967,81.7995,221.457315,188.81365,80.7951,4.8903172,0.41845,26.9317495,1.11445,0.63271689,7.902692058,73.92676883,211.7387851,41.1201156,30.72785603,3.20625,36415.38078,0.69225,0.6388,0.1473 +2036,11.32259013,0.668898215,0,0,7.573364564,1.49902,13.59212,10.3784846,0.04842,0.148812174,0.773422506,17.99928,0.5073,132.52386,0,5353.76332,389.4565458,818.0037823,40.65688,6.81146564,69.497354,220.309136,183.97654,80.66952,4.78282426,0.38928,26.9192028,1.03676,0.604755776,7.929106977,74.22009533,211.1653752,40.69433183,30.52523162,3.1693,35792.79558,0.63842,0.6149,0.1409 +2037,11.36335787,0.649329789,0,0,7.498518688,1.49059,12.72494,10.3201652,0.04134,0.130373087,0.743672782,17.19976,0.42315,132.36957,0,5347.70564,387.7915959,812.6888316,38.434296,6.00863458,57.195208,219.160957,179.13943,80.54394,4.67533132,0.36011,26.9066561,0.95907,0.576794662,7.955521895,74.51342183,210.5919653,40.26854807,30.3226072,3.13235,35170.21037,0.58459,0.591,0.1345 +2038,11.40412561,0.629761363,0,0,7.423672811,1.48216,11.85776,10.2618458,0.03426,0.111933999,0.713923058,16.40024,0.339,132.21528,0,5341.64796,386.126646,807.3738808,36.211712,5.20580352,44.893062,218.012778,174.30232,80.41836,4.56783838,0.33094,26.8941094,0.88138,0.548833548,7.981936814,74.80674833,210.0185554,39.8427643,30.11998279,3.0954,34547.62516,0.53076,0.5671,0.1281 +2039,11.44489335,0.610192938,0,0,7.348826935,1.47373,10.99058,10.2035264,0.02718,0.093494912,0.684173334,15.60072,0.25485,132.06099,0,5335.59028,384.4616961,802.0589301,33.989128,4.40297246,32.590916,216.864599,169.46521,80.29278,4.46034544,0.30177,26.8815627,0.80369,0.520872434,8.008351733,75.10007483,209.4451455,39.41698054,29.91735837,3.05845,33925.03996,0.47693,0.5432,0.1217 +2040,11.48566109,0.590624512,0,0,7.273981058,1.4653,10.1234,10.145207,0.0201,0.075055824,0.65442361,14.8012,0.1707,131.9067,0,5329.5326,382.7967462,796.7439794,31.766544,3.6001414,20.28877,215.71642,164.6281,80.1672,4.3528525,0.2726,26.869016,0.726,0.49291132,8.034766652,75.39340133,208.8717357,38.99119677,29.71473396,3.0215,33302.45475,0.4231,0.5193,0.1153 +2041,11.509476,0.545231714,0,0,7.179840922,1.45543,9.65632,10.0768476,0.01853,0.0697235,0.633957487,14.28209,0.15651,131.72605,0,5322.43208,380.2337655,790.196508,30.4061322,3.34120265,18.44822429,213.1803,161.73917,79.36518,4.27081147,0.25616,26.6736614,0.68222,0.479428096,8.032422613,75.45718802,207.6998605,38.64709045,29.42994786,2.96873,32641.31363,0.39941,0.50294,0.11118 +2042,11.53329092,0.499838917,0,0,7.085700785,1.44556,9.18924,10.0084882,0.01696,0.064391176,0.613491364,13.76298,0.14232,131.5454,0,5315.33156,377.6707847,783.6490366,29.0457204,3.0822639,16.60767858,210.64418,158.85024,78.56316,4.18877044,0.23972,26.4783068,0.63844,0.465944872,8.030078574,75.52097471,206.5279854,38.30298413,29.14516176,2.91596,31980.17252,0.37572,0.48658,0.10706 +2043,11.55710583,0.454446119,0,0,6.991560648,1.43569,8.72216,9.9401288,0.01539,0.059058851,0.593025241,13.24387,0.12813,131.36475,0,5308.23104,375.107804,777.1015652,27.6853086,2.82332515,14.76713287,208.10806,155.96131,77.76114,4.10672941,0.22328,26.2829522,0.59466,0.452461648,8.027734535,75.5847614,205.3561103,37.95887781,28.86037566,2.86319,31319.0314,0.35203,0.47022,0.10294 +2044,11.58092074,0.409053321,0,0,6.897420511,1.42582,8.25508,9.8717694,0.01382,0.053726527,0.572559118,12.72476,0.11394,131.1841,0,5301.13052,372.5448233,770.5540938,26.3248968,2.5643864,12.92658716,205.57194,153.07238,76.95912,4.02468838,0.20684,26.0875976,0.55088,0.438978424,8.025390496,75.64854809,204.1842352,37.61477149,28.57558957,2.81042,30657.89028,0.32834,0.45386,0.09882 +2045,11.60473566,0.363660524,0,0,6.803280374,1.41595,7.788,9.80341,0.01225,0.048394203,0.552092995,12.20565,0.09975,131.00345,0,5294.03,369.9818425,764.0066224,24.964485,2.30544765,11.08604145,203.03582,150.18345,76.1571,3.94264735,0.1904,25.892243,0.5071,0.4254952,8.023046457,75.71233478,203.0123601,37.27066517,28.29080347,2.75765,29996.74917,0.30465,0.4375,0.0947 +2046,11.62855057,0.318267726,0,0,6.709140238,1.40608,7.32092,9.7350506,0.01068,0.043061879,0.531626872,11.68654,0.08556,130.8228,0,5286.92948,367.4188618,757.4591511,23.6040732,2.0465089,9.24549574,200.4997,147.29452,75.35508,3.86060632,0.17396,25.6968884,0.46332,0.412011976,8.020702417,75.77612147,201.840485,36.92655885,28.00601737,2.70488,29335.60805,0.28096,0.42114,0.09058 +2047,11.65236548,0.272874928,0,0,6.615000101,1.39621,6.85384,9.6666912,0.00911,0.037729555,0.511160749,11.16743,0.07137,130.64215,0,5279.82896,364.855881,750.9116797,22.2436614,1.78757015,7.40495003,197.96358,144.40559,74.55306,3.77856529,0.15752,25.5015338,0.41954,0.398528752,8.018358378,75.83990816,200.6686099,36.58245253,27.72123127,2.65211,28674.46693,0.25727,0.40478,0.08646 +2048,11.6761804,0.22748213,0,0,6.520859964,1.38634,6.38676,9.5983318,0.00754,0.03239723,0.490694626,10.64832,0.05718,130.4615,0,5272.72844,362.2929003,744.3642083,20.8832496,1.5286314,5.56440432,195.42746,141.51666,73.75104,3.69652426,0.14108,25.3061792,0.37576,0.385045528,8.016014339,75.90369485,199.4967347,36.23834621,27.43644518,2.59934,28013.32582,0.23358,0.38842,0.08234 +2049,11.69999531,0.182089333,0,0,6.426719827,1.37647,5.91968,9.5299724,0.00597,0.027064906,0.470228503,10.12921,0.04299,130.28085,0,5265.62792,359.7299195,737.8167369,19.5228378,1.26969265,3.72385861,192.89134,138.62773,72.94902,3.61448323,0.12464,25.1108246,0.33198,0.371562304,8.0136703,75.96748154,198.3248596,35.89423989,27.15165908,2.54657,27352.1847,0.20989,0.37206,0.07822 +2050,11.72381022,0.136696535,0,0,6.332579691,1.3666,5.4526,9.461613,0.0044,0.021732582,0.44976238,9.6101,0.0288,130.1002,0,5258.5274,357.1669388,731.2692655,18.162426,1.0107539,1.8833129,190.35522,135.7388,72.147,3.5324422,0.1082,24.91547,0.2882,0.35807908,8.011326261,76.03126823,197.1529845,35.55013357,26.86687298,2.4938,26691.04358,0.1862,0.3557,0.0741 +2051,11.69038436,0.081003746,0,0,6.252962759,1.33951,5.20103,9.27408472,0.00406,0.020186656,0.435696317,9.27305,0.02641,129.60438,0,5239.04874,354.3823885,723.5198151,17.3846094,0.938056143,1.712466056,191.742661,136.03359,72.71745,3.51022875,0.10313,25.2083184,0.27469,0.355389803,7.987880264,75.94460433,195.3983815,35.24501289,26.58912503,2.46417,26325.61534,0.17577,0.34449,0.07145 +2052,11.65695849,0.025310956,0,0,6.173345828,1.31242,4.94946,9.08655644,0.00372,0.01864073,0.421630254,8.936,0.02402,129.10856,0,5219.57008,351.5978383,715.7703647,16.6067928,0.865358386,1.541619212,193.130102,136.32838,73.2879,3.4880153,0.09806,25.5011668,0.26118,0.352700526,7.964434266,75.85794042,193.6437784,34.93989221,26.31137707,2.43454,25960.18709,0.16534,0.33328,0.0688 +2053,11.62353263,0,0,0.030381833,6.093728897,1.28533,4.69789,8.89902816,0.00338,0.017094804,0.407564191,8.59895,0.02163,128.61274,0,5200.09142,348.8132881,708.0209143,15.8289762,0.792660629,1.370772368,194.517543,136.62317,73.85835,3.46580185,0.09299,25.7940152,0.24767,0.350011249,7.940988269,75.77127652,191.8891753,34.63477153,26.03362911,2.40491,25594.75884,0.15491,0.32207,0.06615 +2054,11.59010676,0,0,0.086074623,6.014111965,1.25824,4.44632,8.71149988,0.00304,0.015548878,0.393498128,8.2619,0.01924,128.11692,0,5180.61276,346.0287378,700.2714639,15.0511596,0.719962872,1.199925524,195.904984,136.91796,74.4288,3.4435884,0.08792,26.0868636,0.23416,0.347321972,7.917542271,75.68461262,190.1345723,34.32965085,25.75588115,2.37528,25229.33059,0.14448,0.31086,0.0635 +2055,11.5566809,0,0,0.141767412,5.934495034,1.23115,4.19475,8.5239716,0.0027,0.014002952,0.379432065,7.92485,0.01685,127.6211,0,5161.1341,343.2441876,692.5220135,14.273343,0.647265115,1.02907868,197.292425,137.21275,74.99925,3.42137495,0.08285,26.379712,0.22065,0.344632695,7.894096274,75.59794871,188.3799692,34.02453017,25.4781332,2.34565,24863.90234,0.13405,0.29965,0.06085 +2056,11.52325504,0,0,0.197460202,5.854878103,1.20406,3.94318,8.33644332,0.00236,0.012457026,0.365366002,7.5878,0.01446,127.12528,0,5141.65544,340.4596373,684.7725632,13.4955264,0.574567358,0.858231836,198.679866,137.50754,75.5697,3.3991615,0.07778,26.6725604,0.20714,0.341943418,7.870650276,75.51128481,186.6253661,33.71940949,25.20038524,2.31602,24498.4741,0.12362,0.28844,0.0582 +2057,11.48982917,0,0,0.253152991,5.775261171,1.17697,3.69161,8.14891504,0.00202,0.0109111,0.351299939,7.25075,0.01207,126.62946,0,5122.17678,337.6750871,677.0231128,12.7177098,0.501869601,0.687384992,200.067307,137.80233,76.14015,3.37694805,0.07271,26.9654088,0.19363,0.339254141,7.847204279,75.4246209,184.8707631,33.41428881,24.92263728,2.28639,24133.04585,0.11319,0.27723,0.05555 +2058,11.45640331,0,0,0.308845781,5.69564424,1.14988,3.44004,7.96138676,0.00168,0.009365174,0.337233876,6.9137,0.00968,126.13364,0,5102.69812,334.8905369,669.2736624,11.9398932,0.429171844,0.516538148,201.454748,138.09712,76.7106,3.3547346,0.06764,27.2582572,0.18012,0.336564864,7.823758281,75.337957,183.11616,33.10916813,24.64488933,2.25676,23767.6176,0.10276,0.26602,0.0529 +2059,11.42297744,0,0,0.364538571,5.616027309,1.12279,3.18847,7.77385848,0.00134,0.007819249,0.323167813,6.57665,0.00729,125.63782,0,5083.21946,332.1059866,661.524212,11.1620766,0.356474087,0.345691304,202.842189,138.39191,77.28105,3.33252115,0.06257,27.5511056,0.16661,0.333875587,7.800312283,75.2512931,181.361557,32.80404746,24.36714137,2.22713,23402.18935,0.09233,0.25481,0.05025 +2060,11.38955158,0,0,0.42023136,5.536410377,1.0957,2.9369,7.5863302,0.001,0.006273323,0.30910175,6.2396,0.0049,125.142,0,5063.7408,329.3214364,653.7747616,10.38426,0.28377633,0.17484446,204.22963,138.6867,77.8515,3.3103077,0.0575,27.843954,0.1531,0.33118631,7.776866286,75.16462919,179.6069539,32.49892678,24.08939341,2.1975,23036.7611,0.0819,0.2436,0.0476 +2061,11.27248675,0,0,0.438549903,5.449905342,1.07682,2.80139,7.4556114,9.20E-04,0.005825228,0.299431331,6.02076,0.00449,124.79645,0,5050.16298,328.0531967,646.1582597,9.93955833,0.263361767,0.158985329,204.981368,138.9662,78.27308,3.28340448,0.05466,28.0527831,0.14554,0.328902266,7.734040794,74.93462068,177.8824672,32.17861877,23.79330997,2.15534,22832.07975,0.07732,0.23592,0.0459 +2062,11.15542191,0,0,0.456868446,5.363400306,1.05794,2.66588,7.3248926,8.40E-04,0.005377134,0.289760912,5.80192,0.00408,124.4509,0,5036.58516,326.784957,638.5417578,9.49485666,0.242947203,0.143126197,205.733106,139.2457,78.69466,3.25650126,0.05182,28.2616122,0.13798,0.326618222,7.691215302,74.70461216,176.1579805,31.85831077,23.49722652,2.11318,22627.3984,0.07274,0.22824,0.0442 +2063,11.03835708,0,0,0.475186989,5.276895271,1.03906,2.53037,7.1941738,7.60E-04,0.004929039,0.280090493,5.58308,0.00367,124.10535,0,5023.00734,325.5167174,630.9252559,9.05015499,0.22253264,0.127267066,206.484844,139.5252,79.11624,3.22959804,0.04898,28.4704413,0.13042,0.324334178,7.64838981,74.47460365,174.4334937,31.53800277,23.20114308,2.07102,22422.71705,0.06816,0.22056,0.0425 +2064,10.92129225,0,0,0.493505532,5.190390235,1.02018,2.39486,7.063455,6.80E-04,0.004480945,0.270420074,5.36424,0.00326,123.7598,0,5009.42952,324.2484777,623.308754,8.60545332,0.202118076,0.111407935,207.236582,139.8047,79.53782,3.20269482,0.04614,28.6792704,0.12286,0.322050134,7.605564318,74.24459513,172.709007,31.21769476,22.90505963,2.02886,22218.0357,0.06358,0.21288,0.0408 +2065,10.80422741,0,0,0.511824075,5.103885199,1.0013,2.25935,6.9327362,6.00E-04,0.00403285,0.260749655,5.1454,0.00285,123.41425,0,4995.8517,322.980238,615.6922522,8.16075165,0.181703513,0.095548804,207.98832,140.0842,79.9594,3.1757916,0.0433,28.8880995,0.1153,0.31976609,7.562738826,74.01458662,170.9845203,30.89738676,22.60897618,1.9867,22013.35435,0.059,0.2052,0.0391 +2066,10.68716258,0,0,0.530142618,5.017380164,0.98242,2.12384,6.8020174,5.20E-04,0.003584756,0.251079236,4.92656,0.00244,123.0687,0,4982.27388,321.7119984,608.0757503,7.71604998,0.16128895,0.079689672,208.740058,140.3637,80.38098,3.14888838,0.04046,29.0969286,0.10774,0.317482046,7.519913334,73.7845781,169.2600336,30.57707876,22.31289274,1.94454,21808.673,0.05442,0.19752,0.0374 +2067,10.57009775,0,0,0.54846116,4.930875128,0.96354,1.98833,6.6712986,4.40E-04,0.003136661,0.241408817,4.70772,0.00203,122.72315,0,4968.69606,320.4437587,600.4592484,7.27134831,0.140874386,0.063830541,209.491796,140.6432,80.80256,3.12198516,0.03762,29.3057577,0.10018,0.315198002,7.477087842,73.55456959,167.5355468,30.25677075,22.01680929,1.90238,21603.99164,0.04984,0.18984,0.0357 +2068,10.45303292,0,0,0.566779703,4.844370092,0.94466,1.85282,6.5405798,3.60E-04,0.002688567,0.231738398,4.48888,0.00162,122.3776,0,4955.11824,319.175519,592.8427465,6.82664664,0.120459823,0.04797141,210.243534,140.9227,81.22414,3.09508194,0.03478,29.5145868,0.09262,0.312913958,7.43426235,73.32456107,165.8110601,29.93646275,21.72072584,1.86022,21399.31029,0.04526,0.18216,0.034 +2069,10.33596808,0,0,0.585098246,4.757865057,0.92578,1.71731,6.409861,2.80E-04,0.002240472,0.222067979,4.27004,0.00121,122.03205,0,4941.54042,317.9072793,585.2262446,6.38194497,0.100045259,0.032112278,210.995272,141.2022,81.64572,3.06817872,0.03194,29.7234159,0.08506,0.310629914,7.391436857,73.09455256,164.0865734,29.61615475,21.4246424,1.81806,21194.62894,0.04068,0.17448,0.0323 +2070,10.21890325,0,0,0.603416789,4.671360021,0.9069,1.5818,6.2791422,2.00E-04,0.001792378,0.21239756,4.0512,8.00E-04,121.6865,0,4927.9626,316.6390397,577.6097427,5.9372433,0.079630696,0.016253147,211.74701,141.4817,82.0673,3.0412755,0.0291,29.932245,0.0775,0.30834587,7.348611365,72.86454404,162.3620867,29.29584675,21.12855895,1.7759,20989.94759,0.0361,0.1668,0.0306 +2071,10.02212307,0,0,0.635786112,4.5832321,0.8724,1.50882,6.0402344,1.80E-04,0.00165795,0.205751345,3.90912,7.30E-04,121.05505,0,4903.14712,315.2658641,569.9106122,5.68298413,0.073907751,0.014775588,212.058223,141.98742,82.27609,3.0189421,0.02762,30.0743377,0.07356,0.306884574,7.273310582,72.5688233,160.7822346,29.10923116,20.82837316,1.72584,20819.24604,0.03408,0.16155,0.02951 +2072,9.825342899,0,0,0.668155434,4.495104179,0.8379,1.43584,5.8013266,1.60E-04,0.001523521,0.19910513,3.76704,6.60E-04,120.4236,0,4878.33164,313.8926884,562.2114817,5.42872496,0.068184805,0.013298029,212.369436,142.49314,82.48488,2.9966087,0.02614,30.2164304,0.06962,0.305423278,7.198009799,72.27310256,159.2023825,28.92261557,20.52818737,1.67578,20648.54449,0.03206,0.1563,0.02842 +2073,9.628562723,0,0,0.700524756,4.406976258,0.8034,1.36286,5.5624188,1.40E-04,0.001389093,0.192458915,3.62496,5.90E-04,119.79215,0,4853.51616,312.5195128,554.5123512,5.17446579,0.06246186,0.011820471,212.680649,142.99886,82.69367,2.9742753,0.02466,30.3585231,0.06568,0.303961982,7.122709016,71.97738183,157.6225304,28.73599998,20.22800158,1.62572,20477.84294,0.03004,0.15105,0.02733 +2074,9.431782547,0,0,0.732894079,4.318848337,0.7689,1.28988,5.323511,1.20E-04,0.001254665,0.1858127,3.48288,5.20E-04,119.1607,0,4828.70068,311.1463372,546.8132207,4.92020662,0.056738915,0.010342912,212.991862,143.50458,82.90246,2.9519419,0.02318,30.5006158,0.06174,0.302500686,7.047408233,71.68166109,156.0426783,28.54938439,19.92781579,1.57566,20307.14139,0.02802,0.1458,0.02624 +2075,9.235002372,0,0,0.765263401,4.230720416,0.7344,1.2169,5.0846032,1.00E-04,0.001120236,0.179166485,3.3408,4.50E-04,118.52925,0,4803.8852,309.7731616,539.1140902,4.66594745,0.05101597,0.008865353,213.303075,144.0103,83.11125,2.9296085,0.0217,30.6427085,0.0578,0.30103939,6.97210745,71.38594035,154.4628262,28.3627688,19.62763,1.5256,20136.43985,0.026,0.14055,0.02515 +2076,9.038222196,0,0,0.797632723,4.142592495,0.6999,1.14392,4.8456954,8.00E-05,9.86E-04,0.17252027,3.19872,3.80E-04,117.8978,0,4779.06972,308.399986,531.4149597,4.41168828,0.045293024,0.007387794,213.614288,144.51602,83.32004,2.9072751,0.02022,30.7848012,0.05386,0.299578094,6.896806667,71.09021961,152.8829741,28.17615322,19.32744421,1.47554,19965.7383,0.02398,0.1353,0.02406 +2077,8.841442021,0,0,0.830002046,4.054464574,0.6654,1.07094,4.6067876,6.00E-05,8.51E-04,0.165874055,3.05664,3.10E-04,117.26635,0,4754.25424,307.0268104,523.7158292,4.15742911,0.039570079,0.005910235,213.925501,145.02174,83.52883,2.8849417,0.01874,30.9268939,0.04992,0.298116798,6.821505884,70.79449887,151.303122,27.98953763,19.02725842,1.42548,19795.03675,0.02196,0.13005,0.02297 +2078,8.644661845,0,0,0.862371368,3.966336653,0.6309,0.99796,4.3678798,4.00E-05,7.17E-04,0.15922784,2.91456,2.40E-04,116.6349,0,4729.43876,305.6536347,516.0166987,3.90316994,0.033847134,0.004432676,214.236714,145.52746,83.73762,2.8626083,0.01726,31.0689866,0.04598,0.296655502,6.746205101,70.49877814,149.7232699,27.80292204,18.72707263,1.37542,19624.3352,0.01994,0.1248,0.02188 +2079,8.44788167,0,0,0.894740691,3.878208732,0.5964,0.92498,4.128972,2.00E-05,5.83E-04,0.152581625,2.77248,1.70E-04,116.00345,0,4704.62328,304.2804591,508.3175682,3.64891077,0.028124188,0.002955118,214.547927,146.03318,83.94641,2.8402749,0.01578,31.2110793,0.04204,0.295194206,6.670904317,70.2030574,148.1434178,27.61630645,18.42688684,1.32536,19453.63365,0.01792,0.11955,0.02079 +2080,8.251101494,0,0,0.927110013,3.790080811,0.5619,0.852,3.8900642,0,4.48E-04,0.14593541,2.6304,1.00E-04,115.372,0,4679.8078,302.9072835,500.6184377,3.3946516,0.022401243,0.001477559,214.85914,146.5389,84.1552,2.8179415,0.0143,31.353172,0.0381,0.29373291,6.595603534,69.90733666,146.5635657,27.42969086,18.12670106,1.2753,19282.9321,0.0159,0.1143,0.0197 +2081,7.989282822,0,0,0.952210047,3.713470579,0.55554,0.81269,3.84606461,0,4.26E-04,0.141363939,2.53814,9.00E-05,115.2556,0,4675.23754,302.4981876,493.4012823,3.24927085,0.020790643,0.00134622,215.436683,147.56354,84.37399,2.80653492,0.01358,31.5408237,0.03618,0.293536433,6.542274429,69.65501722,144.9669951,27.21491433,17.88351626,1.23543,19015.26918,0.01501,0.1107,0.01899 +2082,7.72746415,0,0,0.97731008,3.636860347,0.54918,0.77338,3.80206502,0,4.03E-04,0.136792468,2.44588,8.00E-05,115.1392,0,4670.66728,302.0890916,486.184127,3.1038901,0.019180042,0.001214882,216.014226,148.58818,84.59278,2.79512834,0.01286,31.7284754,0.03426,0.293339956,6.488945324,69.40269777,143.3704245,27.00013779,17.64033147,1.19556,18747.60626,0.01412,0.1071,0.01828 +2083,7.465645478,0,0,1.002410114,3.560250114,0.54282,0.73407,3.75806543,0,3.81E-04,0.132220997,2.35362,7.00E-05,115.0228,0,4666.09702,301.6799957,478.9669716,2.95850935,0.017569442,0.001083543,216.591769,149.61282,84.81157,2.78372176,0.01214,31.9161271,0.03234,0.293143479,6.435616218,69.15037833,141.7738538,26.78536125,17.39714668,1.15569,18479.94334,0.01323,0.1035,0.01757 +2084,7.203826805,0,0,1.027510148,3.483639882,0.53646,0.69476,3.71406584,0,3.58E-04,0.127649526,2.26136,6.00E-05,114.9064,0,4661.52676,301.2708997,471.7498162,2.8131286,0.015958842,9.52E-04,217.169312,150.63746,85.03036,2.77231518,0.01142,32.1037788,0.03042,0.292947002,6.382287113,68.89805889,140.1772832,26.57058472,17.15396189,1.11582,18212.28042,0.01234,0.0999,0.01686 +2085,6.942008133,0,0,1.052610181,3.407029649,0.5301,0.65545,3.67006625,0,3.36E-04,0.123078055,2.1691,5.00E-05,114.79,0,4656.9565,300.8618038,464.5326608,2.66774785,0.014348241,8.21E-04,217.746855,151.6621,85.24915,2.7609086,0.0107,32.2914305,0.0285,0.292750525,6.328958007,68.64573944,138.5807126,26.35580818,16.9107771,1.07595,17944.6175,0.01145,0.0963,0.01615 +2086,6.680189461,0,0,1.077710215,3.330419417,0.52374,0.61614,3.62606666,0,3.14E-04,0.118506584,2.07684,4.00E-05,114.6736,0,4652.38624,300.4527078,457.3155055,2.5223671,0.012737641,6.90E-04,218.324398,152.68674,85.46794,2.74950202,0.00998,32.4790822,0.02658,0.292554048,6.275628902,68.39342,136.984142,26.14103164,16.66759231,1.03608,17676.95458,0.01056,0.0927,0.01544 +2087,6.418370789,0,0,1.102810249,3.253809185,0.51738,0.57683,3.58206707,0,2.91E-04,0.113935113,1.98458,3.00E-05,114.5572,0,4647.81598,300.0436119,450.0983501,2.37698635,0.011127041,5.58E-04,218.901941,153.71138,85.68673,2.73809544,0.00926,32.6667339,0.02466,0.292357571,6.222299797,68.14110056,135.3875713,25.92625511,16.42440752,0.99621,17409.29166,0.00967,0.0891,0.01473 +2088,6.156552117,0,0,1.127910282,3.177198952,0.51102,0.53752,3.53806748,0,2.69E-04,0.109363642,1.89232,2.00E-05,114.4408,0,4643.24572,299.6345159,442.8811947,2.2316056,0.00951644,4.27E-04,219.479484,154.73602,85.90552,2.72668886,0.00854,32.8543856,0.02274,0.292161094,6.168970691,67.88878111,133.7910007,25.71147857,16.18122273,0.95634,17141.62875,0.00878,0.0855,0.01402 +2089,5.894733445,0,0,1.153010316,3.10058872,0.50466,0.49821,3.49406789,0,2.46E-04,0.104792171,1.80006,1.00E-05,114.3244,0,4638.67546,299.22542,435.6640393,2.08622485,0.00790584,2.96E-04,220.057027,155.76066,86.12431,2.71528228,0.00782,33.0420373,0.02082,0.291964617,6.115641586,67.63646167,132.1944301,25.49670203,15.93803794,0.91647,16873.96583,0.00789,0.0819,0.01331 +2090,5.632914773,0,0,1.17811035,3.023978488,0.4983,0.4589,3.4500683,0,2.24E-04,0.1002207,1.7078,0,114.208,0,4634.1052,298.816324,428.446884,1.9408441,0.00629524,1.64E-04,220.63457,156.7853,86.3431,2.7038757,0.0071,33.229689,0.0189,0.29176814,6.06231248,67.38414223,130.5978594,25.28192549,15.69485315,0.8766,16606.30291,0.007,0.0783,0.0126 +2091,5.464851785,0,0,1.191289827,2.986676293,0.49533,0.43762,3.42947849,0,2.02E-04,0.097055836,1.64769,0.0012,114.15364,0,4631.96653,298.4499853,424.094326,1.86679494,0.007758679,0.001050708,219.413929,156.47905,85.86515,2.67444168,0.00639,33.119821,0.01701,0.289520936,6.011876245,67.1826857,129.6079485,25.11909824,15.5793344,0.86816,16489.19655,0.0071,0.07583,0.01215 +2092,5.296788798,0,0,1.204469304,2.949374099,0.49236,0.41634,3.40888868,0,1.79E-04,0.093890972,1.58758,0.0024,114.09928,0,4629.82786,298.0836465,419.7417679,1.79274578,0.009222117,0.001937244,218.193288,156.1728,85.3872,2.64500766,0.00568,33.009953,0.01512,0.287273732,5.961440011,66.98122917,128.6180377,24.95627098,15.46381565,0.85972,16372.0902,0.0072,0.07336,0.0117 +2093,5.128725811,0,0,1.217648781,2.912071905,0.48939,0.39506,3.38829887,0,1.57E-04,0.090726108,1.52747,0.0036,114.04492,0,4627.68919,297.7173078,415.3892099,1.71869662,0.010685556,0.002823779,216.972647,155.86655,84.90925,2.61557364,0.00497,32.900085,0.01323,0.285026528,5.911003776,66.77977264,127.6281268,24.79344372,15.3482969,0.85128,16254.98385,0.0073,0.07089,0.01125 +2094,4.960662824,0,0,1.230828258,2.87476971,0.48642,0.37378,3.36770906,0,1.34E-04,0.087561244,1.46736,0.0048,113.99056,0,4625.55052,297.3509691,411.0366519,1.64464746,0.012148995,0.003710314,215.752006,155.5603,84.4313,2.58613962,0.00426,32.790217,0.01134,0.282779324,5.860567541,66.57831611,126.6382159,24.63061646,15.23277815,0.84284,16137.87749,0.0074,0.06842,0.0108 +2095,4.792599837,0,0,1.244007736,2.837467516,0.48345,0.3525,3.34711925,0,1.12E-04,0.08439638,1.40725,0.006,113.9362,0,4623.41185,296.9846303,406.6840939,1.5705983,0.013612434,0.00459685,214.531365,155.25405,83.95335,2.5567056,0.00355,32.680349,0.00945,0.28053212,5.810131306,66.37685958,125.648305,24.4677892,15.1172594,0.8344,16020.77114,0.0075,0.06595,0.01035 +2096,4.62453685,0,0,1.257187213,2.800165322,0.48048,0.33122,3.32652944,0,8.96E-05,0.081231515,1.34714,0.0072,113.88184,0,4621.27318,296.6182916,402.3315359,1.49654914,0.015075873,0.005483385,213.310724,154.9478,83.4754,2.52727158,0.00284,32.570481,0.00756,0.278284916,5.759695071,66.17540305,124.6583941,24.30496195,15.00174065,0.82596,15903.66479,0.0076,0.06348,0.0099 +2097,4.456473863,0,0,1.27036669,2.762863128,0.47751,0.30994,3.30593963,0,6.72E-05,0.078066651,1.28703,0.0084,113.82748,0,4619.13451,296.2519528,397.9789779,1.42249998,0.016539312,0.00636992,212.090083,154.64155,82.99745,2.49783756,0.00213,32.460613,0.00567,0.276037712,5.709258836,65.97394651,123.6684832,24.14213469,14.8862219,0.81752,15786.55844,0.0077,0.06101,0.00945 +2098,4.288410876,0,0,1.283546167,2.725560933,0.47454,0.28866,3.28534982,0,4.48E-05,0.074901787,1.22692,0.0096,113.77312,0,4616.99584,295.8856141,393.6264199,1.34845082,0.01800275,0.007256455,210.869442,154.3353,82.5195,2.46840354,0.00142,32.350745,0.00378,0.273790508,5.658822601,65.77248998,122.6785723,23.97930743,14.77070315,0.80908,15669.45208,0.0078,0.05854,0.009 +2099,4.120347889,0,0,1.296725644,2.688258739,0.47157,0.26738,3.26476001,0,2.24E-05,0.071736923,1.16681,0.0108,113.71876,0,4614.85717,295.5192754,389.2738619,1.27440166,0.019466189,0.008142991,209.648801,154.02905,82.04155,2.43896952,7.10E-04,32.240877,0.00189,0.271543304,5.608386367,65.57103345,121.6886614,23.81648017,14.6551844,0.80064,15552.34573,0.0079,0.05607,0.00855 +2100,3.952284902,0,0,1.309905122,2.650956545,0.4686,0.2461,3.2441702,0,0,0.068572059,1.1067,0.012,113.6644,0,4612.7185,295.1529366,384.9213039,1.2003525,0.020929628,0.009029526,208.42816,153.7228,81.5636,2.4095355,0,32.131009,0,0.2692961,5.557950132,65.36957692,120.6987505,23.65365291,14.53966565,0.7922,15435.23938,0.008,0.0536,0.0081 +2101,3.925936335,0,0,1.283707019,2.64135438,0.465476,0.244459333,3.222542399,0,0,0.068114912,1.099322,0.01192,112.9066373,0,4581.967043,293.9992677,383.8264145,1.19235015,0.020790097,0.008969329,207.0386389,152.6979813,81.01984267,2.39347193,0,31.91680227,0,0.267500793,5.551289457,65.27148573,120.1625725,23.52810697,14.51408374,0.786918667,15339.11788,0.007946667,0.053242667,0.008046 +2102,3.899587769,0,0,1.257508917,2.631752216,0.462352,0.242818667,3.200914597,0,0,0.067657765,1.091944,0.01184,112.1488747,0,4551.215587,292.8455987,382.7315252,1.1843478,0.020650566,0.008909132,205.6491179,151.6731627,80.47608533,2.37740836,0,31.70259555,0,0.265705485,5.544628781,65.17339454,119.6263945,23.40256104,14.48850183,0.781637333,15242.99639,0.007893333,0.052885333,0.007992 +2103,3.873239203,0,0,1.231310814,2.622150051,0.459228,0.241178,3.179286796,0,0,0.067200618,1.084566,0.01176,111.391112,0,4520.46413,291.6919298,381.6366359,1.17634545,0.020511035,0.008848935,204.2595968,150.648344,79.932328,2.36134479,0,31.48838882,0,0.263910178,5.537968106,65.07530334,119.0902166,23.2770151,14.46291992,0.776356,15146.8749,0.00784,0.052528,0.007938 +2104,3.846890637,0,0,1.205112712,2.612547886,0.456104,0.239537333,3.157658995,0,0,0.066743471,1.077188,0.01168,110.6333493,0,4489.712673,290.5382608,380.5417466,1.1683431,0.020371505,0.008788739,202.8700757,149.6235253,79.38857067,2.34528122,0,31.27418209,0,0.262114871,5.531307431,64.97721215,118.5540386,23.15146916,14.43733802,0.771074667,15050.7534,0.007786667,0.052170667,0.007884 +2105,3.820542071,0,0,1.178914609,2.602945722,0.45298,0.237896667,3.136031193,0,0,0.066286324,1.06981,0.0116,109.8755867,0,4458.961217,289.3845919,379.4468572,1.16034075,0.020231974,0.008728542,201.4805547,148.5987067,78.84481333,2.32921765,0,31.05997537,0,0.260319563,5.524646756,64.87912096,118.0178606,23.02592322,14.41175611,0.765793333,14954.63191,0.007733333,0.051813333,0.00783 +2106,3.794193505,0,0,1.152716507,2.593343557,0.449856,0.236256,3.114403392,0,0,0.065829177,1.062432,0.01152,109.117824,0,4428.20976,288.2309229,378.3519679,1.1523384,0.020092443,0.008668345,200.0910336,147.573888,78.301056,2.31315408,0,30.84576864,0,0.258524256,5.517986081,64.78102977,117.4816827,22.90037729,14.3861742,0.760512,14858.51042,0.00768,0.051456,0.007776 +2107,3.767844939,0,0,1.126518405,2.583741393,0.446732,0.234615333,3.092775591,0,0,0.06537203,1.055054,0.01144,108.3600613,0,4397.458303,287.077254,377.2570786,1.14433605,0.019952912,0.008608148,198.7015125,146.5490693,77.75729867,2.29709051,0,30.63156191,0,0.256728949,5.511325405,64.68293857,116.9455047,22.77483135,14.36059229,0.755230667,14762.38892,0.007626667,0.051098667,0.007722 +2108,3.741496373,0,0,1.100320302,2.574139228,0.443608,0.232974667,3.071147789,0,0,0.064914883,1.047676,0.01136,107.6022987,0,4366.706847,285.923585,376.1621893,1.1363337,0.019813381,0.008547951,197.3119915,145.5242507,77.21354133,2.28102694,0,30.41735519,0,0.254933641,5.50466473,64.58484738,116.4093268,22.64928541,14.33501038,0.749949333,14666.26743,0.007573333,0.050741333,0.007668 +2109,3.715147807,0,0,1.0741222,2.564537063,0.440484,0.231334,3.049519988,0,0,0.064457735,1.040298,0.01128,106.844536,0,4335.95539,284.7699161,375.0672999,1.12833135,0.01967385,0.008487754,195.9224704,144.499432,76.669784,2.26496337,0,30.20314846,0,0.253138334,5.498004055,64.48675619,115.8731488,22.52373948,14.30942848,0.744668,14570.14594,0.00752,0.050384,0.007614 +2110,3.688799241,0,0,1.047924097,2.554934899,0.43736,0.229693333,3.027892187,0,0,0.064000588,1.03292,0.0112,106.0867733,0,4305.203933,283.6162471,373.9724106,1.120329,0.019534319,0.008427558,194.5329493,143.4746133,76.12602667,2.2488998,0,29.98894173,0,0.251343027,5.49134338,64.388665,115.3369708,22.39819354,14.28384657,0.739386667,14474.02444,0.007466667,0.050026667,0.00756 +2111,3.662450675,0,0,1.021725995,2.545332734,0.434236,0.228052667,3.006264385,0,0,0.063543441,1.025542,0.01112,105.3290107,0,4274.452477,282.4625782,372.8775213,1.11232665,0.019394789,0.008367361,193.1434283,142.4497947,75.58226933,2.23283623,0,29.77473501,0,0.249547719,5.484682705,64.2905738,114.8007929,22.2726476,14.25826466,0.734105333,14377.90295,0.007413333,0.049669333,0.007506 +2112,3.636102109,0,0,0.995527892,2.53573057,0.431112,0.226412,2.984636584,0,0,0.063086294,1.018164,0.01104,104.571248,0,4243.70102,281.3089093,371.7826319,1.1043243,0.019255258,0.008307164,191.7539072,141.424976,75.038512,2.21677266,0,29.56052828,0,0.247752412,5.47802203,64.19248261,114.2646149,22.14710166,14.23268275,0.728824,14281.78146,0.00736,0.049312,0.007452 +2113,3.609753543,0,0,0.96932979,2.526128405,0.427988,0.224771333,2.963008783,0,0,0.062629147,1.010786,0.01096,103.8134853,0,4212.949563,280.1552403,370.6877426,1.09632195,0.019115727,0.008246967,190.3643861,140.4001573,74.49475467,2.20070909,0,29.34632155,0,0.245957105,5.471361354,64.09439142,113.7284369,22.02155573,14.20710085,0.723542667,14185.65996,0.007306667,0.048954667,0.007398 +2114,3.583404977,0,0,0.943131688,2.51652624,0.424864,0.223130667,2.941380981,0,0,0.062172,1.003408,0.01088,103.0557227,0,4182.198107,279.0015714,369.5928533,1.0883196,0.018976196,0.00818677,188.9748651,139.3753387,73.95099733,2.18464552,0,29.13211483,0,0.244161797,5.464700679,63.99630023,113.192259,21.89600979,14.18151894,0.718261333,14089.53847,0.007253333,0.048597333,0.007344 +2115,3.557056411,0,0,0.916933585,2.506924076,0.42174,0.22149,2.91975318,0,0,0.061714853,0.99603,0.0108,102.29796,0,4151.44665,277.8479024,368.497964,1.08031725,0.018836665,0.008126573,187.585344,138.35052,73.40724,2.16858195,0,28.9179081,0,0.24236649,5.458040004,63.89820903,112.656081,21.77046385,14.15593703,0.71298,13993.41698,0.0072,0.04824,0.00729 +2116,3.530707845,0,0,0.890735483,2.497321911,0.418616,0.219849333,2.898125379,0,0,0.061257706,0.988652,0.01072,101.5401973,0,4120.695193,276.6942335,367.4030746,1.0723149,0.018697134,0.008066377,186.1958229,137.3257013,72.86348267,2.15251838,0,28.70370137,0,0.240571183,5.451379329,63.80011784,112.1199031,21.64491791,14.13035512,0.707698667,13897.29548,0.007146667,0.047882667,0.007236 +2117,3.504359279,0,0,0.86453738,2.487719747,0.415492,0.218208667,2.876497577,0,0,0.060800559,0.981274,0.01064,100.7824347,0,4089.943737,275.5405645,366.3081853,1.06431255,0.018557603,0.00800618,184.8063019,136.3008827,72.31972533,2.13645481,0,28.48949465,0,0.238775875,5.444718654,63.70202665,111.5837251,21.51937198,14.10477322,0.702417333,13801.17399,0.007093333,0.047525333,0.007182 +2118,3.478010713,0,0,0.838339278,2.478117582,0.412368,0.216568,2.854869776,0,0,0.060343412,0.973896,0.01056,100.024672,0,4059.19228,274.3868956,365.213296,1.0563102,0.018418073,0.007945983,183.4167808,135.276064,71.775968,2.12039124,0,28.27528792,0,0.236980568,5.438057978,63.60393545,111.0475471,21.39382604,14.07919131,0.697136,13705.0525,0.00704,0.047168,0.007128 +2119,3.451662147,0,0,0.812141175,2.468515417,0.409244,0.214927333,2.833241975,0,0,0.059886265,0.966518,0.01048,99.26690933,0,4028.440823,273.2332266,364.1184067,1.04830785,0.018278542,0.007885786,182.0272597,134.2512453,71.23221067,2.10432767,0,28.06108119,0,0.235185261,5.431397303,63.50584426,110.5113692,21.2682801,14.0536094,0.691854667,13608.931,0.006986667,0.046810667,0.007074 +2120,3.425313581,0,0,0.785943073,2.458913253,0.40612,0.213286667,2.811614173,0,0,0.059429118,0.95914,0.0104,98.50914667,0,3997.689367,272.0795577,363.0235173,1.0403055,0.018139011,0.007825589,180.6377387,133.2264267,70.68845333,2.0882641,0,27.84687447,0,0.233389953,5.424736628,63.40775307,109.9751912,21.14273416,14.02802749,0.686573333,13512.80951,0.006933333,0.046453333,0.00702 +2121,3.398965015,0,0,0.75974497,2.449311088,0.402996,0.211646,2.789986372,0,0,0.058971971,0.951762,0.01032,97.751384,0,3966.93791,270.9258887,361.928628,1.03230315,0.01799948,0.007765392,179.2482176,132.201608,70.144696,2.07220053,0,27.63266774,0,0.231594646,5.418075953,63.30966188,109.4390132,21.01718823,14.00244558,0.681292,13416.68802,0.00688,0.046096,0.006966 +2122,3.372616449,0,0,0.733546868,2.439708924,0.399872,0.210005333,2.768358571,0,0,0.058514824,0.944384,0.01024,96.99362133,0,3936.186453,269.7722198,360.8337387,1.0243008,0.017859949,0.007705196,177.8586965,131.1767893,69.60093867,2.05613696,0,27.41846101,0,0.229799339,5.411415278,63.21157068,108.9028353,20.89164229,13.97686368,0.676010667,13320.56652,0.006826667,0.045738667,0.006912 +2123,3.346267883,0,0,0.707348766,2.430106759,0.396748,0.208364667,2.746730769,0,0,0.058057677,0.937006,0.01016,96.23585867,0,3905.434997,268.6185508,359.7388494,1.01629845,0.017720418,0.007644999,176.4691755,130.1519707,69.05718133,2.04007339,0,27.20425429,0,0.228004031,5.404754602,63.11347949,108.3666573,20.76609635,13.95128177,0.670729333,13224.44503,0.006773333,0.045381333,0.006858 +2124,3.319919317,0,0,0.681150663,2.420504594,0.393624,0.206724,2.725102968,0,0,0.05760053,0.929628,0.01008,95.478096,0,3874.68354,267.4648819,358.64396,1.0082961,0.017580888,0.007584802,175.0796544,129.127152,68.513424,2.02400982,0,26.99004756,0,0.226208724,5.398093927,63.0153883,107.8304793,20.64055041,13.92569986,0.665448,13128.32354,0.00672,0.045024,0.006804 +2125,3.293570751,0,0,0.654952561,2.41090243,0.3905,0.205083333,2.703475167,0,0,0.057143383,0.92225,0.01,94.72033333,0,3843.932083,266.3112129,357.5490707,1.00029375,0.017441357,0.007524605,173.6901333,128.1023333,67.96966667,2.00794625,0,26.77584083,0,0.224413417,5.391433252,62.91729711,107.2943014,20.51500448,13.90011795,0.660166667,13032.20204,0.006666667,0.044666667,0.00675 +2126,3.267222185,0,0,0.628754458,2.401300265,0.387376,0.203442667,2.681847365,0,0,0.056686235,0.914872,0.00992,93.96257067,0,3813.180627,265.157544,356.4541814,0.9922914,0.017301826,0.007464408,172.3006123,127.0775147,67.42590933,1.99188268,0,26.56163411,0,0.222618109,5.384772577,62.81920591,106.7581234,20.38945854,13.87453605,0.654885333,12936.08055,0.006613333,0.044309333,0.006696 +2127,3.240873619,0,0,0.602556356,2.391698101,0.384252,0.201802,2.660219564,0,0,0.056229088,0.907494,0.00984,93.204808,0,3782.42917,264.0038751,355.359292,0.98428905,0.017162295,0.007404211,170.9110912,126.052696,66.882152,1.97581911,0,26.34742738,0,0.220822802,5.378111902,62.72111472,106.2219455,20.2639126,13.84895414,0.649604,12839.95906,0.00656,0.043952,0.006642 +2128,3.214525053,0,0,0.576358253,2.382095936,0.381128,0.200161333,2.638591763,0,0,0.055771941,0.900116,0.00976,92.44704533,0,3751.677713,262.8502061,354.2644027,0.9762867,0.017022764,0.007344014,169.5215701,125.0278773,66.33839467,1.95975554,0,26.13322065,0,0.219027495,5.371451227,62.62302353,105.6857675,20.13836666,13.82337223,0.644322667,12743.83756,0.006506667,0.043594667,0.006588 +2129,3.188176487,0,0,0.550160151,2.372493771,0.378004,0.198520667,2.616963961,0,0,0.055314794,0.892738,0.00968,91.68928267,0,3720.926257,261.6965372,353.1695134,0.96828435,0.016883233,0.007283818,168.1320491,124.0030587,65.79463733,1.94369197,0,25.91901393,0,0.217232187,5.364790551,62.52493233,105.1495895,20.01282073,13.79779032,0.639041333,12647.71607,0.006453333,0.043237333,0.006534 +2130,3.161827921,0,0,0.523962049,2.362891607,0.37488,0.19688,2.59533616,0,0,0.054857647,0.88536,0.0096,90.93152,0,3690.1748,260.5428682,352.0746241,0.960282,0.016743702,0.007223621,166.742528,122.97824,65.25088,1.9276284,0,25.7048072,0,0.21543688,5.358129876,62.42684114,104.6134116,19.88727479,13.77220842,0.63376,12551.59458,0.0064,0.04288,0.00648 +2131,3.135479355,0,0,0.497763946,2.353289442,0.371756,0.195239333,2.573708359,0,0,0.0544005,0.877982,0.00952,90.17375733,0,3659.423343,259.3891993,350.9797347,0.95227965,0.016604172,0.007163424,165.3530069,121.9534213,64.70712267,1.91156483,0,25.49060047,0,0.213641573,5.351469201,62.32874995,104.0772336,19.76172885,13.74662651,0.628478667,12455.47308,0.006346667,0.042522667,0.006426 +2132,3.109130789,0,0,0.471565844,2.343687278,0.368632,0.193598667,2.552080557,0,0,0.053943353,0.870604,0.00944,89.41599467,0,3628.671887,258.2355303,349.8848454,0.9442773,0.016464641,0.007103227,163.9634859,120.9286027,64.16336533,1.89550126,0,25.27639375,0,0.211846265,5.344808526,62.23065876,103.5410556,19.63618291,13.7210446,0.623197333,12359.35159,0.006293333,0.042165333,0.006372 +2133,3.082782223,0,0,0.445367741,2.334085113,0.365508,0.191958,2.530452756,0,0,0.053486206,0.863226,0.00936,88.658232,0,3597.92043,257.0818614,348.7899561,0.93627495,0.01632511,0.00704303,162.5739648,119.903784,63.619608,1.87943769,0,25.06218702,0,0.210050958,5.338147851,62.13256756,103.0048777,19.51063698,13.69546269,0.617916,12263.23009,0.00624,0.041808,0.006318 +2134,3.056433657,0,0,0.419169639,2.324482948,0.362384,0.190317333,2.508824955,0,0,0.053029059,0.855848,0.00928,87.90046933,0,3567.168973,255.9281924,347.6950668,0.9282726,0.016185579,0.006982833,161.1844437,118.8789653,63.07585067,1.86337412,0,24.84798029,0,0.208255651,5.331487175,62.03447637,102.4686997,19.38509104,13.66988078,0.612634667,12167.1086,0.006186667,0.041450667,0.006264 +2135,3.030085091,0,0,0.392971536,2.314880784,0.35926,0.188676667,2.487197153,0,0,0.052571912,0.84847,0.0092,87.14270667,0,3536.417517,254.7745235,346.6001774,0.92027025,0.016046048,0.006922637,159.7949227,117.8541467,62.53209333,1.84731055,0,24.63377357,0,0.206460343,5.3248265,61.93638518,101.9325218,19.2595451,13.64429888,0.607353333,12070.98711,0.006133333,0.041093333,0.00621 +2136,3.003736525,0,0,0.366773434,2.305278619,0.356136,0.187036,2.465569352,0,0,0.052114765,0.841092,0.00912,86.384944,0,3505.66606,253.6208545,345.5052881,0.9122679,0.015906517,0.00686244,158.4054016,116.829328,61.988336,1.83124698,0,24.41956684,0,0.204665036,5.318165825,61.83829399,101.3963438,19.13399916,13.61871697,0.602072,11974.86561,0.00608,0.040736,0.006156 +2137,2.977387959,0,0,0.340575332,2.295676455,0.353012,0.185395333,2.443941551,0,0,0.051657618,0.833714,0.00904,85.62718133,0,3474.914603,252.4671856,344.4103988,0.90426555,0.015766986,0.006802243,157.0158805,115.8045093,61.44457867,1.81518341,0,24.20536011,0,0.202869729,5.31150515,61.74020279,100.8601658,19.00845323,13.59313506,0.596790667,11878.74412,0.006026667,0.040378667,0.006102 +2138,2.951039393,0,0,0.314377229,2.28607429,0.349888,0.183754667,2.422313749,0,0,0.051200471,0.826336,0.00896,84.86941867,0,3444.163147,251.3135166,343.3155095,0.8962632,0.015627456,0.006742046,155.6263595,114.7796907,60.90082133,1.79911984,0,23.99115339,0,0.201074421,5.304844475,61.6421116,100.3239879,18.88290729,13.56755315,0.591509333,11782.62263,0.005973333,0.040021333,0.006048 +2139,2.924690827,0,0,0.288179127,2.276472125,0.346764,0.182114,2.400685948,0,0,0.050743324,0.818958,0.00888,84.111656,0,3413.41169,250.1598477,342.2206201,0.88826085,0.015487925,0.006681849,154.2368384,113.754872,60.357064,1.78305627,0,23.77694666,0,0.199279114,5.2981838,61.54402041,99.7878099,18.75736135,13.54197125,0.586228,11686.50113,0.00592,0.039664,0.005994 +2140,2.898342261,0,0,0.261981024,2.266869961,0.34364,0.180473333,2.379058147,0,0,0.050286177,0.81158,0.0088,83.35389333,0,3382.660233,249.0061787,341.1257308,0.8802585,0.015348394,0.006621652,152.8473173,112.7300533,59.81330667,1.7669927,0,23.56273993,0,0.197483807,5.291523124,61.44592922,99.25163193,18.63181541,13.51638934,0.580946667,11590.37964,0.005866667,0.039306667,0.00594 +2141,2.871993695,0,0,0.235782922,2.257267796,0.340516,0.178832667,2.357430345,0,0,0.04982903,0.804202,0.00872,82.59613067,0,3351.908777,247.8525098,340.0308415,0.87225615,0.015208863,0.006561456,151.4577963,111.7052347,59.26954933,1.75092913,0,23.34853321,0,0.195688499,5.284862449,61.34783802,98.71545397,18.50626948,13.49080743,0.575665333,11494.25815,0.005813333,0.038949333,0.005886 +2142,2.845645129,0,0,0.209584819,2.247665632,0.337392,0.177192,2.335802544,0,0,0.049371882,0.796824,0.00864,81.838368,0,3321.15732,246.6988409,338.9359521,0.8642538,0.015069332,0.006501259,150.0682752,110.680416,58.725792,1.73486556,0,23.13432648,0,0.193893192,5.278201774,61.24974683,98.17927601,18.38072354,13.46522552,0.570384,11398.13665,0.00576,0.038592,0.005832 +2143,2.819296563,0,0,0.183386717,2.238063467,0.334268,0.175551333,2.314174743,0,0,0.048914735,0.789446,0.00856,81.08060533,0,3290.405863,245.5451719,337.8410628,0.85625145,0.014929801,0.006441062,148.6787541,109.6555973,58.18203467,1.71880199,0,22.92011975,0,0.192097885,5.271541099,61.15165564,97.64309804,18.2551776,13.43964362,0.565102667,11302.01516,0.005706667,0.038234667,0.005778 +2144,2.792947997,0,0,0.157188615,2.228461303,0.331144,0.173910667,2.292546941,0,0,0.048457588,0.782068,0.00848,80.32284267,0,3259.654407,244.391503,336.7461735,0.8482491,0.01479027,0.006380865,147.2892331,108.6307787,57.63827733,1.70273842,0,22.70591303,0,0.190302577,5.264880424,61.05356444,97.10692008,18.12963166,13.41406171,0.559821333,11205.89367,0.005653333,0.037877333,0.005724 +2145,2.766599431,0,0,0.130990512,2.218859138,0.32802,0.17227,2.27091914,0,0,0.048000441,0.77469,0.0084,79.56508,0,3228.90295,243.237834,335.6512842,0.84024675,0.01465074,0.006320668,145.899712,107.60596,57.09452,1.68667485,0,22.4917063,0,0.18850727,5.258219748,60.95547325,96.57074212,18.00408573,13.3884798,0.55454,11109.77217,0.0056,0.03752,0.00567 +2146,2.740250865,0,0,0.10479241,2.209256973,0.324896,0.170629333,2.249291339,0,0,0.047543294,0.767312,0.00832,78.80731733,0,3198.151493,242.0841651,334.5563948,0.8322444,0.014511209,0.006260471,144.5101909,106.5811413,56.55076267,1.67061128,0,22.27749957,0,0.186711963,5.251559073,60.85738206,96.03456415,17.87853979,13.36289789,0.549258667,11013.65068,0.005546667,0.037162667,0.005616 +2147,2.713902299,0,0,0.078594307,2.199654809,0.321772,0.168988667,2.227663537,0,0,0.047086147,0.759934,0.00824,78.04955467,0,3167.400037,240.9304961,333.4615055,0.82424205,0.014371678,0.006200275,143.1206699,105.5563227,56.00700533,1.65454771,0,22.06329285,0,0.184916655,5.244898398,60.75929087,95.49838619,17.75299385,13.33731598,0.543977333,10917.52919,0.005493333,0.036805333,0.005562 +2148,2.687553733,0,0,0.052396205,2.190052644,0.318648,0.167348,2.206035736,0,0,0.046629,0.752556,0.00816,77.291792,0,3136.64858,239.7768272,332.3666162,0.8162397,0.014232147,0.006140078,141.7311488,104.531504,55.463248,1.63848414,0,21.84908612,0,0.183121348,5.238237723,60.66119967,94.96220823,17.62744791,13.31173408,0.538696,10821.40769,0.00544,0.036448,0.005508 +2149,2.661205167,0,0,0.026198102,2.18045048,0.315524,0.165707333,2.184407935,0,0,0.046171853,0.745178,0.00808,76.53402933,0,3105.897123,238.6231582,331.2717269,0.80823735,0.014092616,0.006079881,140.3416277,103.5066853,54.91949067,1.62242057,0,21.63487939,0,0.181326041,5.231577048,60.56310848,94.42603026,17.50190198,13.28615217,0.533414667,10725.2862,0.005386667,0.036090667,0.005454 +2150,2.634856601,0,0,0,2.170848315,0.3124,0.164066667,2.162780133,0,0,0.045714706,0.7378,0.008,75.77626667,0,3075.145667,237.4694893,330.1768375,0.800235,0.013953085,0.006019684,138.9521067,102.4818667,54.37573333,1.606357,0,21.42067267,0,0.179530733,5.224916372,60.46501729,93.8898523,17.37635604,13.26057026,0.528133333,10629.16471,0.005333333,0.035733333,0.0054 +2151,2.608508035,0,0,0,2.16124615,0.309276,0.162426,2.141152332,0,0,0.045257559,0.730422,0.00792,75.018504,0,3044.39421,236.3158203,329.0819482,0.79223265,0.013813554,0.005959487,137.5625856,101.457048,53.831976,1.59029343,0,21.20646594,0,0.177735426,5.218255697,60.3669261,93.35367434,17.2508101,13.23498835,0.522852,10533.04321,0.00528,0.035376,0.005346 +2152,2.582159469,0,0,0,2.151643986,0.306152,0.160785333,2.119524531,0,0,0.044800412,0.723044,0.00784,74.26074133,0,3013.642753,235.1621514,327.9870589,0.7842303,0.013674024,0.00589929,136.1730645,100.4322293,53.28821867,1.57422986,0,20.99225921,0,0.175940119,5.211595022,60.2688349,92.81749637,17.12526416,13.20940645,0.517570667,10436.92172,0.005226667,0.035018667,0.005292 +2153,2.555810903,0,0,0,2.142041821,0.303028,0.159144667,2.097896729,0,0,0.044343265,0.715666,0.00776,73.50297867,0,2982.891297,234.0084824,326.8921695,0.77622795,0.013534493,0.005839093,134.7835435,99.40741067,52.74446133,1.55816629,0,20.77805249,0,0.174144811,5.204934347,60.17074371,92.28131841,16.99971823,13.18382454,0.512289333,10340.80023,0.005173333,0.034661333,0.005238 +2154,2.529462337,0,0,0,2.132439657,0.299904,0.157504,2.076268928,0,0,0.043886118,0.708288,0.00768,72.745216,0,2952.13984,232.8548135,325.7972802,0.7682256,0.013394962,0.005778897,133.3940224,98.382592,52.200704,1.54210272,0,20.56384576,0,0.172349504,5.198273672,60.07265252,91.74514045,16.87417229,13.15824263,0.507008,10244.67873,0.00512,0.034304,0.005184 +2155,2.503113771,0,0,0,2.122837492,0.29678,0.155863333,2.054641127,0,0,0.043428971,0.70091,0.0076,71.98745333,0,2921.388383,231.7011445,324.7023909,0.76022325,0.013255431,0.0057187,132.0045013,97.35777333,51.65694667,1.52603915,0,20.34963903,0,0.170554197,5.191612997,59.97456132,91.20896248,16.74862635,13.13266072,0.501726667,10148.55724,0.005066667,0.033946667,0.00513 +2156,2.476765205,0,0,0,2.113235327,0.293656,0.154222667,2.033013325,0,0,0.042971824,0.693532,0.00752,71.22969067,0,2890.636927,230.5474756,323.6075016,0.7522209,0.0131159,0.005658503,130.6149803,96.33295467,51.11318933,1.50997558,0,20.13543231,0,0.168758889,5.184952321,59.87647013,90.67278452,16.62308041,13.10707882,0.496445333,10052.43575,0.005013333,0.033589333,0.005076 +2157,2.450416639,0,0,0,2.103633163,0.290532,0.152582,2.011385524,0,0,0.042514677,0.686154,0.00744,70.471928,0,2859.88547,229.3938067,322.5126122,0.74421855,0.012976369,0.005598306,129.2254592,95.308136,50.569432,1.49391201,0,19.92122558,0,0.166963582,5.178291646,59.77837894,90.13660656,16.49753448,13.08149691,0.491164,9956.314253,0.00496,0.033232,0.005022 +2158,2.424068073,0,0,0,2.094030998,0.287408,0.150941333,1.989757723,0,0,0.04205753,0.678776,0.00736,69.71416533,0,2829.134013,228.2401377,321.4177229,0.7362162,0.012836839,0.005538109,127.8359381,94.28331733,50.02567467,1.47784844,0,19.70701885,0,0.165168275,5.171630971,59.68028775,89.60042859,16.37198854,13.055915,0.485882667,9860.192759,0.004906667,0.032874667,0.004968 +2159,2.397719507,0,0,0,2.084428834,0.284284,0.149300667,1.968129921,0,0,0.041600382,0.671398,0.00728,68.95640267,0,2798.382557,227.0864688,320.3228336,0.72821385,0.012697308,0.005477912,126.4464171,93.25849867,49.48191733,1.46178487,0,19.49281213,0,0.163372967,5.164970296,59.58219655,89.06425063,16.2464426,13.03033309,0.480601333,9764.071266,0.004853333,0.032517333,0.004914 +2160,2.371370941,0,0,0,2.074826669,0.28116,0.14766,1.94650212,0,0,0.041143235,0.66402,0.0072,68.19864,0,2767.6311,225.9327998,319.2279443,0.7202115,0.012557777,0.005417716,125.056896,92.23368,48.93816,1.4457213,0,19.2786054,0,0.16157766,5.158309621,59.48410536,88.52807267,16.12089666,13.00475118,0.47532,9667.949772,0.0048,0.03216,0.00486 +2161,2.345022375,0,0,0,2.065224504,0.278036,0.146019333,1.924874319,0,0,0.040686088,0.656642,0.00712,67.44087733,0,2736.879643,224.7791309,318.1330549,0.71220915,0.012418246,0.005357519,123.6673749,91.20886133,48.39440267,1.42965773,0,19.06439867,0,0.159782353,5.151648945,59.38601417,87.9918947,15.99535073,12.97916928,0.470038667,9571.828279,0.004746667,0.031802667,0.004806 +2162,2.318673809,0,0,0,2.05562234,0.274912,0.144378667,1.903246517,0,0,0.040228941,0.649264,0.00704,66.68311467,0,2706.128187,223.6254619,317.0381656,0.7042068,0.012278715,0.005297322,122.2778539,90.18404267,47.85064533,1.41359416,0,18.85019195,0,0.157987045,5.14498827,59.28792298,87.45571674,15.86980479,12.95358737,0.464757333,9475.706786,0.004693333,0.031445333,0.004752 +2163,2.292325243,0,0,0,2.046020175,0.271788,0.142738,1.881618716,0,0,0.039771794,0.641886,0.00696,65.925352,0,2675.37673,222.471793,315.9432763,0.69620445,0.012139184,0.005237125,120.8883328,89.159224,47.306888,1.39753059,0,18.63598522,0,0.156191738,5.138327595,59.18983178,86.91953878,15.74425885,12.92800546,0.459476,9379.585292,0.00464,0.031088,0.004698 +2164,2.265976677,0,0,0,2.036418011,0.268664,0.141097333,1.859990915,0,0,0.039314647,0.634508,0.00688,65.16758933,0,2644.625273,221.318124,314.848387,0.6882021,0.011999653,0.005176928,119.4988117,88.13440533,46.76313067,1.38146702,0,18.42177849,0,0.154396431,5.13166692,59.09174059,86.38336081,15.61871291,12.90242355,0.454194667,9283.463799,0.004586667,0.030730667,0.004644 +2165,2.239628111,0,0,0,2.026815846,0.26554,0.139456667,1.838363113,0,0,0.0388575,0.62713,0.0068,64.40982667,0,2613.873817,220.1644551,313.7534976,0.68019975,0.011860123,0.005116731,118.1092907,87.10958667,46.21937333,1.36540345,0,18.20757177,0,0.152601123,5.125006245,58.9936494,85.84718285,15.49316698,12.87684165,0.448913333,9187.342305,0.004533333,0.030373333,0.00459 +2166,2.213279545,0,0,0,2.017213681,0.262416,0.137816,1.816735312,0,0,0.038400353,0.619752,0.00672,63.652064,0,2583.12236,219.0107861,312.6586083,0.6721974,0.011720592,0.005056535,116.7197696,86.084768,45.675616,1.34933988,0,17.99336504,0,0.150805816,5.11834557,58.89555821,85.31100489,15.36762104,12.85125974,0.443632,9091.220812,0.00448,0.030016,0.004536 +2167,2.186930979,0,0,0,2.007611517,0.259292,0.136175333,1.795107511,0,0,0.037943206,0.612374,0.00664,62.89430133,0,2552.370903,217.8571172,311.563719,0.66419505,0.011581061,0.004996338,115.3302485,85.05994933,45.13185867,1.33327631,0,17.77915831,0,0.149010509,5.111684894,58.79746701,84.77482692,15.2420751,12.82567783,0.438350667,8995.099319,0.004426667,0.029658667,0.004482 +2168,2.160582413,0,0,0,1.998009352,0.256168,0.134534667,1.773479709,0,0,0.037486059,0.604996,0.00656,62.13653867,0,2521.619447,216.7034482,310.4688296,0.6561927,0.01144153,0.004936141,113.9407275,84.03513067,44.58810133,1.31721274,0,17.56495159,0,0.147215201,5.105024219,58.69937582,84.23864896,15.11652916,12.80009592,0.433069333,8898.977825,0.004373333,0.029301333,0.004428 +2169,2.134233847,0,0,0,1.988407188,0.253044,0.132894,1.751851908,0,0,0.037028912,0.597618,0.00648,61.378776,0,2490.86799,215.5497793,309.3739403,0.64819035,0.011301999,0.004875944,112.5512064,83.010312,44.044344,1.30114917,0,17.35074486,0,0.145419894,5.098363544,58.60128463,83.702471,14.99098323,12.77451402,0.427788,8802.856332,0.00432,0.028944,0.004374 +2170,2.107885281,0,0,0,1.978805023,0.24992,0.131253333,1.730224107,0,0,0.036571765,0.59024,0.0064,60.62101333,0,2460.116533,214.3961103,308.279051,0.640188,0.011162468,0.004815747,111.1616853,81.98549333,43.50058667,1.2850856,0,17.13653813,0,0.143624587,5.091702869,58.50319343,83.16629303,14.86543729,12.74893211,0.422506667,8706.734838,0.004266667,0.028586667,0.00432 +2171,2.081536715,0,0,0,1.969202858,0.246796,0.129612667,1.708596305,0,0,0.036114618,0.582862,0.00632,59.86325067,0,2429.365077,213.2424414,307.1841617,0.63218565,0.011022937,0.00475555,109.7721643,80.96067467,42.95682933,1.26902203,0,16.92233141,0,0.141829279,5.085042194,58.40510224,82.63011507,14.73989135,12.7233502,0.417225333,8610.613345,0.004213333,0.028229333,0.004266 +2172,2.055188149,0,0,0,1.959600694,0.243672,0.127972,1.686968504,0,0,0.035657471,0.575484,0.00624,59.105488,0,2398.61362,212.0887725,306.0892723,0.6241833,0.010883407,0.004695354,108.3826432,79.935856,42.413072,1.25295846,0,16.70812468,0,0.140033972,5.078381518,58.30701105,82.09393711,14.61434541,12.69776829,0.411944,8514.491851,0.00416,0.027872,0.004212 +2173,2.028839583,0,0,0,1.949998529,0.240548,0.126331333,1.665340703,0,0,0.035200324,0.568106,0.00616,58.34772533,0,2367.862163,210.9351035,304.994383,0.61618095,0.010743876,0.004635157,106.9931221,78.91103733,41.86931467,1.23689489,0,16.49391795,0,0.138238665,5.071720843,58.20891986,81.55775914,14.48879948,12.67218638,0.406662667,8418.370358,0.004106667,0.027514667,0.004158 +2174,2.002491017,0,0,0,1.940396365,0.237424,0.124690667,1.643712901,0,0,0.034743177,0.560728,0.00608,57.58996267,0,2337.110707,209.7814346,303.8994937,0.6081786,0.010604345,0.00457496,105.6036011,77.88621867,41.32555733,1.22083132,0,16.27971123,0,0.136443357,5.065060168,58.11082866,81.02158118,14.36325354,12.64660448,0.401381333,8322.248865,0.004053333,0.027157333,0.004104 +2175,1.976142451,0,0,0,1.9307942,0.2343,0.12305,1.6220851,0,0,0.03428603,0.55335,0.006,56.8322,0,2306.35925,208.6277656,302.8046044,0.60017625,0.010464814,0.004514763,104.21408,76.8614,40.7818,1.20476775,0,16.0655045,0,0.13464805,5.058399493,58.01273747,80.48540322,14.2377076,12.62102257,0.3961,8226.127371,0.004,0.0268,0.00405 +2176,1.949793885,0,0,0,1.921192035,0.231176,0.121409333,1.600457299,0,0,0.033828882,0.545972,0.00592,56.07443733,0,2275.607793,207.4740967,301.709715,0.5921739,0.010325283,0.004454566,102.8245589,75.83658133,40.23804267,1.18870418,0,15.85129777,0,0.132852743,5.051738818,57.91464628,79.94922525,14.11216166,12.59544066,0.390818667,8130.005878,0.003946667,0.026442667,0.003996 +2177,1.923445319,0,0,0,1.911589871,0.228052,0.119768667,1.578829497,0,0,0.033371735,0.538594,0.00584,55.31667467,0,2244.856337,206.3204277,300.6148257,0.58417155,0.010185752,0.004394369,101.4350379,74.81176267,39.69428533,1.17264061,0,15.63709105,0,0.131057435,5.045078142,57.81655509,79.41304729,13.98661573,12.56985875,0.385537333,8033.884384,0.003893333,0.026085333,0.003942 +2178,1.897096753,0,0,0,1.901987706,0.224928,0.118128,1.557201696,0,0,0.032914588,0.531216,0.00576,54.558912,0,2214.10488,205.1667588,299.5199364,0.5761692,0.010046221,0.004334172,100.0455168,73.786944,39.150528,1.15657704,0,15.42288432,0,0.129262128,5.038417467,57.71846389,78.87686933,13.86106979,12.54427685,0.380256,7937.762891,0.00384,0.025728,0.003888 +2179,1.870748187,0,0,0,1.892385542,0.221804,0.116487333,1.535573895,0,0,0.032457441,0.523838,0.00568,53.80114933,0,2183.353423,204.0130898,298.4250471,0.56816685,0.009906691,0.004273976,98.65599573,72.76212533,38.60677067,1.14051347,0,15.20867759,0,0.127466821,5.031756792,57.6203727,78.34069136,13.73552385,12.51869494,0.374974667,7841.641398,0.003786667,0.025370667,0.003834 +2180,1.844399621,0,0,0,1.882783377,0.21868,0.114846667,1.513946093,0,0,0.032000294,0.51646,0.0056,53.04338667,0,2152.601967,202.8594209,297.3301577,0.5601645,0.00976716,0.004213779,97.26647467,71.73730667,38.06301333,1.1244499,0,14.99447087,0,0.125671513,5.025096117,57.52228151,77.8045134,13.60997791,12.49311303,0.369693333,7745.519904,0.003733333,0.025013333,0.00378 +2181,1.818051055,0,0,0,1.873181212,0.215556,0.113206,1.492318292,0,0,0.031543147,0.509082,0.00552,52.285624,0,2121.85051,201.7057519,296.2352684,0.55216215,0.009627629,0.004153582,95.8769536,70.712488,37.519256,1.10838633,0,14.78026414,0,0.123876206,5.018435442,57.42419031,77.26833544,13.48443198,12.46753112,0.364412,7649.398411,0.00368,0.024656,0.003726 +2182,1.791702489,0,0,0,1.863579048,0.212432,0.111565333,1.470690491,0,0,0.031086,0.501704,0.00544,51.52786133,0,2091.099053,200.552083,295.1403791,0.5441598,0.009488098,0.004093385,94.48743253,69.68766933,36.97549867,1.09232276,0,14.56605741,0,0.122080899,5.011774767,57.32609912,76.73215747,13.35888604,12.44194922,0.359130667,7553.276917,0.003626667,0.024298667,0.003672 +2183,1.765353923,0,0,0,1.853976883,0.209308,0.109924667,1.449062689,0,0,0.030628853,0.494326,0.00536,50.77009867,0,2060.347597,199.398414,294.0454897,0.53615745,0.009348567,0.004033188,93.09791147,68.66285067,36.43174133,1.07625919,0,14.35185069,0,0.120285591,5.005114091,57.22800793,76.19597951,13.2333401,12.41636731,0.353849333,7457.155424,0.003573333,0.023941333,0.003618 +2184,1.739005357,0,0,0,1.844374719,0.206184,0.108284,1.427434888,0,0,0.030171706,0.486948,0.00528,50.012336,0,2029.59614,198.2447451,292.9506004,0.5281551,0.009209036,0.003972991,91.7083904,67.638032,35.887984,1.06019562,0,14.13764396,0,0.118490284,4.998453416,57.12991674,75.65980155,13.10779416,12.3907854,0.348568,7361.03393,0.00352,0.023584,0.003564 +2185,1.712656791,0,0,0,1.834772554,0.20306,0.106643333,1.405807087,0,0,0.029714559,0.47957,0.0052,49.25457333,0,1998.844683,197.0910761,291.8557111,0.52015275,0.009069505,0.003912795,90.31886933,66.61321333,35.34422667,1.04413205,0,13.92343723,0,0.116694977,4.991792741,57.03182554,75.12362358,12.98224823,12.36520349,0.343286667,7264.912437,0.003466667,0.023226667,0.00351 +2186,1.686308225,0,0,0,1.825170389,0.199936,0.105002667,1.384179285,0,0,0.029257412,0.472192,0.00512,48.49681067,0,1968.093227,195.9374072,290.7608218,0.5121504,0.008929975,0.003852598,88.92934827,65.58839467,34.80046933,1.02806848,0,13.70923051,0,0.114899669,4.985132066,56.93373435,74.58744562,12.85670229,12.33962159,0.338005333,7168.790944,0.003413333,0.022869333,0.003456 +2187,1.659959659,0,0,0,1.815568225,0.196812,0.103362,1.362551484,0,0,0.028800265,0.464814,0.00504,47.739048,0,1937.34177,194.7837383,289.6659324,0.50414805,0.008790444,0.003792401,87.5398272,64.563576,34.256712,1.01200491,0,13.49502378,0,0.113104362,4.978471391,56.83564316,74.05126766,12.73115635,12.31403968,0.332724,7072.66945,0.00336,0.022512,0.003402 +2188,1.633611093,0,0,0,1.80596606,0.193688,0.101721333,1.340923683,0,0,0.028343118,0.457436,0.00496,46.98128533,0,1906.590313,193.6300693,288.5710431,0.4961457,0.008650913,0.003732204,86.15030613,63.53875733,33.71295467,0.99594134,0,13.28081705,0,0.111309055,4.971810715,56.73755197,73.51508969,12.60561041,12.28845777,0.327442667,6976.547957,0.003306667,0.022154667,0.003348 +2189,1.607262527,0,0,0,1.796363896,0.190564,0.100080667,1.319295881,0,0,0.027885971,0.450058,0.00488,46.22352267,0,1875.838857,192.4764004,287.4761538,0.48814335,0.008511382,0.003672007,84.76078507,62.51393867,33.16919733,0.97987777,0,13.06661033,0,0.109513747,4.96515004,56.63946077,72.97891173,12.48006448,12.26287586,0.322161333,6880.426463,0.003253333,0.021797333,0.003294 +2190,1.580913961,0,0,0,1.786761731,0.18744,0.09844,1.29766808,0,0,0.027428824,0.44268,0.0048,45.46576,0,1845.0874,191.3227314,286.3812645,0.480141,0.008371851,0.00361181,83.371264,61.48912,32.62544,0.9638142,0,12.8524036,0,0.10771844,4.958489365,56.54136958,72.44273377,12.35451854,12.23729395,0.31688,6784.30497,0.0032,0.02144,0.00324 +2191,1.554565395,0,0,0,1.777159566,0.184316,0.096799333,1.276040279,0,0,0.026971677,0.435302,0.00472,44.70799733,0,1814.335943,190.1690625,285.2863751,0.47213865,0.00823232,0.003551614,81.98174293,60.46430133,32.08168267,0.94775063,0,12.63819687,0,0.105923133,4.95182869,56.44327839,71.9065558,12.2289726,12.21171205,0.311598667,6688.183477,0.003146667,0.021082667,0.003186 +2192,1.528216829,0,0,0,1.767557402,0.181192,0.095158667,1.254412477,0,0,0.026514529,0.427924,0.00464,43.95023467,0,1783.584487,189.0153935,284.1914858,0.4641363,0.008092789,0.003491417,80.59222187,59.43948267,31.53792533,0.93168706,0,12.42399015,0,0.104127825,4.945168015,56.3451872,71.37037784,12.10342666,12.18613014,0.306317333,6592.061983,0.003093333,0.020725333,0.003132 +2193,1.501868263,0,0,0,1.757955237,0.178068,0.093518,1.232784676,0,0,0.026057382,0.420546,0.00456,43.192472,0,1752.83303,187.8617246,283.0965965,0.45613395,0.007953259,0.00343122,79.2027008,58.414664,30.994168,0.91562349,0,12.20978342,0,0.102332518,4.93850734,56.247096,70.83419988,11.97788073,12.16054823,0.301036,6495.94049,0.00304,0.020368,0.003078 +2194,1.475519697,0,0,0,1.748353073,0.174944,0.091877333,1.211156875,0,0,0.025600235,0.413168,0.00448,42.43470933,0,1722.081573,186.7080556,282.0017072,0.4481316,0.007813728,0.003371023,77.81317973,57.38984533,30.45041067,0.89955992,0,11.99557669,0,0.100537211,4.931846664,56.14900481,70.29802191,11.85233479,12.13496632,0.295754667,6399.818996,0.002986667,0.020010667,0.003024 +2195,1.449171131,0,0,0,1.738750908,0.17182,0.090236667,1.189529073,0,0,0.025143088,0.40579,0.0044,41.67694667,0,1691.330117,185.5543867,280.9068178,0.44012925,0.007674197,0.003310826,76.42365867,56.36502667,29.90665333,0.88349635,0,11.78136997,0,0.098741903,4.925185989,56.05091362,69.76184395,11.72678885,12.10938442,0.290473333,6303.697503,0.002933333,0.019653333,0.00297 +2196,1.422822565,0,0,0,1.729148743,0.168696,0.088596,1.167901272,0,0,0.024685941,0.398412,0.00432,40.919184,0,1660.57866,184.4007177,279.8119285,0.4321269,0.007534666,0.003250629,75.0341376,55.340208,29.362896,0.86743278,0,11.56716324,0,0.096946596,4.918525314,55.95282242,69.22566599,11.60124291,12.08380251,0.285192,6207.576009,0.00288,0.019296,0.002916 +2197,1.396473999,0,0,0,1.719546579,0.165572,0.086955333,1.146273471,0,0,0.024228794,0.391034,0.00424,40.16142133,0,1629.827203,183.2470488,278.7170392,0.42412455,0.007395135,0.003190433,73.64461653,54.31538933,28.81913867,0.85136921,0,11.35295651,0,0.095151289,4.911864639,55.85473123,68.68948802,11.47569698,12.0582206,0.279910667,6111.454516,0.002826667,0.018938667,0.002862 +2198,1.370125433,0,0,0,1.709944414,0.162448,0.085314667,1.124645669,0,0,0.023771647,0.383656,0.00416,39.40365867,0,1599.075747,182.0933798,277.6221498,0.4161222,0.007255604,0.003130236,72.25509547,53.29057067,28.27538133,0.83530564,0,11.13874979,0,0.093355981,4.905203964,55.75664004,68.15331006,11.35015104,12.03263869,0.274629333,6015.333023,0.002773333,0.018581333,0.002808 +2199,1.343776867,0,0,0,1.70034225,0.159324,0.083674,1.103017868,0,0,0.0233145,0.376278,0.00408,38.645896,0,1568.32429,180.9397109,276.5272605,0.40811985,0.007116074,0.003070039,70.8655744,52.265752,27.731624,0.81924207,0,10.92454306,0,0.091560674,4.898543288,55.65854885,67.6171321,11.2246051,12.00705679,0.269348,5919.211529,0.00272,0.018224,0.002754 +2200,1.317428301,0,0,0,1.690740085,0.1562,0.082033333,1.081390067,0,0,0.022857353,0.3689,0.004,37.88813333,0,1537.572833,179.7860419,275.4323712,0.4001175,0.006976543,0.003009842,69.47605333,51.24093333,27.18786667,0.8031785,0,10.71033633,0,0.089765367,4.891882613,55.56045765,67.08095413,11.09905916,11.98147488,0.264066667,5823.090036,0.002666667,0.017866667,0.0027 +2201,1.291079734,0,0,0,1.68113792,0.153076,0.080392667,1.059762265,0,0,0.022400206,0.361522,0.00392,37.13037067,0,1506.821377,178.632373,274.3374819,0.39211515,0.006837012,0.002949645,68.08653227,50.21611467,26.64410933,0.78711493,0,10.49612961,0,0.087970059,4.885221938,55.46236646,66.54477617,10.97351323,11.95589297,0.258785333,5726.968542,0.002613333,0.017509333,0.002646 +2202,1.264731168,0,0,0,1.671535756,0.149952,0.078752,1.038134464,0,0,0.021943059,0.354144,0.00384,36.372608,0,1476.06992,177.4787041,273.2425925,0.3841128,0.006697481,0.002889448,66.6970112,49.191296,26.100352,0.77105136,0,10.28192288,0,0.086174752,4.878561263,55.36427527,66.00859821,10.84796729,11.93031106,0.253504,5630.847049,0.00256,0.017152,0.002592 +2203,1.238382602,0,0,0,1.661933591,0.146828,0.077111333,1.016506663,0,0,0.021485912,0.346766,0.00376,35.61484533,0,1445.318463,176.3250351,272.1477032,0.37611045,0.00655795,0.002829251,65.30749013,48.16647733,25.55659467,0.75498779,0,10.06771615,0,0.084379445,4.871900588,55.26618408,65.47242024,10.72242135,11.90472915,0.248222667,5534.725555,0.002506667,0.016794667,0.002538 +2204,1.212034036,0,0,0,1.652331427,0.143704,0.075470667,0.994878861,0,0,0.021028765,0.339388,0.00368,34.85708267,0,1414.567007,175.1713662,271.0528139,0.3681081,0.006418419,0.002769055,63.91796907,47.14165867,25.01283733,0.73892422,0,9.853509427,0,0.082584137,4.865239912,55.16809288,64.93624228,10.59687541,11.87914725,0.242941333,5438.604062,0.002453333,0.016437333,0.002484 +2205,1.18568547,0,0,0,1.642729262,0.14058,0.07383,0.97325106,0,0,0.020571618,0.33201,0.0036,34.09932,0,1383.81555,174.0176972,269.9579246,0.36010575,0.006278888,0.002708858,62.528448,46.11684,24.46908,0.72286065,0,9.6393027,0,0.08078883,4.858579237,55.07000169,64.40006432,10.47132948,11.85356534,0.23766,5342.482569,0.0024,0.01608,0.00243 +2206,1.159336904,0,0,0,1.633127097,0.137456,0.072189333,0.951623259,0,0,0.020114471,0.324632,0.00352,33.34155733,0,1353.064093,172.8640283,268.8630352,0.3521034,0.006139358,0.002648661,61.13892693,45.09202133,23.92532267,0.70679708,0,9.425095973,0,0.078993523,4.851918562,54.9719105,63.86388635,10.34578354,11.82798343,0.232378667,5246.361075,0.002346667,0.015722667,0.002376 +2207,1.132988338,0,0,0,1.623524933,0.134332,0.070548667,0.929995457,0,0,0.019657324,0.317254,0.00344,32.58379467,0,1322.312637,171.7103593,267.7681459,0.34410105,0.005999827,0.002588464,59.74940587,44.06720267,23.38156533,0.69073351,0,9.210889247,0,0.077198215,4.845257887,54.8738193,63.32770839,10.2202376,11.80240152,0.227097333,5150.239582,0.002293333,0.015365333,0.002322 +2208,1.106639772,0,0,0,1.613922768,0.131208,0.068908,0.908367656,0,0,0.019200177,0.309876,0.00336,31.826032,0,1291.56118,170.5566904,266.6732566,0.3360987,0.005860296,0.002528267,58.3598848,43.042384,22.837808,0.67466994,0,8.99668252,0,0.075402908,4.838597212,54.77572811,62.79153043,10.09469166,11.77681962,0.221816,5054.118088,0.00224,0.015008,0.002268 +2209,1.080291206,0,0,0,1.604320604,0.128084,0.067267333,0.886739855,0,0,0.018743029,0.302498,0.00328,31.06826933,0,1260.809723,169.4030214,265.5783673,0.32809635,0.005720765,0.00246807,56.97036373,42.01756533,22.29405067,0.65860637,0,8.782475793,0,0.073607601,4.831936537,54.67763692,62.25535246,9.969145727,11.75123771,0.216534667,4957.996595,0.002186667,0.014650667,0.002214 +2210,1.05394264,0,0,0,1.594718439,0.12496,0.065626667,0.865112053,0,0,0.018285882,0.29512,0.0032,30.31050667,0,1230.058267,168.2493525,264.4834779,0.320094,0.005581234,0.002407874,55.58084267,40.99274667,21.75029333,0.6425428,0,8.568269067,0,0.071812293,4.825275861,54.57954573,61.7191745,9.843599789,11.7256558,0.211253333,4861.875102,0.002133333,0.014293333,0.00216 +2211,1.027594074,0,0,0,1.585116274,0.121836,0.063986,0.843484252,0,0,0.017828735,0.287742,0.00312,29.552744,0,1199.30681,167.0956835,263.3885886,0.31209165,0.005441703,0.002347677,54.1913216,39.967928,21.206536,0.62647923,0,8.35406234,0,0.070016986,4.818615186,54.48145453,61.18299654,9.718053852,11.70007389,0.205972,4765.753608,0.00208,0.013936,0.002106 +2212,1.001245508,0,0,0,1.57551411,0.118712,0.062345333,0.821856451,0,0,0.017371588,0.280364,0.00304,28.79498133,0,1168.555353,165.9420146,262.2936993,0.3040893,0.005302172,0.00228748,52.80180053,38.94310933,20.66277867,0.61041566,0,8.139855613,0,0.068221679,4.811954511,54.38336334,60.64681857,9.592507914,11.67449199,0.200690667,4669.632115,0.002026667,0.013578667,0.002052 +2213,0.974896942,0,0,0,1.565911945,0.115588,0.060704667,0.800228649,0,0,0.016914441,0.272986,0.00296,28.03721867,0,1137.803897,164.7883456,261.1988099,0.29608695,0.005162642,0.002227283,51.41227947,37.91829067,20.11902133,0.59435209,0,7.925648887,0,0.066426371,4.805293836,54.28527215,60.11064061,9.466961977,11.64891008,0.195409333,4573.510621,0.001973333,0.013221333,0.001998 +2214,0.948548376,0,0,0,1.556309781,0.112464,0.059064,0.778600848,0,0,0.016457294,0.265608,0.00288,27.279456,0,1107.05244,163.6346767,260.1039206,0.2880846,0.005023111,0.002167086,50.0227584,36.893472,19.575264,0.57828852,0,7.71144216,0,0.064631064,4.798633161,54.18718096,59.57446265,9.341416039,11.62332817,0.190128,4477.389128,0.00192,0.012864,0.001944 +2215,0.92219981,0,0,0,1.546707616,0.10934,0.057423333,0.756973047,0,0,0.016000147,0.25823,0.0028,26.52169333,0,1076.300983,162.4810077,259.0090313,0.28008225,0.00488358,0.002106889,48.63323733,35.86865333,19.03150667,0.56222495,0,7.497235433,0,0.062835757,4.791972485,54.08908976,59.03828468,9.215870102,11.59774626,0.184846667,4381.267634,0.001866667,0.012506667,0.00189 +2216,0.895851244,0,0,0,1.537105452,0.106216,0.055782667,0.735345245,0,0,0.015543,0.250852,0.00272,25.76393067,0,1045.549527,161.3273388,257.914142,0.2720799,0.004744049,0.002046693,47.24371627,34.84383467,18.48774933,0.54616138,0,7.283028707,0,0.061040449,4.78531181,53.99099857,58.50210672,9.090324164,11.57216435,0.179565333,4285.146141,0.001813333,0.012149333,0.001836 +2217,0.869502678,0,0,0,1.527503287,0.103092,0.054142,0.713717444,0,0,0.015085853,0.243474,0.00264,25.006168,0,1014.79807,160.1736699,256.8192526,0.26407755,0.004604518,0.001986496,45.8541952,33.819016,17.943992,0.53009781,0,7.06882198,0,0.059245142,4.778651135,53.89290738,57.96592876,8.964778227,11.54658245,0.174284,4189.024648,0.00176,0.011792,0.001782 +2218,0.843154112,0,0,0,1.517901122,0.099968,0.052501333,0.692089643,0,0,0.014628706,0.236096,0.00256,24.24840533,0,984.0466133,159.0200009,255.7243633,0.2560752,0.004464987,0.001926299,44.46467413,32.79419733,17.40023467,0.51403424,0,6.854615253,0,0.057449835,4.77199046,53.79481619,57.42975079,8.839232289,11.52100054,0.169002667,4092.903154,0.001706667,0.011434667,0.001728 +2219,0.816805546,0,0,0,1.508298958,0.096844,0.050860667,0.670461841,0,0,0.014171559,0.228718,0.00248,23.49064267,0,953.2951567,157.866332,254.629474,0.24807285,0.004325456,0.001866102,43.07515307,31.76937867,16.85647733,0.49797067,0,6.640408527,0,0.055654527,4.765329785,53.69672499,56.89357283,8.713686352,11.49541863,0.163721333,3996.781661,0.001653333,0.011077333,0.001674 +2220,0.79045698,0,0,0,1.498696793,0.09372,0.04922,0.64883404,0,0,0.013714412,0.22134,0.0024,22.73288,0,922.5437,156.712663,253.5345847,0.2400705,0.004185926,0.001805905,41.685632,30.74456,16.31272,0.4819071,0,6.4262018,0,0.05385922,4.758669109,53.5986338,56.35739487,8.588140414,11.46983672,0.15844,3900.660167,0.0016,0.01072,0.00162 +2221,0.764108414,0,0,0,1.489094629,0.090596,0.047579333,0.627206239,0,0,0.013257265,0.213962,0.00232,21.97511733,0,891.7922433,155.5589941,252.4396953,0.23206815,0.004046395,0.001745708,40.29611093,29.71974133,15.76896267,0.46584353,0,6.211995073,0,0.052063913,4.752008434,53.50054261,55.8212169,8.462594477,11.44425482,0.153158667,3804.538674,0.001546667,0.010362667,0.001566 +2222,0.737759848,0,0,0,1.479492464,0.087472,0.045938667,0.605578437,0,0,0.012800118,0.206584,0.00224,21.21735467,0,861.0407867,154.4053251,251.344806,0.2240658,0.003906864,0.001685512,38.90658987,28.69492267,15.22520533,0.44977996,0,5.997788347,0,0.050268605,4.745347759,53.40245141,55.28503894,8.337048539,11.41867291,0.147877333,3708.417181,0.001493333,0.010005333,0.001512 +2223,0.711411282,0,0,0,1.469890299,0.084348,0.044298,0.583950636,0,0,0.012342971,0.199206,0.00216,20.459592,0,830.28933,153.2516562,250.2499167,0.21606345,0.003767333,0.001625315,37.5170688,27.670104,14.681448,0.43371639,0,5.78358162,0,0.048473298,4.738687084,53.30436022,54.74886098,8.211502602,11.393091,0.142596,3612.295687,0.00144,0.009648,0.001458 +2224,0.685062716,0,0,0,1.460288135,0.081224,0.042657333,0.562322835,0,0,0.011885824,0.191828,0.00208,19.70182933,0,799.5378733,152.0979872,249.1550274,0.2080611,0.003627802,0.001565118,36.12754773,26.64528533,14.13769067,0.41765282,0,5.569374893,0,0.046677991,4.732026409,53.20626903,54.21268301,8.085956664,11.36750909,0.137314667,3516.174194,0.001386667,0.009290667,0.001404 +2225,0.65871415,0,0,0,1.45068597,0.0781,0.041016667,0.540695033,0,0,0.011428677,0.18445,0.002,18.94406667,0,768.7864167,150.9443183,248.060138,0.20005875,0.003488271,0.001504921,34.73802667,25.62046667,13.59393333,0.40158925,0,5.355168167,0,0.044882683,4.725365734,53.10817784,53.67650505,7.960410727,11.34192719,0.132033333,3420.0527,0.001333333,0.008933333,0.00135 +2226,0.632365584,0,0,0,1.441083806,0.074976,0.039376,0.519067232,0,0,0.010971529,0.177072,0.00192,18.186304,0,738.03496,149.7906493,246.9652487,0.1920564,0.00334874,0.001444724,33.3485056,24.595648,13.050176,0.38552568,0,5.14096144,0,0.043087376,4.718705058,53.01008664,53.14032709,7.834864789,11.31634528,0.126752,3323.931207,0.00128,0.008576,0.001296 +2227,0.606017018,0,0,0,1.431481641,0.071852,0.037735333,0.497439431,0,0,0.010514382,0.169694,0.00184,17.42854133,0,707.2835033,148.6369804,245.8703594,0.18405405,0.00320921,0.001384527,31.95898453,23.57082933,12.50641867,0.36946211,0,4.926754713,0,0.041292069,4.712044383,52.91199545,52.60414912,7.709318852,11.29076337,0.121470667,3227.809713,0.001226667,0.008218667,0.001242 +2228,0.579668452,0,0,0,1.421879476,0.068728,0.036094667,0.475811629,0,0,0.010057235,0.162316,0.00176,16.67077867,0,676.5320467,147.4833114,244.77547,0.1760517,0.003069679,0.00132433,30.56946347,22.54601067,11.96266133,0.35339854,0,4.712547987,0,0.039496761,4.705383708,52.81390426,52.06797116,7.583772914,11.26518146,0.116189333,3131.68822,0.001173333,0.007861333,0.001188 +2229,0.553319886,0,0,0,1.412277312,0.065604,0.034454,0.454183828,0,0,0.009600088,0.154938,0.00168,15.913016,0,645.78059,146.3296425,243.6805807,0.16804935,0.002930148,0.001264134,29.1799424,21.521192,11.418904,0.33733497,0,4.49834126,0,0.037701454,4.698723033,52.71581307,51.5317932,7.458226977,11.23959955,0.110908,3035.566727,0.00112,0.007504,0.001134 +2230,0.52697132,0,0,0,1.402675147,0.06248,0.032813333,0.432556027,0,0,0.009142941,0.14756,0.0016,15.15525333,0,615.0291333,145.1759735,242.5856914,0.160047,0.002790617,0.001203937,27.79042133,20.49637333,10.87514667,0.3212714,0,4.284134533,0,0.035906147,4.692062358,52.61772187,50.99561523,7.33268104,11.21401765,0.105626667,2939.445233,0.001066667,0.007146667,0.00108 +2231,0.500622754,0,0,0,1.393072983,0.059356,0.031172667,0.410928225,0,0,0.008685794,0.140182,0.00152,14.39749067,0,584.2776767,144.0223046,241.4908021,0.15204465,0.002651086,0.00114374,26.40090027,19.47155467,10.33138933,0.30520783,0,4.069927807,0,0.034110839,4.685401682,52.51963068,50.45943727,7.207135102,11.18843574,0.100345333,2843.32374,0.001013333,0.006789333,0.001026 +2232,0.474274188,0,0,0,1.383470818,0.056232,0.029532,0.389300424,0,0,0.008228647,0.132804,0.00144,13.639728,0,553.52622,142.8686357,240.3959127,0.1440423,0.002511555,0.001083543,25.0113792,18.446736,9.787632,0.28914426,0,3.85572108,0,0.032315532,4.678741007,52.42153949,49.92325931,7.081589165,11.16285383,0.095064,2747.202246,9.60E-04,0.006432,9.72E-04 +2233,0.447925622,0,0,0,1.373868653,0.053108,0.027891333,0.367672623,0,0,0.0077715,0.125426,0.00136,12.88196533,0,522.7747633,141.7149667,239.3010234,0.13603995,0.002372025,0.001023346,23.62185813,17.42191733,9.243874667,0.27308069,0,3.641514353,0,0.030520225,4.672080332,52.32344829,49.38708134,6.956043227,11.13727192,0.089782667,2651.080753,9.07E-04,0.006074667,9.18E-04 +2234,0.421577056,0,0,0,1.364266489,0.049984,0.026250667,0.346044821,0,0,0.007314353,0.118048,0.00128,12.12420267,0,492.0233067,140.5612978,238.2061341,0.1280376,0.002232494,9.63E-04,22.23233707,16.39709867,8.700117333,0.25701712,0,3.427307627,0,0.028724917,4.665419657,52.2253571,48.85090338,6.83049729,11.11169002,0.084501333,2554.959259,8.53E-04,0.005717333,8.64E-04 +2235,0.39522849,0,0,0,1.354664324,0.04686,0.02461,0.32441702,0,0,0.006857206,0.11067,0.0012,11.36644,0,461.27185,139.4076288,237.1112448,0.12003525,0.002092963,9.03E-04,20.842816,15.37228,8.15636,0.24095355,0,3.2131009,0,0.02692961,4.658758982,52.12726591,48.31472542,6.704951352,11.08610811,0.07922,2458.837766,8.00E-04,0.00536,8.10E-04 +2236,0.368879924,0,0,0,1.34506216,0.043736,0.022969333,0.302789219,0,0,0.006400059,0.103292,0.00112,10.60867733,0,430.5203933,138.2539599,236.0163554,0.1120329,0.001953432,8.43E-04,19.45329493,14.34746133,7.612602667,0.22488998,0,2.998894173,0,0.025134303,4.652098307,52.02917472,47.77854745,6.579405415,11.0605262,0.073938667,2362.716273,7.47E-04,0.005002667,7.56E-04 +2237,0.342531358,0,0,0,1.335459995,0.040612,0.021328667,0.281161417,0,0,0.005942912,0.095914,0.00104,9.850914667,0,399.7689367,137.1002909,234.9214661,0.10403055,0.001813901,7.83E-04,18.06377387,13.32264267,7.068845333,0.20882641,0,2.784687447,0,0.023338995,4.645437631,51.93108352,47.24236949,6.453859477,11.03494429,0.068657333,2266.594779,6.93E-04,0.004645333,7.02E-04 +2238,0.316182792,0,0,0,1.32585783,0.037488,0.019688,0.259533616,0,0,0.005485765,0.088536,9.60E-04,9.093152,0,369.01748,135.946622,233.8265768,0.0960282,0.00167437,7.22E-04,16.6742528,12.297824,6.525088,0.19276284,0,2.57048072,0,0.021543688,4.638776956,51.83299233,46.70619153,6.32831354,11.00936239,0.063376,2170.473286,6.40E-04,0.004288,6.48E-04 +2239,0.289834226,0,0,0,1.316255666,0.034364,0.018047333,0.237905815,0,0,0.005028618,0.081158,8.80E-04,8.335389333,0,338.2660233,134.792953,232.7316875,0.08802585,0.001534839,6.62E-04,15.28473173,11.27300533,5.981330667,0.17669927,0,2.356273993,0,0.019748381,4.632116281,51.73490114,46.17001356,6.202767602,10.98378048,0.058094667,2074.351792,5.87E-04,0.003930667,5.94E-04 +2240,0.26348566,0,0,0,1.306653501,0.03124,0.016406667,0.216278013,0,0,0.004571471,0.07378,8.00E-04,7.577626667,0,307.5145667,133.6392841,231.6367981,0.0800235,0.001395309,6.02E-04,13.89521067,10.24818667,5.437573333,0.1606357,0,2.142067267,0,0.017953073,4.625455606,51.63680995,45.6338356,6.077221665,10.95819857,0.052813333,1978.230299,5.33E-04,0.003573333,5.40E-04 +2241,0.237137094,0,0,0,1.297051337,0.028116,0.014766,0.194650212,0,0,0.004114324,0.066402,7.20E-04,6.819864,0,276.76311,132.4856151,230.5419088,0.07202115,0.001255778,5.42E-04,12.5056896,9.223368,4.893816,0.14457213,0,1.92786054,0,0.016157766,4.618794931,51.53871875,45.09765764,5.951675727,10.93261666,0.047532,1882.108806,4.80E-04,0.003216,4.86E-04 +2242,0.210788528,0,0,0,1.287449172,0.024992,0.013125333,0.173022411,0,0,0.003657176,0.059024,6.40E-04,6.062101333,0,246.0116533,131.3319462,229.4470195,0.0640188,0.001116247,4.82E-04,11.11616853,8.198549333,4.350058667,0.12850856,0,1.713653813,0,0.014362459,4.612134255,51.44062756,44.56147967,5.82612979,10.90703475,0.042250667,1785.987312,4.27E-04,0.002858667,4.32E-04 +2243,0.184439962,0,0,0,1.277847007,0.021868,0.011484667,0.151394609,0,0,0.003200029,0.051646,5.60E-04,5.304338667,0,215.2601967,130.1782772,228.3521301,0.05601645,9.77E-04,4.21E-04,9.726647467,7.173730667,3.806301333,0.11244499,0,1.499447087,0,0.012567151,4.60547358,51.34253637,44.02530171,5.700583852,10.88145285,0.036969333,1689.865819,3.73E-04,0.002501333,3.78E-04 +2244,0.158091396,0,0,0,1.268244843,0.018744,0.009844,0.129766808,0,0,0.002742882,0.044268,4.80E-04,4.546576,0,184.50874,129.0246083,227.2572408,0.0480141,8.37E-04,3.61E-04,8.3371264,6.148912,3.262544,0.09638142,0,1.28524036,0,0.010771844,4.598812905,51.24444518,43.48912375,5.575037915,10.85587094,0.031688,1593.744325,3.20E-04,0.002144,3.24E-04 +2245,0.13174283,0,0,0,1.258642678,0.01562,0.008203333,0.108139007,0,0,0.002285735,0.03689,4.00E-04,3.788813333,0,153.7572833,127.8709393,226.1623515,0.04001175,6.98E-04,3.01E-04,6.947605333,5.124093333,2.718786667,0.08031785,0,1.071033633,0,0.008976537,4.59215223,51.14635398,42.95294578,5.449491977,10.83028903,0.026406667,1497.622832,2.67E-04,0.001786667,2.70E-04 +2246,0.105394264,0,0,0,1.249040514,0.012496,0.006562667,0.086511205,0,0,0.001828588,0.029512,3.20E-04,3.031050667,0,123.0058267,126.7172704,225.0674622,0.0320094,5.58E-04,2.41E-04,5.558084267,4.099274667,2.175029333,0.06425428,0,0.856826907,0,0.007181229,4.585491555,51.04826279,42.41676782,5.32394604,10.80470712,0.021125333,1401.501338,2.13E-04,0.001429333,2.16E-04 +2247,0.079045698,0,0,0,1.239438349,0.009372,0.004922,0.064883404,0,0,0.001371441,0.022134,2.40E-04,2.273288,0,92.25437,125.5636015,223.9725728,0.02400705,4.19E-04,1.81E-04,4.1685632,3.074456,1.631272,0.04819071,0,0.64262018,0,0.005385922,4.578830879,50.9501716,41.88058986,5.198400102,10.77912522,0.015844,1305.379845,1.60E-04,0.001072,1.62E-04 +2248,0.052697132,0,0,0,1.229836184,0.006248,0.003281333,0.043255603,0,0,9.14E-04,0.014756,1.60E-04,1.515525333,0,61.50291333,124.4099325,222.8776835,0.0160047,2.79E-04,1.20E-04,2.779042133,2.049637333,1.087514667,0.03212714,0,0.428413453,0,0.003590615,4.572170204,50.8520804,41.34441189,5.072854165,10.75354331,0.010562667,1209.258352,1.07E-04,7.15E-04,1.08E-04 +2249,0.026348566,0,0,0,1.22023402,0.003124,0.001640667,0.021627801,0,0,4.57E-04,0.007378,8.00E-05,0.757762667,0,30.75145667,123.2562636,221.7827942,0.00800235,1.40E-04,6.02E-05,1.389521067,1.024818667,0.543757333,0.01606357,0,0.214206727,0,0.001795307,4.565509529,50.75398921,40.80823393,4.947308227,10.7279614,0.005281333,1113.136858,5.33E-05,3.57E-04,5.40E-05 +2250,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2251,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2252,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2253,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2254,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2255,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2256,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2257,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2258,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2259,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2260,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2261,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2262,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2263,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2264,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2265,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2266,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2267,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2268,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2269,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2270,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2271,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2272,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2273,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2274,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2275,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2276,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2277,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2278,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2279,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2280,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2281,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2282,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2283,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2284,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2285,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2286,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2287,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2288,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2289,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2290,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2291,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2292,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2293,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2294,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2295,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2296,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2297,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2298,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2299,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 +2300,0,0,0,0,1.210631855,0,0,0,0,0,0,0,0,0,0,0,122.1025946,220.6879049,0,0,0,0,0,0,0,0,0,0,0,4.558848854,50.65589802,40.27205597,4.82176229,10.70237949,0,1017.015365,0,0,0 diff --git a/inst/shinyApp/www/inputs/ssp370_emissions.csv b/inst/shinyApp/www/inputs/ssp370_emissions.csv new file mode 100644 index 0000000..dea9c48 --- /dev/null +++ b/inst/shinyApp/www/inputs/ssp370_emissions.csv @@ -0,0 +1,562 @@ +; ssp370 from rcmip,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; hectordata 0.0.0.9000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; commit dab9aad8750535b,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; date Fri Nov 4 11:35:31 2022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; UNITS:,Pg C/yr,Pg C/yr,Pg C/yr,Pg C/yr,Tg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg CH4,Tg CO,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg N,Tg,Tg NMVOC,Tg N,Tg,Gg,Gg S,Gg,Gg,Gg +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_emissions,CCl4_emissions,CF4_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CFC11_emissions,CFC12_emissions,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_emissions,CH4_emissions,CO_emissions,HCFC141b_emissions,HCFC142b_emissions,HCFC22_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC23_emissions,HFC245fa_emissions,HFC32_emissions,HFC4310_emissions,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,SF6_emissions,SO2_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions +1745,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1746,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1747,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1748,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1749,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1750,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1751,0.002594106,0.08266927,0,0,2.072925926,0,0.024856862,0.010071225,0,0,0,0,0,105.1072,0,4276.7685,18.91510887,343.9263672,0,0,0,0,0,0,0,0,0,0,0,0.055785796,6.860142185,59.08812628,3.833772936,15.18871674,0,1206.06818,0.007723273,0,0 +1752,0.002595208,0.084190146,0,0,2.064311933,0,0.024856862,0.010071225,0,0,0,0,0,105.12502,0,4277.7049,18.88971181,341.8090339,0,0,0,0,0,0,0,0,0,0,0,0.056839716,6.819482037,58.63199703,3.834371851,15.03447574,0,1200.427847,0.007723273,0,0 +1753,0.002595302,0.085739002,0,0,2.071950564,0,0.024856862,0.010071225,0,0,0,0,0,105.10373,0,4276.586,19.12137723,343.6754562,0,0,0,0,0,0,0,0,0,0,0,0.057913547,6.881438529,59.0263494,3.817794323,15.18254515,0,1207.227099,0.007723273,0,0 +1754,0.002596404,0.087316353,0,0,2.099349783,0,0.024856862,0.010071225,0,0,0,0,0,105.07356,0,4274.9998,19.50906107,349.8156252,0,0,0,0,0,0,0,0,0,0,0,0.059007665,7.015189224,60.26994517,3.847331337,15.55877305,0,1232.953114,0.007723273,0,0 +1755,0.002597506,0.088922722,0,0,2.099173165,0,0.024856862,0.010071225,0,0,0,0,0,105.09182,0,4275.9598,19.50045493,348.144668,0,0,0,0,0,0,0,0,0,0,0,0.060122454,6.943989043,59.82493372,3.886652888,15.35818253,0,1223.082685,0.007723273,0,0 +1756,0.00277509,0.090558644,0,0,2.068915407,0,0.024856862,0.010071225,0,0,0,0,0,105.08556,0,4275.6306,19.4625366,343.3231517,0,0,0,0,0,0,0,0,0,0,0,0.061258303,6.922711557,58.94682931,3.780146274,15.19577663,0,1211.479202,0.007723273,0,0 +1757,0.002776193,0.092224663,0,0,2.147923676,0,0.024856862,0.010071225,0,0,0,0,0,105.09137,0,4275.9361,20.02354066,355.9418923,0,0,0,0,0,0,0,0,0,0,0,0.062415611,7.047674129,61.263693,3.998436266,15.70481912,0,1255.688247,0.007723273,0,0 +1758,0.002777295,0.093921331,0,0,2.12061141,0,0.024856862,0.010071225,0,0,0,0,0,105.09662,0,4276.2118,19.93400533,351.839749,0,0,0,0,0,0,0,0,0,0,0,0.063594783,6.995459768,60.43461244,3.95160932,15.51461163,0,1241.80619,0.007723273,0,0 +1759,0.002778397,0.095649213,0,0,2.117267431,0,0.024856862,0.010071225,0,0,0,0,0,105.08372,0,4275.5338,20.14146621,351.5077627,0,0,0,0,0,0,0,0,0,0,0,0.064796232,7.045958325,60.44526305,3.882559461,15.57401349,0,1238.693446,0.007723273,0,0 +1760,0.002778491,0.097408883,0,0,2.127804105,0,0.024856862,0.010071225,0,0,0,0,0,105.04022,0,4273.2473,20.41679714,354.4182853,0,0,0,0,0,0,0,0,0,0,0,0.06602038,7.128048286,61.05172479,3.870426966,15.81906393,0,1250.820917,0.007723273,0,0 +1761,0.0030418,0.099200926,0,0,2.137756989,0,0.024856862,0.010071225,0,0,0,0,0,105.09143,0,4275.9395,20.45599017,354.7079679,0,0,0,0,0,0,0,0,0,0,0,0.067267654,7.080969808,60.9842272,3.947785545,15.69191588,0,1256.548122,0.007723273,0,0 +1762,0.003042907,0.101025937,0,0,2.101748109,0,0.024856862,0.010071225,0,0,0,0,0,105.08127,0,4275.4052,20.45168738,349.2496972,0,0,0,0,0,0,8.32E-08,0,0,1.51E-06,0,0.068538493,7.072547337,60.02708933,3.805606722,15.52593531,0,1235.176016,0.007723273,0,0 +1763,0.003044015,0.102884523,0,0,2.107029758,0,0.024856862,0.010071225,0,0,0,0,0,105.09332,0,4276.0386,20.54517934,350.0593349,0,0,0,0,0,0,6.68E-07,0,0,1.24E-05,0,0.06983334,7.067982584,60.12706627,3.846149431,15.52676249,0,1242.431334,0.007723273,0,0 +1764,0.003045122,0.104777302,0,0,2.071549227,0,0.024856862,0.010071225,0,0,0,0,0,105.1104,0,4276.9364,20.26091721,342.0446107,0,0,0,0,0,0,1.27E-06,0,0,2.50E-05,0,0.07115265,6.89874574,58.43835717,3.829003368,14.95869898,0,1212.823098,0.007723273,0,0 +1765,0.003046229,0.106704903,0,0,2.123600022,0,0.024856862,0.010071225,0,0,0,0,0,105.07293,0,4274.9668,20.919155,352.9327258,0,0,0,0,0,0,1.39E-06,0,0,3.03E-05,0,0.072496884,7.112382325,60.62945786,3.878155223,15.67992411,0,1250.725203,0.007723273,0,0 +1766,0.003396267,0.108667966,0,0,2.110459977,0,0.024856862,0.010071225,0,0,0,0,0,105.07758,0,4275.2111,20.8535919,349.380645,0,0,0,0,0,0,1.42E-06,0,0,3.44E-05,0,0.073866514,7.036296531,59.85878463,3.884852898,15.35883081,0,1244.142077,0.007723273,0,0 +1767,0.003397374,0.110667143,0,0,2.112460701,0,0.024856862,0.010071225,0,0,0,0,0,105.08566,0,4275.6359,20.99917946,349.616099,0,0,0,0,0,0,1.46E-06,0,0,3.84E-05,0,0.07526202,7.045382427,59.8910269,3.880476349,15.4005645,0,1243.308056,0.007723273,0,0 +1768,0.003398482,0.1127031,0,0,2.18313204,0,0.024856862,0.010071225,0,0,0,0,0,105.04673,0,4273.5893,21.65945211,362.6536848,0,0,0,0,0,0,1.49E-06,0,0,4.25E-05,0,0.07668389,7.223617821,62.36582555,4.039005154,16.0637302,0,1294.705423,0.007723273,0,0 +1769,0.003399589,0.114776512,0,0,2.137633742,0,0.024856862,0.010071225,0,0,0,0,0,105.0767,0,4275.165,21.49633535,355.0254185,0,0,0,0,0,0,1.53E-06,0,0,4.65E-05,0,0.078132622,7.157863703,60.95040361,3.914619863,15.73509479,0,1273.362221,0.007723273,0,0 +1770,0.003400696,0.116888069,0,0,2.139364739,0,0.024856862,0.010071225,0,0,0,0,0,105.04544,0,4273.5216,21.63439757,355.3605476,0,0,0,0,0,0,1.57E-06,0,0,5.06E-05,0,0.079608724,7.155978284,60.96602721,3.927122991,15.74271509,0,1277.49221,0.007723273,0,0 +1771,0.003768892,0.119038473,0,0,2.100909701,0,0.024856862,0.010071225,0,0,0,0,0,105.07227,0,4274.9318,21.4289211,347.8619883,0,0,0,0,0,0,1.60E-06,0,0,5.47E-05,0,0.081112713,7.069218405,59.42424033,3.843192573,15.32197739,0,1230.128239,0.007723273,0,0 +1772,0.003770005,0.121228438,0,0,2.087077541,0,0.024856862,0.010071225,0,0,0,0,0,105.08887,0,4275.8046,21.39461572,344.6134738,0,0,0,0,0,0,1.64E-06,0,0,5.87E-05,0,0.082645116,7.043230562,58.72495295,3.812980037,15.11418329,0,1217.836348,0.007723273,0,0 +1773,0.003771118,0.123458692,0,0,2.092755603,0,0.024856862,0.010071225,0,0,0,0,0,105.06952,0,4274.7874,21.59523139,345.7768091,0,0,0,0,0,0,1.67E-06,0,0,6.28E-05,0,0.084206469,7.104503735,58.91656885,3.795742519,15.20466379,0,1220.686645,0.007723273,0,0 +1774,0.003772231,0.125729977,0,0,2.154900741,0,0.024856862,0.010071225,0,0,0,0,0,105.0265,0,4272.5262,22.25970773,358.103585,0,0,0,0,0,0,1.71E-06,0,0,6.68E-05,0,0.08579732,7.347701469,61.31335787,3.892106055,15.87559318,0,1266.428616,0.007723273,0,0 +1775,0.003773344,0.128043046,0,0,2.148996597,0,0.024856862,0.010071225,0,0,0,0,0,105.05246,0,4273.8905,22.20096329,355.0471729,0,0,0,0,0,0,1.75E-06,0,0,7.09E-05,0,0.087418226,7.26964482,60.54083046,3.918102925,15.5891357,0,1250.604504,0.007723273,0,0 +1776,0.004161709,0.13039867,0,0,2.112143132,0,0.024856862,0.010071225,0,0,0,0,0,105.03944,0,4273.2061,22.14194213,348.8985525,0,0,0,0,0,0,1.78E-06,0,0,7.49E-05,0,0.089069754,7.261469977,59.3811448,3.777483547,15.37007702,0,1235.260121,0.007723273,0,0 +1777,0.004162822,0.132797629,0,0,2.170244784,0,0.024856862,0.010071225,0,0,0,0,0,105.05273,0,4273.9048,22.56871006,357.545361,0,0,0,0,0,0,1.82E-06,0,0,7.90E-05,0,0.090752483,7.355973763,60.89349007,3.937981414,15.67345753,0,1262.643552,0.007723273,0,0 +1778,0.004163935,0.135240723,0,0,2.198001402,0,0.024856862,0.010071225,0,0,0,0,0,105.04465,0,4273.48,22.85608093,362.7554135,0,0,0,0,0,0,1.85E-06,0,0,8.30E-05,0,0.092467003,7.434606067,61.78348695,4.021077007,15.89945625,0,1282.280293,0.007723273,0,0 +1779,0.004165048,0.137728763,0,0,2.159615777,0,0.024856862,0.010071225,0,0,0,0,0,105.03691,0,4273.0734,22.82063569,355.9261715,0,0,0,0,0,0,1.89E-06,0,0,8.71E-05,0,0.094213914,7.418773457,60.50081488,3.865645204,15.62745786,0,1253.809198,0.007723273,0,0 +1780,0.00416717,0.140262576,0,0,2.189267588,0,0.024856862,0.010071225,0,0,0,0,0,104.98817,0,4270.511,23.24616665,361.6140422,0,0,0,0,0,0,1.92E-06,0,0,9.10E-05,0,0.095993828,7.569429121,61.61859566,3.871147964,16.0183808,0,1274.797709,0.007723273,0,0 +1781,0.004659413,0.142843003,0,0,2.1894412,0,0.024856862,0.010071225,0,0,0,0,0,105.04236,0,4273.3596,23.24965548,360.0900539,0,0,0,0,0,0,1.96E-06,0,0,9.52E-05,0,0.097807369,7.505783353,61.19330647,3.920723923,15.80695227,0,1277.536252,0.007723273,0,0 +1782,0.004660532,0.145470903,0,0,2.160522701,0,0.024856862,0.010071225,0,0,0,0,0,105.03125,0,4272.7759,23.34175812,356.0465546,0,0,0,0,0,0,2.00E-06,0,0,9.92E-05,0,0.099655171,7.519625788,60.48572145,3.793838185,15.71282083,0,1261.050876,0.007723273,0,0 +1783,0.004662661,0.148147149,0,0,2.15072559,0,0.024856862,0.010071225,0,0,0,0,0,105.0436,0,4273.4248,23.37991679,354.2869243,0,0,0,0,0,0,2.03E-06,0,0,1.03E-04,0,0.101537883,7.496232273,60.10171272,3.788738178,15.60726047,0,1258.691216,0.007723273,0,0 +1784,0.00466378,0.150872629,0,0,2.140542212,0,0.024856862,0.010071225,0,0,0,0,0,105.05531,0,4274.0405,23.2940423,350.5694963,0,0,0,0,0,0,2.07E-06,0,0,1.07E-04,0,0.103456163,7.3811564,59.21225989,3.835360348,15.22814126,0,1241.091384,0.007723273,0,0 +1785,0.004666993,0.153648251,0,0,2.165839691,0,0.024856862,0.010071225,0,0,0,0,0,105.02817,0,4272.6136,23.80210554,356.8051254,0,0,0,0,0,0,2.10E-06,0,0,1.11E-04,0,0.105410684,7.538152323,60.49447936,3.821649192,15.73271148,0,1266.56815,0.007723273,0,0 +1786,0.00529538,0.156474937,0,0,2.158683485,0,0.024856862,0.010071225,0,0,0,0,0,105.02684,0,4272.5442,23.831995,354.2058773,0,0,0,0,0,0,2.14E-06,0,0,1.15E-04,0,0.107402131,7.491084254,59.91468241,3.826316215,15.46715712,0,1263.905903,0.007723273,0,0 +1787,0.005297508,0.159353625,0,0,2.185179294,0,0.024856862,0.010071225,0,0,0,0,0,105.03415,0,4272.9283,24.17652818,358.7933683,0,0,0,0,0,0,2.18E-06,0,0,1.19E-04,0,0.1094312,7.55517197,60.75335708,3.885107996,15.71033146,0,1281.331419,0.007723273,0,0 +1788,0.005298627,0.162285272,0,0,2.255223484,0,0.024856862,0.010071225,0,0,0,0,0,104.9922,0,4270.7227,24.85592892,371.3570923,0,0,0,0,0,0,2.21E-06,0,0,1.23E-04,0,0.111498603,7.730934741,63.12433047,4.038519355,16.34335434,0,1326.080725,0.007723273,0,0 +1789,0.005300755,0.165270854,0,0,2.207664632,0,0.024856862,0.010071225,0,0,0,0,0,105.0242,0,4272.405,24.71707284,363.4416446,0,0,0,0,0,0,2.25E-06,0,0,1.28E-04,0,0.113605064,7.663516243,61.63229238,3.911091424,16.00040861,0,1300.935055,0.007723273,0,0 +1790,0.005302883,0.168311362,0,0,2.216436996,0,0.024856862,0.010071225,0,0,0,0,0,104.99139,0,4270.6805,24.94220857,364.8802164,0,0,0,0,0,0,2.28E-06,0,0,1.32E-04,0,0.115751321,7.680254371,61.84599181,3.937203207,16.05674391,0,1304.800481,0.007723273,0,0 +1791,0.005920183,0.171407806,0,0,2.172583556,0,0.024856862,0.010071225,0,0,0,0,0,105.02128,0,4272.2515,24.77843217,356.6583862,0,0,0,0,0,0,2.32E-06,0,0,1.36E-04,0,0.117938125,7.556943543,60.2187392,3.848117366,15.61644988,0,1284.768804,0.007723273,0,0 +1792,0.006098811,0.174561216,0,0,2.161650793,0,0.024856862,0.010071225,0,0,0,0,0,105.04466,0,4273.4807,24.81889294,354.2515376,0,0,0,0,0,0,2.36E-06,0,0,1.40E-04,0,0.120166243,7.499155045,59.70568574,3.852168551,15.44666919,0,1279.936623,0.007723273,0,0 +1793,0.006105082,0.17777264,0,0,2.153273834,0,0.024856862,0.010071225,0,0,0,0,0,105.02605,0,4272.5025,25.03153141,353.3723093,0,0,0,0,0,0,2.39E-06,0,0,1.44E-04,0,0.122436456,7.518120739,59.5849395,3.798134648,15.47797954,0,1276.675891,0.007723273,0,0 +1794,0.006092419,0.181043144,0,0,2.213843116,0,0.024856862,0.010071225,0,0,0,0,0,104.98417,0,4270.301,25.76753778,365.721914,0,0,0,0,0,0,2.43E-06,0,0,1.48E-04,0,0.124749558,7.731535991,62.03822453,3.901984421,16.16525997,0,1323.391544,0.007723273,0,0 +1795,0.006095933,0.184373817,0,0,2.202692273,0,0.024856862,0.010071225,0,0,0,0,0,105.01093,0,4271.7076,25.77334281,362.1921227,0,0,0,0,0,0,2.46E-06,0,0,1.52E-04,0,0.127106359,7.626169221,61.24273214,3.919106621,15.88313195,0,1307.117791,0.007723273,0,0 +1796,0.006396386,0.187765764,0,0,2.153154616,0,0.024856862,0.010071225,0,0,0,0,0,104.99978,0,4271.1214,25.74058407,354.4783029,0,0,0,0,0,0,2.50E-06,0,0,1.56E-04,0,0.129507686,7.581863097,59.86424243,3.749609514,15.6283698,0,1286.414837,0.007723273,0,0 +1797,0.006712627,0.191220113,0,0,2.213475036,0,0.024856862,0.010071225,0,0,0,0,0,105.01623,0,4271.986,26.23006226,363.5482372,0,0,0,0,0,0,2.54E-06,0,0,1.60E-04,0,0.131954379,7.636302582,61.47137695,3.940974102,15.93865305,0,1322.1792,0.007723273,0,0 +1798,0.006990649,0.194738012,0,0,2.234056283,0,0.024856862,0.010070485,0,0,0,0,0,105.0081,0,4271.559,26.54644012,367.6501028,0,0,0,0,0,0,2.57E-06,0,0,1.64E-04,0,0.134447296,7.671017716,62.19763903,4.015700361,16.12667274,0,1344.494311,0.007723273,0,0 +1799,0.007363034,0.198320631,0,0,2.207292165,0,0.024856862,0.010071964,0,0,0,0,0,104.99068,0,4270.6431,26.70648817,363.4860469,0,0,0,0,0,0,2.61E-06,0,0,1.68E-04,0,0.13698731,7.67446285,61.4962302,3.882903388,16.03734279,0,1332.732765,0.007723273,0,0 +1800,0.007853248,0.201969159,0,0,2.215974055,0,0.024856862,0.010071225,0,0,0,0,0,104.95838,0,4268.9449,27.05634308,365.8466368,0,0,0,0,0,0,2.64E-06,0,0,1.72E-04,0,0.13957531,7.740645322,62.00320914,3.867691465,16.2421417,0,1351.401885,0.007723273,0,0 +1801,0.007792363,0.20568481,0,0,2.21940169,0,0.024856862,0.010071225,0,0,0,0,0,105.01099,0,4271.7107,27.12488718,364.9170684,0,0,0,0,0,0,2.68E-06,0,0,1.76E-04,0,0.142212204,7.701186978,61.66564779,3.921843763,16.06373322,0,1346.312669,0.007723273,0,0 +1802,0.010116776,0.209468818,0,0,2.202692661,0,0.024856862,0.010071225,0,0,0,0,0,104.99468,0,4270.8532,27.33978432,362.9627075,0,0,0,0,0,0,2.72E-06,0,0,1.80E-04,0,0.144898914,7.763054085,61.32615659,3.814905719,16.07582361,0,1365.792459,0.007723273,0,0 +1803,0.008763958,0.213322441,0,0,2.180015828,0,0.024856862,0.010071225,0,0,0,0,0,105.0108,0,4271.7009,27.32049985,358.65078,0,0,0,0,0,0,2.75E-06,0,0,1.84E-04,0,0.147636382,7.720863757,60.40434182,3.773697199,15.83103088,0,1340.023262,0.007723273,0,0 +1804,0.00956559,0.21724696,0,0,2.197298087,0,0.024856862,0.010071225,0,0,0,0,0,105.0121,0,4271.7691,27.46474997,359.528696,0,0,0,0,0,0,2.79E-06,0,0,1.88E-04,0,0.150425568,7.68708673,60.36470275,3.871473305,15.67624811,0,1347.990682,0.007723273,0,0 +1805,0.009351564,0.221243678,0,0,2.215042398,0,0.024856862,0.010071225,0,0,0,0,0,104.98963,0,4270.588,27.9507982,364.3037043,0,0,0,0,0,0,2.82E-06,0,0,1.92E-04,0,0.153267447,7.835162209,61.31991146,3.843518327,16.0941548,0,1367.021932,0.007723273,0,0 +1806,0.009786482,0.225313924,0,0,2.222822585,0,0.024856862,0.010071225,0,0,0,0,0,104.98239,0,4270.2074,28.13437245,364.3432293,0,0,0,0,0,0,2.86E-06,0,0,1.96E-04,0,0.156163016,7.843541453,61.22344968,3.877012285,15.95144317,0,1370.297233,0.007723273,0,0 +1807,0.010470139,0.229459052,0,0,2.239871982,0,0.024856862,0.010071225,0,0,0,0,0,104.99423,0,4270.8298,28.45865603,367.2349328,0,0,0,0,0,0,2.90E-06,0,0,2.00E-04,0,0.159113289,7.906227329,61.70646914,3.906741383,16.11756408,0,1389.725529,0.007723273,0,0 +1808,0.009785087,0.233680437,0,0,2.311936484,0,0.024856862,0.010071225,0,0,0,0,0,104.95199,0,4268.6094,29.18524117,380.035272,0,0,0,0,0,0,2.93E-06,0,0,2.04E-04,0,0.162119299,8.095303457,64.08195973,4.070358273,16.7315469,0,1425.575123,0.007723273,0,0 +1809,0.009793704,0.237979484,0,0,2.26744264,0,0.024856862,0.010071225,0,0,0,0,0,104.979,0,4270.0292,29.12865813,372.8486855,0,0,0,0,0,0,2.97E-06,0,0,2.08E-04,0,0.1651821,8.062766978,62.71002213,3.940068496,16.44016599,0,1403.131587,0.007723273,0,0 +1810,0.010412685,0.242357621,0,0,2.279523716,0,0.024856862,0.010071225,0,0,0,0,0,104.93988,0,4267.9729,29.42453242,374.7180119,0,0,0,0,0,0,3.00E-06,0,0,2.12E-04,0,0.168302763,8.107079152,62.97351665,3.9615916,16.52538808,0,1414.194561,0.007723273,0,0 +1811,0.011014901,0.246816304,0,0,2.252530236,0,0.024856862,0.010071225,0,0,0,0,0,104.96903,0,4269.505,29.40578756,369.2694863,0,0,0,0,0,0,3.04E-06,0,0,2.17E-04,0,0.171482384,8.026948341,61.829606,3.9187457,16.18886557,0,1403.686743,0.007723273,0,0 +1812,0.011395912,0.251357013,0,0,2.228006935,0,0.024856862,0.010071225,0,0,0,0,0,104.99029,0,4270.6225,29.4202985,364.5806875,0,0,0,0,0,0,3.07E-06,0,0,2.21E-04,0,0.174722074,7.965169636,60.85746997,3.875988658,15.92905063,0,1394.884132,0.007723273,0,0 +1813,0.011449081,0.255981258,0,0,2.231996859,0,0.024856862,0.010071225,0,0,0,0,0,104.97005,0,4269.5589,29.77847603,365.9138874,0,0,0,0,0,0,3.11E-06,0,0,2.25E-04,0,0.178022969,8.032995952,61.1361302,3.844088557,16.06491504,0,1400.325553,0.007723273,0,0 +1814,0.011703716,0.260690576,0,0,2.291579691,0,0.024856862,0.010071225,0,0,0,0,0,104.93884,0,4267.9182,30.54785186,377.9855417,0,0,0,0,0,0,3.14E-06,0,0,2.29E-04,0,0.181386226,8.255365792,63.49192823,3.946873452,16.71992349,0,1449.11988,0.007723273,0,0 +1815,0.012094117,0.265486531,0,0,2.287324694,0,0.024856862,0.010071225,0,0,0,0,0,104.94955,0,4268.4808,30.64433954,375.5806648,0,0,0,0,0,0,3.18E-06,0,0,2.33E-04,0,0.184813022,8.178894558,62.8715757,3.977998266,16.48749688,0,1442.834604,0.007723273,0,0 +1816,0.013382563,0.270370719,0,0,2.261022,0,0.024856862,0.010071225,0,0,0,0,0,104.93504,0,4267.7184,30.79985622,371.6298228,0,0,0,0,0,0,3.22E-06,0,0,2.37E-04,0,0.188304559,8.188247477,62.14643252,3.866008445,16.39503385,0,1449.517631,0.007723273,0,0 +1817,0.013970106,0.275344761,0,0,2.296180569,0,0.024856862,0.010071225,0,0,0,0,0,104.95336,0,4268.6815,31.19839541,376.4429441,0,0,0,0,0,0,3.25E-06,0,0,2.41E-04,0,0.191862058,8.220825384,62.94153101,3.981202576,16.51722865,0,1472.005827,0.007723273,0,0 +1818,0.014054847,0.280410312,0,0,2.335490105,0,0.024856862,0.010071225,0,0,0,0,0,104.94012,0,4267.9855,31.68760832,383.9142096,0,0,0,0,0,0,3.29E-06,0,0,2.45E-04,0,0.195486767,8.306817108,64.26768049,4.109295846,16.84964888,0,1503.330753,0.007723273,0,0 +1819,0.01412101,0.285569054,0,0,2.304129482,0,0.024856862,0.010071225,0,0,0,0,0,104.92235,0,4267.0511,31.84544135,378.3325838,0,0,0,0,0,0,3.32E-06,0,0,2.49E-04,0,0.199179954,8.302878859,63.25758927,3.96351919,16.66519821,0,1480.397209,0.007723273,0,0 +1820,0.014336733,0.290822702,0,0,2.321048766,0,0.024856862,0.010071225,0,0,0,0,0,104.88909,0,4265.3029,32.33339467,382.4197483,0,0,0,0,0,0,3.36E-06,0,0,2.53E-04,0,0.202942914,8.416077975,64.0766433,3.958562233,16.96356441,0,1500.127423,0.007723273,0,0 +1821,0.014562069,0.296173002,0,0,2.333483777,0,0.024856862,0.010071225,0,0,0,0,0,104.93899,0,4267.9261,32.52138863,382.8975341,0,0,0,0,0,0,3.40E-06,0,0,2.57E-04,0,0.206776965,8.396299171,63.98744909,4.029731628,16.86010032,0,1506.00016,0.007723273,0,0 +1822,0.015133379,0.301621733,0,0,2.302515118,0,0.024856862,0.010071225,0,0,0,0,0,104.92104,0,4266.9822,32.73451052,378.6708004,0,0,0,0,0,0,3.43E-06,0,0,2.61E-04,0,0.21068345,8.447852069,63.22724653,3.871133523,16.79629808,0,1499.477254,0.007723273,0,0 +1823,0.016038149,0.307170704,0,0,2.282471765,0,0.024856862,0.010071225,0,0,0,0,0,104.94096,0,4268.0293,32.75571509,374.3931813,0,0,0,0,0,0,3.47E-06,0,0,2.65E-04,0,0.214663737,8.395261064,62.26076437,3.846052063,16.53271228,0,1499.604752,0.007723273,0,0 +1824,0.016501009,0.31282176,0,0,2.310947811,0,0.024856862,0.010071225,0,0,0,0,0,104.93425,0,4267.6765,33.0519787,377.0407114,0,0,0,0,0,0,3.50E-06,0,0,2.69E-04,0,0.218719221,8.395833943,62.5634338,3.956577313,16.47072526,0,1512.912552,0.007723273,0,0 +1825,0.017222663,0.318576779,0,0,2.322703112,0,0.024856862,0.010071225,0,0,0,0,0,104.91652,0,4266.7449,33.52533882,380.3167498,0,0,0,0,0,0,3.54E-06,0,0,2.73E-04,0,0.222851322,8.516236489,63.18578955,3.919068065,16.80867752,0,1538.203336,0.007723273,0,0 +1826,0.01738223,0.324437675,0,0,2.320968834,0,0.024856862,0.010071225,0,0,0,0,0,104.90841,0,4266.3186,33.7481029,378.8222655,0,0,0,0,0,0,3.57E-06,0,0,2.77E-04,0,0.227061488,8.523620414,62.81594151,3.911604483,16.62077908,0,1531.982813,0.007723273,0,0 +1827,0.018639877,0.330406393,0,0,2.346337782,0,0.024856862,0.010071225,0,0,0,0,0,104.91515,0,4266.6729,34.15505001,382.4773392,0,0,0,0,0,0,3.61E-06,0,0,2.81E-04,0,0.231351194,8.585850324,63.38999011,3.962793591,16.79991923,0,1566.092214,0.007723273,0,0 +1828,0.018824746,0.336484919,0,0,2.420774153,0,0.024856862,0.010071225,0,0,0,0,0,104.87222,0,4264.4159,34.99912851,395.9754325,0,0,0,0,0,0,3.64E-06,0,0,2.85E-04,0,0.235721941,8.801495947,65.90535949,4.116354977,17.4805645,0,1618.020723,0.007723273,0,0 +1829,0.018664196,0.342675273,0,0,2.379376332,0,0.024856862,0.010071225,0,0,0,0,0,104.90025,0,4265.8895,35.01640513,389.1746282,0,0,0,0,0,0,3.68E-06,0,0,2.89E-04,0,0.240175262,8.767229394,64.57289824,4.000350816,17.19408165,0,1597.238302,0.007723273,0,0 +1830,0.024933734,0.348979511,0,0,2.403159831,0,0.024856862,0.010071225,0,0,0,0,0,104.8667,0,4264.1256,35.40215534,392.1065329,0,0,0,0,0,0,3.72E-06,0,0,2.93E-04,0,0.244712716,8.818806446,64.94076179,4.03843029,17.31425157,0,1705.903254,0.007723273,0,0 +1831,0.023660178,0.355399729,0,0,2.361347125,0,0.024856862,0.010071225,0,0,0,0,0,104.89174,0,4265.442,35.37418705,384.2012507,0,0,0,0,0,0,3.75E-06,0,0,2.97E-04,0,0.249335894,8.731507392,63.33682174,3.947409453,16.87772867,0,1661.03313,0.007723273,0,0 +1832,0.023685925,0.36193806,0,0,2.353863299,0,0.024856862,0.010071225,0,0,0,0,0,104.90924,0,4266.362,35.56272349,382.363398,0,0,0,0,0,0,3.79E-06,0,0,3.01E-04,0,0.254046413,8.712430009,62.87089656,3.946175053,16.73898675,0,1660.610583,0.007723273,0,0 +1833,0.024226693,0.368596678,0,0,2.356959381,0,0.024856862,0.010070485,0,0,0,0,0,104.89175,0,4265.4426,35.98083111,383.4537928,0,0,0,0,0,0,3.82E-06,0,0,3.05E-04,0,0.258845925,8.790922957,63.0695837,3.905335594,16.86449692,0,1673.874936,0.007723273,0,0 +1834,0.024702586,0.375377795,0,0,2.412445466,0,0.024856862,0.010071964,0,0,0,0,0,104.854,0,4263.4584,36.76106097,394.1429023,0,0,0,0,0,0,3.86E-06,0,0,3.09E-04,0,0.26373611,9.001420472,65.10499264,3.989061294,17.45428534,0,1721.269347,0.007723273,0,0 +1835,0.025273638,0.382283665,0,0,2.405456375,0,0.024856862,0.010071225,0,0,0,0,0,104.8698,0,4264.2887,36.88278973,390.5551392,0,0,0,0,0,0,3.90E-06,0,0,3.13E-04,0,0.268718682,8.925548286,64.23544317,3.998558037,17.17048679,0,1718.222125,0.007723273,0,0 +1836,0.029221069,0.389316584,0,0,2.404187956,0,0.024856862,0.010071225,0,0,0,0,0,104.84901,0,4263.1961,37.24729235,389.9786644,0,0,0,0,0,0,3.93E-06,0,0,3.17E-04,0,0.273795386,8.993015086,64.08016333,3.917445996,17.23500429,0,1783.083419,0.007723273,0,0 +1837,0.029260399,0.396478888,0,0,2.440210174,0,0.024856862,0.010071225,0,0,0,0,0,104.86946,0,4264.2707,37.69980678,394.7565038,0,0,0,0,0,0,3.97E-06,0,0,3.21E-04,0,0.278968001,9.027059824,64.82242714,4.040217213,17.35383524,0,1798.088197,0.007723273,0,0 +1838,0.030288693,0.403772957,0,0,2.477311746,0,0.024856862,0.010071225,0,0,0,0,0,104.85548,0,4263.5362,38.24210962,401.296187,0,0,0,0,0,0,4.00E-06,0,0,3.25E-04,0,0.284238338,9.122535895,65.94724657,4.142172855,17.64153847,0,1841.543139,0.007723273,0,0 +1839,0.031310557,0.411201217,0,0,2.452638138,0,0.024856862,0.010071225,0,0,0,0,0,104.83788,0,4262.6108,38.51117556,396.9116369,0,0,0,0,0,0,4.04E-06,0,0,3.29E-04,0,0.289608243,9.139608329,65.11131218,4.015311872,17.50517633,0,1843.080824,0.007723273,0,0 +1840,0.033542974,0.418766135,0,0,2.443877522,0,0.024856862,0.010071225,0,0,0,0,0,104.80755,0,4261.0163,38.88776194,395.8809162,0,0,0,0,0,0,4.07E-06,0,0,3.33E-04,0,0.295079598,9.211326299,64.92298176,3.92426914,17.57513248,0,1874.141828,0.007723273,0,0 +1841,0.034601229,0.426470225,0,0,2.490489852,0,0.024856862,0.010071225,0,0,0,0,0,104.84789,0,4263.137,39.38162317,402.3727418,0,0,0,0,0,0,4.11E-06,0,0,3.37E-04,0,0.30065432,9.249453202,65.94544518,4.089445548,17.74554357,0,1916.264207,0.007723273,0,0 +1842,0.03663998,0.434316049,0,0,2.449170469,0,0.024856862,0.010070485,0,0,0,0,0,104.84034,0,4262.7403,39.61872888,396.9951221,0,0,0,0,0,0,4.14E-06,0,0,3.41E-04,0,0.30633436,9.261381852,64.92167359,3.936168061,17.59096172,0,1931.462508,0.007723273,0,0 +1843,0.037450386,0.442306214,0,0,2.411136271,0,0.024856862,0.010071964,0,0,0,0,0,104.85726,0,4263.6297,39.65326382,389.7367809,0,0,0,0,0,0,4.18E-06,0,0,3.45E-04,0,0.31212171,9.185852612,63.42406091,3.846066212,17.21821832,0,1929.660398,0.007723273,0,0 +1844,0.039846973,0.450443374,0,0,2.443825896,0,0.024856862,0.010071225,0,0,0,0,0,104.85117,0,4263.3094,40.04426499,392.7074417,0,0,0,0,0,0,4.22E-06,0,0,3.49E-04,0,0.318018395,9.178913526,63.7624543,3.965309781,17.1801219,0,1991.445647,0.007723273,0,0 +1845,0.043792129,0.458730235,0,0,2.471371875,0,0.024856862,0.010071225,0,0,0,0,0,104.83257,0,4262.3319,40.66967667,397.850056,0,0,0,0,0,0,4.25E-06,0,0,3.53E-04,0,0.324026483,9.307905911,64.68556723,3.957876345,17.5993633,0,2080.381092,0.007723273,0,0 +1846,0.044197374,0.46716955,0,0,2.471198742,0,0.024856862,0.010071225,0,0,0,0,0,104.82423,0,4261.8933,40.97519975,395.9082622,0,0,0,0,0,0,4.29E-06,0,0,3.57E-04,0,0.330148076,9.302498358,64.24405153,3.94954154,17.39887857,0,2072.290434,0.007723273,0,0 +1847,0.047464619,0.475764124,0,0,2.521115228,0,0.024856862,0.010071225,0,0,0,0,0,104.82758,0,4262.0693,41.61647168,402.9851575,0,0,0,0,0,0,4.32E-06,0,0,3.61E-04,0,0.336385321,9.401962019,65.44362075,4.0405661,17.76051419,0,2154.230603,0.007723273,0,0 +1848,0.047117807,0.484516814,0,0,2.5773718,1.49E-05,0.024856862,0.010070485,0,0,0,0,0,104.78829,0,4260.004,42.44947063,413.5582929,0,0,0,0,0,0,4.36E-06,0,0,3.65E-04,0,0.342740401,9.573238567,67.39824375,4.1550565,18.30069373,0,2204.416735,0.007723273,0,0 +1849,0.048851442,0.493430528,0,0,2.552394089,1.20E-04,0.024856862,0.010071964,0,0,0,0,0,104.81678,0,4261.5016,42.63396461,408.9399341,0,0,0,0,0,0,4.39E-06,0,0,3.69E-04,0,0.349215542,9.543358834,66.42707154,4.087020956,18.07478627,0,2224.89572,0.007723273,0,0 +1850,0.051384895,0.502508228,0,0,2.571124479,2.25E-04,0.024856862,0.010071225,0,0,0,0,0,104.93295,0,4267.6083,43.14236365,411.4628743,0,0,0,0,0,0,4.44E-06,0,0,3.74E-04,0,0.355813014,9.604162557,66.78304875,4.096904208,18.22682479,0,2275.776711,0.007723273,0,0 +1851,0.051562308,0.494656367,0,0,2.526692589,2.41E-04,0.024856862,0.010071225,0,0,0,0,0,104.96457,0,4269.2706,43.15191371,402.2448153,0,0,0,0,0,0,4.48E-06,0,0,3.78E-04,0,0.363793441,9.478471328,64.95004659,4.010397678,17.72630049,0,2256.815147,0.007723273,0,0 +1852,0.05364238,0.550685869,0,0,2.50763416,2.42E-04,0.024856862,0.010071225,0,0,0,0,0,104.98199,0,4270.1861,43.34412933,397.49852,0,0,0,0,0,0,4.51E-06,0,0,3.83E-04,0,0.372424224,9.424520247,63.95789986,3.958451611,17.47926155,0,2277.634405,0.007723273,0,0 +1853,0.055952349,0.548631086,0,0,2.527811743,2.43E-04,0.024856862,0.010071225,0,0,0,0,0,104.9693,0,4269.5191,43.88435963,400.3388041,0,0,0,0,0,0,4.55E-06,0,0,3.87E-04,0,0.380109709,9.493187126,64.44555418,3.968326235,17.65848988,0,2326.420616,0.007723273,0,0 +1854,0.065895655,0.546739774,0,0,2.610048543,2.44E-04,0.024856862,0.010071225,0,0,0,0,0,104.9226,0,4267.0641,44.80907906,413.3991315,0,0,0,0,0,0,4.58E-06,0,0,3.90E-04,0,0.388118038,9.708926054,66.79469522,4.086374133,18.34043133,0,2535.158195,0.007723273,0,0 +1855,0.066560595,0.543758287,0,0,2.593264313,2.45E-04,0.024856862,0.010070485,0,0,0,0,0,104.95064,0,4268.5385,44.9570539,408.1104539,0,0,0,0,0,0,4.62E-06,0,0,3.95E-04,0,0.395154931,9.60821845,65.65156398,4.071657216,17.9916486,0,2531.882071,0.007723273,0,0 +1856,0.071195717,0.549725266,0,0,2.573430007,2.47E-04,0.024856862,0.010071964,0,0,0,0,0,104.92886,0,4267.3934,45.32147323,404.8549167,0,0,0,0,0,0,4.65E-06,0,0,3.98E-04,0,0.401213616,9.648967408,65.0425347,3.941501863,17.95411805,0,2598.32335,0.007723273,0,0 +1857,0.071893947,0.555060913,0,0,2.636452577,2.49E-04,0.024856862,0.010071225,0,0,0,0,0,104.94976,0,4268.4922,46.01300694,414.6731918,0,0,0,0,0,0,4.69E-06,0,0,4.03E-04,0,0.40752619,9.717987449,66.72779877,4.159141007,18.29156565,0,2646.996287,0.007723273,0,0 +1858,0.07302816,0.55973691,0,0,2.660122642,2.51E-04,0.024856862,0.010071225,0,0,0,0,0,104.93987,0,4267.9722,46.54057729,419.0140236,0,0,0,0,0,0,4.73E-06,0,0,4.07E-04,0,0.412517456,9.773872717,67.47060376,4.240872485,18.4792763,0,2684.853418,0.007723273,0,0 +1859,0.077852113,0.567385369,0,0,2.64820325,2.53E-04,0.024856862,0.010071225,0,0,0,0,0,104.91443,0,4266.635,46.94962615,416.2997485,0,0,0,0,0,0,4.76E-06,0,0,4.10E-04,0,0.416997408,9.815633788,66.95694734,4.119710729,18.44950598,0,2765.351504,0.007723273,0,0 +1860,0.08580579,0.57190571,0,0,2.648404731,2.55E-04,0.024856862,0.010810676,0,0,0,0,0,104.89112,0,4265.4096,47.37614023,416.0639966,0,0,0,0,0,0,4.79E-06,0,0,4.14E-04,0,0.420752578,9.868462594,66.84953493,4.060976263,18.520468,0,2898.377784,0.007723273,0,0 +1861,0.090437572,0.583095346,0,0,2.670268663,2.57E-04,0.024856862,0.010810691,0,0,0,0,0,104.94268,0,4268.1198,48.2346867,417.2441372,0,0,0,0,0,0,4.83E-06,0,0,4.19E-04,0,0.42335986,9.857135646,66.88575551,4.161212988,18.43711983,0,2971.278843,0.007723273,0,0 +1862,0.091865591,0.522956563,0,0,2.648564983,2.60E-04,0.024856862,0.010071254,0,0,0,0,0,104.93302,0,4267.612,49.13056212,414.1628066,0,0,0,0,0,0,4.87E-06,0,0,4.23E-04,0,0.425968395,9.918881972,66.35896016,4.042449359,18.41589321,0,2976.388043,0.007723273,0,0 +1863,0.097488554,0.523134297,0,0,2.629269514,2.62E-04,0.024856862,0.010071254,0,0,0,0,0,104.9509,0,4268.552,49.71022253,408.1224194,0,0,0,0,0,0,4.91E-06,0,0,4.27E-04,0,0.428432683,9.868665854,65.0096354,3.971519356,18.09141101,0,3064.446907,0.007723273,0,0 +1864,0.104725139,0.523481383,0,0,2.667755634,2.65E-04,0.024856862,0.010071254,0,0,0,0,0,104.94467,0,4268.2247,50.66032473,411.3310643,0,0,0,0,0,0,4.94E-06,0,0,4.31E-04,0,0.431014196,9.887134077,65.39906664,4.087458726,18.0938173,0,3193.218259,0.007723273,0,0 +1865,0.110936319,0.524250384,0,0,2.720201066,2.68E-04,0.024856862,0.010810706,0,0,0,0,0,104.93017,0,4267.4623,51.9800751,420.489005,0,0,0,0,0,0,4.98E-06,0,0,4.35E-04,0,0.433438772,10.07353478,67.10347351,4.157661467,18.66656838,0,3327.080176,0.007723273,0,0 +1866,0.114738508,0.524386363,0,0,2.710298337,2.71E-04,0.024856862,0.01081072,0,0,0,0,0,104.92398,0,4267.1368,52.74699293,417.1011849,0,0,0,0,0,0,5.01E-06,0,0,4.39E-04,0,0.435744776,10.06454912,66.37528156,4.133671178,18.39468019,0,3388.258078,0.007723273,0,0 +1867,0.12258204,0.522876455,0,0,2.761022671,2.74E-04,0.024856862,0.010070544,0,0,0,0,0,104.93094,0,4267.5026,53.94102178,424.2969753,0,0,0,0,0,0,5.05E-06,0,0,4.43E-04,0,0.438210649,10.1891331,67.66026449,4.231180961,18.76835617,0,3565.435535,0.007723273,0,0 +1868,0.125609442,0.521415398,0,0,2.825140562,2.77E-04,0.024856862,0.010072023,0,0,0,0,0,104.89186,0,4265.4483,55.28767356,434.9302283,0,0,0,0,0,0,5.08E-06,0,0,4.47E-04,0,0.441434256,10.37220092,69.64729381,4.363304735,19.30124757,0,3668.308732,0.007723273,0,0 +1869,0.133291522,0.519770898,0,0,2.785004317,2.81E-04,0.024856862,0.010810735,0,0,0,0,0,104.93014,0,4267.4609,55.83359728,426.4036167,0,0,0,0,0,0,5.12E-06,0,0,4.51E-04,0,0.443908266,10.31106127,67.92949559,4.245329954,18.88882504,0,3791.462745,0.007723273,0,0 +1870,0.136674384,0.51867186,0,0,2.831200782,2.84E-04,0.024856862,0.01081075,0,0,0,0,0,104.89317,0,4265.5174,56.99659231,433.2287624,0,0,0,0,0,0,5.15E-06,0,0,4.55E-04,0,0.446639961,10.44102397,69.12187694,4.32346865,19.25812075,0,3887.529335,0.007723273,0,0 +1871,0.145249161,0.538815215,0,0,2.797830347,2.88E-04,0.024856862,0.010071314,0,0,0,0,0,104.92871,0,4267.3856,57.57401422,425.1606513,0,0,0,0,0,0,5.19E-06,0,0,4.59E-04,0,0.454335934,10.3694977,67.42862358,4.269404037,18.76177377,0,4016.032279,0.007723273,0,0 +1872,0.160346513,0.624237802,0,0,2.771292694,2.92E-04,0.024856862,0.010810765,0,0,0,0,0,104.95075,0,4268.5441,58.18710545,417.7442734,0,0,0,0,0,0,5.23E-06,0,0,4.63E-04,0,0.470862622,10.33038424,65.84553711,4.178709817,18.36534165,0,4250.256916,0.007723273,0,0 +1873,0.170095482,0.635197776,0,0,2.841633848,2.96E-04,0.024856862,0.01081078,0,0,0,0,0,104.93223,0,4267.5705,59.62016165,429.280289,0,0,0,0,0,0,5.26E-06,0,0,4.67E-04,0,0.49389425,10.56453512,67.99437045,4.309987324,18.9372989,0,4473.449628,0.007723273,0,0 +1874,0.161012643,0.642458922,0,0,2.86805891,3.00E-04,0.024856862,0.010810794,0,0,0,0,0,104.88493,0,4265.0843,60.88850035,435.80418,0,0,0,0,0,0,5.30E-06,0,0,4.71E-04,0,0.521735812,10.75161101,69.34908007,4.369596918,19.30481072,0,4382.176552,0.007723273,0,0 +1875,0.173259068,0.650321509,0,0,2.833489105,3.05E-04,0.024856862,0.010810809,0,0,0,0,0,104.93101,0,4267.5065,61.4471703,426.8934955,0,0,0,0,0,0,5.33E-06,0,0,4.75E-04,0,0.552163614,10.66354523,67.4820886,4.311546236,18.75387609,0,4552.510356,0.007723273,0,0 +1876,0.175938232,0.65804039,0,0,2.843125267,3.09E-04,0.024856862,0.010810824,0,0,0,0,0,104.90175,0,4265.968,62.60294811,429.4805477,0,0,0,0,0,0,5.37E-06,0,0,4.79E-04,0,0.58288316,10.83189303,68.07266489,4.273649915,19.00214066,0,4640.322706,0.007723273,0,0 +1877,0.179825348,0.664694086,0,0,2.881579173,3.14E-04,0.024856862,0.010810839,0,0,0,0,0,104.92824,0,4267.3608,63.64524259,434.060346,0,0,0,0,0,0,5.41E-06,0,0,4.83E-04,0,0.612226706,10.8970216,68.77838073,4.413505724,19.0890591,0,4762.604755,0.007723273,0,0 +1878,0.180776983,0.671585762,0,0,2.905036494,3.19E-04,0.024856862,0.010810853,0,0,0,0,0,104.92472,0,4267.1759,64.71120383,437.9599498,0,0,0,0,0,0,5.44E-06,0,0,4.87E-04,0,0.637718424,10.99894534,69.46979574,4.503130841,19.22817131,0,4806.316495,0.007723273,0,0 +1879,0.193175438,0.678615294,0,0,2.92925864,3.23E-04,0.024856862,0.010810868,0,0,0,0,0,104.88028,0,4264.8396,65.90279841,440.8517591,0,0,0,0,0,0,5.47E-06,0,0,4.91E-04,0,0.658926777,11.18150569,70.08572002,4.447158396,19.48731539,0,5054.634873,0.007723273,0,0 +1880,0.219340005,0.684857424,0,0,2.921172062,3.29E-04,0.024856862,0.010810144,0,0,0,0,0,104.88174,0,4264.9162,66.6649843,437.3657275,0,0,0,0,0,0,5.51E-06,0,0,4.95E-04,0,0.672777776,11.21057035,69.18788119,4.386751757,19.32682128,0,5476.691841,0.007723273,0,0 +1881,0.22522318,0.722626203,0,0,2.962877226,3.34E-04,0.024856862,0.011551088,0,0,0,0,0,104.92914,0,4267.4079,67.70670095,440.9737248,0,0,0,0,0,0,5.55E-06,0,0,4.99E-04,0,0.680636704,11.27474846,69.70896889,4.531822011,19.32716624,0,5655.562653,0.007723273,0,0 +1882,0.236948997,0.674378608,0,0,2.944345851,3.39E-04,0.024856862,0.011550379,0,0,0,0,0,104.92759,0,4267.3266,68.57787524,436.0786301,0,0,0,0,0,0,5.59E-06,0,0,5.04E-04,0,0.689255681,11.34322096,68.75016749,4.409841205,19.15816229,0,5878.580768,0.007723273,0,0 +1883,0.250894677,0.681454028,0,0,2.918084088,3.45E-04,0.024856862,0.010810957,0,0,0,0,0,104.95902,0,4268.979,69.1859791,428.2212034,0,0,0,0,0,0,5.62E-06,0,0,5.08E-04,0,0.695872552,11.30107278,67.06254476,4.344707595,18.70936137,0,6136.750815,0.007723273,0,0 +1884,0.252849902,0.684683542,0,0,2.97815874,3.50E-04,0.024856862,0.010810972,0,0,0,0,0,104.93535,0,4267.7345,70.48060515,436.5183492,0,0,0,0,0,0,5.66E-06,0,0,5.12E-04,0,0.70169045,11.46377857,68.59402326,4.507763748,19.00988998,0,6243.347605,0.007723273,0,0 +1885,0.254442991,0.690863781,0,0,2.987658653,3.56E-04,0.024856862,0.011550438,0,0,0,0,0,104.93798,0,4267.8727,71.60546241,438.1415385,0,0,0,0,0,0,5.69E-06,0,0,5.16E-04,0,0.707890871,11.60315357,68.94977818,4.492846371,19.20686906,0,6294.938313,0.007723273,0,0 +1886,0.258326127,0.691934912,0,0,3.000148376,3.62E-04,0.024856862,0.011550467,0,0,0,0,0,104.9357,0,4267.7531,72.58254388,437.7333269,0,0,0,0,0,0,5.73E-06,0,0,5.20E-04,0,0.712632779,11.67579747,68.86926284,4.534738954,19.06781958,0,6353.027294,0.007723273,0,0 +1887,0.270973326,0.691885463,0,0,3.044590075,3.68E-04,0.024856862,0.011550497,0,0,0,0,0,104.94903,0,4268.4538,73.77743063,443.1077381,0,0,0,0,0,0,5.77E-06,0,0,5.24E-04,0,0.71821666,11.82565523,69.79403942,4.618994874,19.32845364,0,6605.766965,0.007723273,0,0 +1888,0.299024069,0.691539784,0,0,3.123484052,3.74E-04,0.024856862,0.011550526,0,0,0,0,0,104.91459,0,4266.6433,75.11035553,452.502308,0,0,0,0,0,0,5.80E-06,0,0,5.28E-04,0,0.724224235,12.04162329,71.42723744,4.741896917,19.78574643,0,7182.264809,0.007723273,0,0 +1889,0.29939589,0.691049208,0,0,3.104668338,3.81E-04,0.024856862,0.011550556,0,0,0,0,0,104.95877,0,4268.9657,75.92960019,448.6908696,0,0,0,0,0,0,5.84E-06,0,0,5.32E-04,0,0.730764112,12.07532791,70.65718772,4.727164288,19.55277705,0,7178.592239,0.007723273,0,0 +1890,0.32528597,0.68776294,0,0,3.159194949,3.87E-04,0.024856862,0.011550586,0,0,0,0,0,104.9317,0,4267.5425,77.07862319,453.8990323,0,0,0,0,0,0,5.87E-06,0,0,5.36E-04,0,0.755661554,12.22188071,71.47659717,4.807916688,19.77806486,0,7728.431301,0.007723273,0,0 +1891,0.340453909,0.684411407,0,0,3.125180696,3.94E-04,0.024856862,0.011550615,0,0,0,0,0,104.97344,0,4269.7366,77.68229292,444.3827318,0,0,0,0,0,0,5.91E-06,0,0,5.40E-04,0,0.766996007,12.1596402,69.53172191,4.743306066,19.19967303,0,8025.900173,0.007723273,0,0 +1892,0.342946092,0.69893132,0,0,3.110528365,4.01E-04,0.024856862,0.011550645,0,0,0,0,0,104.99082,0,4270.6504,78.54558089,439.808659,0,0,0,0,0,0,5.95E-06,0,0,5.45E-04,0,0.778272468,12.19914652,68.66391959,4.695682305,18.94952176,0,8166.143155,0.007723273,0,0 +1893,0.33787039,0.699713125,0,0,3.125430895,4.08E-04,0.024856862,0.012290126,0,0,0,0,0,104.97994,0,4270.0783,79.81501329,443.3506558,0,0,0,0,0,0,5.99E-06,0,0,5.49E-04,0,0.789729823,12.37945386,69.48705802,4.715239733,19.1784562,0,8120.644735,0.007723273,0,0 +1894,0.351124504,0.715581396,0,0,3.205110618,4.15E-04,0.024856862,0.01229017,0,0,0,0,0,104.93101,0,4267.5063,81.38345626,456.6960325,0,0,0,0,0,0,6.02E-06,0,0,5.52E-04,0,0.802004637,12.66238559,71.90804381,4.888948538,19.83612848,0,8411.388473,0.007723273,0,0 +1895,0.371712037,0.720945096,0,0,3.216163845,4.22E-04,0.024856862,0.011550763,0,0,0,0,0,104.96751,0,4269.4251,82.23116014,453.551885,0,0,0,0,0,0,6.06E-06,0,0,5.57E-04,0,0.812887633,12.67244423,71.15178658,4.919171254,19.52250048,0,8846.66701,0.007723273,0,0 +1896,0.383674818,0.723440788,0,0,3.170768747,4.30E-04,0.024856862,0.012290244,0,0,0,0,0,104.96751,0,4269.4252,83.00005426,444.0944278,0,0,0,0,0,0,6.09E-06,0,0,5.61E-04,0,0.824102858,12.72059369,69.42267706,4.733994615,19.17728772,0,9089.598433,0.007723273,0,0 +1897,0.401981164,0.725878271,0,0,3.268702112,4.37E-04,0.024856862,0.012290288,0,0,0,0,0,104.99693,0,4270.9718,84.39253635,456.4122055,0,0,0,0,0,0,6.13E-06,0,0,5.65E-04,0,0.834637127,12.8902171,71.5467325,5.026760132,19.58218288,0,9520.393854,0.007723273,0,0 +1898,0.42330421,0.72837657,0,0,3.296870259,4.45E-04,0.02485618,0.012290333,0,0,0,0,0,105.01512,0,4271.9281,85.36127162,456.6037674,0,0,0,0,0,0,6.17E-06,0,0,5.69E-04,0,0.844305316,12.95906823,71.45665952,5.098029535,19.50168111,0,10010.09583,0.007723236,0,0 +1899,0.463317192,0.728556158,0,0,3.355831345,4.86E-04,0.024857703,0.012290377,0,0,0,0,0,104.97653,0,4269.8993,86.70543387,462.1035994,0,0,0,0,0,0,6.20E-06,0,0,5.73E-04,0,0.853783366,13.20706844,72.46072256,5.094979384,19.86870993,0,10838.11345,0.007723233,0,0 +1900,0.488155862,0.73057236,0,0,3.361821037,0.002392668,0.024856437,0.028558348,0,0,0,0,0,104.98481,0,4270.3344,87.61328845,459.5444669,0,0,0,0,0,0,6.24E-06,0,0,5.77E-04,0,0.863169654,13.27666955,71.90656631,5.089168388,19.75078793,0,11348.7275,0.007723268,0,0 +1901,0.504485719,0.796906313,0,0,3.382952935,0.004820097,0.024857442,0.047784449,0,0,0,0,0,105.04131,0,4273.3046,88.39116711,457.6168305,0,0,0,0,0,0,6.28E-06,0,0,5.82E-04,0,0.871405959,13.3014099,71.63263161,5.202144138,19.48762217,0,11775.2552,0.007723268,0,0 +1902,0.519345117,0.800278636,0,0,3.38154147,0.005778122,0.024856062,0.050743008,0,0,0,0,0,105.04898,0,4273.708,89.26282464,455.0261768,0,0,0,0,0,0,6.32E-06,0,0,5.86E-04,0,0.881215447,13.41248803,71.24149846,5.179688037,19.3580615,0,12100.54877,0.007723268,0,0 +1903,0.566454621,0.829571146,0,0,3.389386332,0.006957613,0.024857979,0.05591998,0,0,0,0,0,105.09555,0,4276.1561,89.89074057,449.9625304,0,0,0,0,0,0,6.36E-06,0,0,5.90E-04,0,0.890660734,13.43752052,70.25376393,5.190103458,19.03059788,0,13044.15816,0.007723268,0,0 +1904,0.575152133,0.856100074,0,0,3.4640583,0.009436339,0.024855289,0.068491568,0,0,0,0,0,105.07939,0,4275.3063,91.35674943,462.621765,0,0,0,0,0,0,6.39E-06,0,0,5.94E-04,0,0.900998672,13.7314717,72.88437625,5.400226563,19.65611973,0,13274.43719,0.007723268,0,0 +1905,0.612296247,0.883090418,0,0,3.525334738,0.013412831,0.024859105,0.087718467,0,0,0,0,0,105.08907,0,4275.8152,92.40132432,467.4401288,0,0,0,0,0,0,6.43E-06,0,0,5.99E-04,0,0.911796751,13.85510547,73.70973522,5.570897784,19.75296716,0,14100.97838,0.007723268,0,0 +1906,0.644276357,0.913945895,0,0,3.54932448,0.018196454,0.024853655,0.11138246,0,0,0,0,0,105.10645,0,4276.7286,93.24998316,466.4356479,0,0,0,0,0,0,6.47E-06,0,0,6.03E-04,0,0.922864309,13.95964537,73.46173851,5.607842107,19.60693136,0,14766.45012,0.007723268,0,0 +1907,0.726915977,0.922997028,0,0,3.674457368,0.016966195,0.025812945,0.10398923,0,0,0,0,0,105.14627,0,4278.822,94.56080194,480.3174564,0,0,0,0,0,0,6.51E-06,0,0,6.07E-04,0,0.933557019,14.21677499,76.00444514,5.92575152,20.14449075,0,16264.98721,0.007723268,0,0 +1908,0.703232591,0.932378464,0,0,3.67587664,0.021404879,0.029231937,0.12765503,0,0,0,0,0,105.12414,0,4277.6586,95.71237193,482.582634,0,0,0,0,0,0,6.54E-06,0,0,6.11E-04,0,0.943978146,14.40742286,76.856238,5.975251674,20.34218955,0,15590.71312,0.007723268,0,0 +1909,0.7293531,0.939463987,0,0,3.690048662,0.036714367,0.765086,0.21121463,0,0,0,0,0,105.16533,0,4279.824,96.4666946,480.6894688,0,0,0,0,0,0,6.58E-06,0,0,6.16E-04,0,0.954146693,14.46573428,76.4408771,6.041715332,20.10967131,0,16371.00547,0.007723268,0,0 +1910,0.765726395,0.945592087,0,0,3.767608107,0.042342327,1.0366888,0.24301505,0,0,0,0,0,105.14442,0,4278.7248,97.77187103,491.4713622,0,0,0,0,0,0,6.62E-06,0,0,6.20E-04,0,0.964867509,14.73060447,78.48124343,6.225241543,20.6023284,0,17123.07052,0.007723268,0,0 +1911,0.781014654,0.887403675,0,0,3.725917532,0.047217079,0.55672031,0.27037941,0,0,0,0,0,105.20214,0,4281.7592,98.42938116,482.3736484,0,0,0,0,0,0,6.66E-06,0,0,6.24E-04,0,0.976172007,14.67937454,76.73370569,6.205453711,20.00760743,0,17244.18549,0.007723268,0,0 +1912,0.819966191,0.85083987,0,0,3.709100468,0.055977137,1.3372385,0.31844894,0,0,0,0,0,105.23472,0,4283.4718,99.26614632,477.9889215,0,0,0,0,0,0,6.70E-06,0,0,6.29E-04,0,0.99242033,14.7136648,75.83160819,6.219463911,19.68089243,0,17989.19691,0.007723268,0,0 +1913,0.88953397,0.82034848,0,0,3.787939036,0.05934571,2.7874772,0.33694139,0,0,0,0,0,105.25437,0,4284.5046,100.6125584,488.2676035,0,0,0,0,0,0,6.74E-06,0,0,6.33E-04,0,1.011440097,14.92180765,77.5799616,6.45387962,20.00732869,0,19072.75319,0.007723268,0,0 +1914,0.811491369,0.809204505,0,0,3.764418792,0.064801984,4.5655912,0.36726542,0,0,0,0,0,105.19867,0,4281.5767,102.2840587,494.4978826,0,0,0,0,0,0,6.77E-06,0,0,6.36E-04,0,1.032129514,15.24149746,79.77807343,6.499176733,20.59248109,0,17594.43406,0.007723268,0,0 +1915,0.802991659,0.797401958,0,0,3.722337783,0.084000629,6.2098372,0.47153519,0,0,0,0,0,105.2716,0,4285.4105,103.0579197,484.2476849,0,0,0,0,0,0,6.81E-06,0,0,6.41E-04,0,1.054619583,15.23213103,78.35040062,6.482772073,20.06142458,0,17573.11604,0.007723268,0,0 +1916,0.86533079,0.799710226,0,0,3.744207069,0.10465075,5.9968917,0.58467971,0,0,0,0,0,105.29863,0,4286.831,104.0889435,482.954266,0,0,0,0,0,0,6.85E-06,0,0,6.46E-04,0,1.077791382,15.34284718,78.27985155,6.601680858,19.90829861,0,19065.48428,0.007723268,0,0 +1917,0.896621585,0.802745574,0,0,3.826396856,0.11034348,5.1585271,0.61870744,0,0,0,0,0,105.37275,0,4290.7275,105.4397415,492.9600448,0,0,0,0,0,0,6.89E-06,0,0,6.51E-04,0,1.100255613,15.500365,80.45481807,7.003710361,20.17756104,0,19906.99893,0.007723268,0,0 +1918,0.887395559,0.80603585,0,0,3.83059738,0.10461425,4.2721672,0.58914082,0,0,0,0,0,105.37311,0,4290.7462,106.7459316,496.2420731,0,0,0,0,0,0,6.93E-06,0,0,6.55E-04,0,1.121226709,15.70439103,81.61294814,7.118191256,20.36895158,0,19743.24497,0.007723268,0,0 +1919,0.780860402,0.811159148,0,0,3.722641135,0.10155164,3.196035,0.57214502,0,0,0,0,0,105.33647,0,4288.8202,108.095107,490.9794171,0,0,0,0,0,0,6.96E-06,0,0,6.59E-04,0,1.140233478,15.91565271,81.67724386,6.926922673,20.36863821,0,16994.78687,0.007723268,0,0 +1920,0.903060101,0.813518455,0,0,3.813010121,0.071874804,4.0059497,0.41169313,0,0,0,0,0,105.40157,0,4292.2427,109.1336385,498.8745999,0,0,0,0,0,0,7.01E-06,0,0,6.64E-04,0,1.157633765,16.03665614,82.96992111,7.318815146,20.4023951,0,18802.69892,0.007723268,0,0 +1921,0.793835864,0.861299333,0,0,3.661222702,0.05599481,6.3575755,0.32444592,0,0,0,0,0,105.42979,0,4293.7261,109.809348,486.6136242,0,0,0,0,0,0,7.05E-06,0,0,6.68E-04,0,1.173417685,16.0101613,81.18725519,7.146950074,19.84610877,0,16049.70593,0.007723268,0,0 +1922,0.843896663,0.853369204,0,0,3.658333723,0.10093674,7.5196689,0.56921203,0,0,0,0,0,105.47367,0,4296.0327,110.4858104,484.8273418,0,0,0,0,0,0,7.09E-06,0,0,6.73E-04,0,1.188779372,16.07300912,80.53069431,7.252038815,19.4742784,0,16950.896,0.007723268,0,0 +1923,0.959559001,0.86148441,0,0,3.88124621,0.13753371,8.1995609,0.77479139,0,0,0,0,0,105.54539,0,4299.8026,112.2535641,514.2343951,0,0,0,0,0,0,7.13E-06,0,0,6.78E-04,0,1.205120978,16.4693053,86.27583424,8.013836332,20.41782521,0,19723.67202,0.007723268,0,0 +1924,0.970359441,0.867663331,0,0,3.774809016,0.14595489,10.064032,0.82730698,0,0,0,0,0,105.55899,0,4300.5175,112.633506,499.0974144,0,0,0,0,0,0,7.17E-06,0,0,6.82E-04,0,1.222219042,16.41564777,83.21123114,7.790296572,19.77882376,0,19521.89407,0.007723268,0,0 +1925,0.983699121,0.870847171,0,0,3.790606982,0.15281139,9.887985,0.86947278,0,0,0,0,0,105.60265,0,4302.8128,113.6704269,502.6957688,0,0,0,0,0,0,7.21E-06,0,0,6.87E-04,0,1.237791101,16.84168156,84.06174423,7.983263812,19.75345484,0,19738.88984,0.007723268,0,0 +1926,0.971193664,0.875288161,0,0,3.724383638,0.16877181,10.020584,0.96266008,0,0,0,0,0,105.65209,0,4305.4116,114.5456303,499.0418204,0,0,0,0,0,0,7.25E-06,0,0,6.92E-04,0,1.252612106,17.14732508,84.16877083,8.057166102,19.57302011,0,19808.91323,0.007723268,0,0 +1927,1.071982298,0.914815243,0,0,3.850357382,0.19366311,13.691728,1.1076116,0,0,0,0,0,105.65063,0,4305.3352,115.74748,515.0910884,0,0,0,0,0,0,7.29E-06,0.004945027,0,6.96E-04,0,1.266765284,17.43232174,86.52753525,8.499773807,19.87550986,0,21139.78229,0.007723268,0,0 +1928,1.076174298,0.918261907,0,0,3.828134932,0.2132805,16.914307,1.2252077,0.020814729,0,0,0,0,105.59392,0,4302.3537,116.7958666,515.8400889,0,0,0,0,0,0,7.32E-06,0.030139896,0,6.99E-04,0,1.279785085,17.62700285,87.11586337,8.569023695,19.91593076,0,21065.04746,0.007723269,0,0 +1929,1.156951387,0.945536477,0,0,3.890215994,0.20802541,19.38339,1.2037865,0.33502494,0,0,0,0,105.60372,0,4297.9849,118.0199977,527.0535755,0,0,0,0,0,0,7.35E-06,0.003329301,0,7.02E-04,0,1.290827582,17.86727278,89.37670247,8.894481948,20.27497394,0,22402.21952,0.007723266,0,0 +1930,1.072886478,1.022800884,0,0,3.907622806,0.17035764,20.571834,0.99750344,1.1701026,0,0,0,0,105.91829,0,4287.8382,119.6701788,535.0349028,0,0,0,0,0,0,7.36E-06,-0.026051043,0,7.03E-04,0,1.300370355,18.10997615,91.59573863,8.841770878,20.95238859,0,20792.33986,0.007723273,0,0 +1931,0.968671726,1.033130291,0,0,3.699193086,0.11326202,21.232329,0.6766021,1.6600329,0,0,0,0,106.6887,0,4282.6938,119.9075078,504.8981345,0,0,0,0,0,0,7.38E-06,-0.003829208,0,7.06E-04,0,1.307318192,17.9582942,86.48531867,8.206316153,19.78298346,0,18348.146,0.007723259,0,0 +1932,0.880274393,0.934985061,0,0,3.701120519,0.085847633,23.837144,0.51911084,1.6167368,0,0,0,0,107.41813,0,4276.7559,121.4219873,510.1823315,0,0,0.005764349,0,0,0,7.40E-06,7.43E-04,0,7.08E-04,0,1.314106352,18.10001304,87.90725373,8.142484302,20.16181555,0,16151.1052,0.007723289,0,0 +1933,0.923452608,0.931801343,0,0,3.673991696,0.1016274,28.120028,0.61081444,1.6336582,0,0,0,0,108.09758,0,4271.2585,122.3437659,508.1160121,0,0,0.14482802,0,0,0,7.43E-06,8.08E-04,0,7.11E-04,0,1.319777787,18.14058312,87.73926442,8.102332977,20.01961331,0,16995.04081,0.007723222,0,0 +1934,1.000687974,0.920029755,0,0,3.817622407,0.15202423,34.519287,0.91252255,1.6505883,0,0,0,0,108.91202,0,4272.3774,123.9532999,528.033166,0,0,0.60639434,0,0,0,7.47E-06,8.78E-04,0,7.15E-04,0,1.326062979,18.32411359,91.49703968,8.603675585,20.70261784,0,18679.91277,0.007723374,0,0 +1935,1.050596869,0.918684315,0,0,3.826763235,0.22028466,40.132859,1.3303298,1.6675173,0,0,0,0,109.70014,0,4272.1486,124.8946044,529.4409406,0,0,0.97427321,0,0,0,7.50E-06,9.54E-04,0,7.19E-04,0,1.33245233,18.31731965,91.90214074,8.779424673,20.54319704,0,20077.94332,0.007723023,0,0 +1936,1.150366722,0.927069389,0,0,3.972008023,0.28820401,42.33712,1.7570203,1.6844464,0,0,0,0,110.56758,0,4275.9063,126.4647048,550.0398549,0,0,1.0455299,0,0,0,7.55E-06,0.001037276,0,7.24E-04,0,1.338689989,18.65286964,95.83484543,9.362043925,21.16418654,0,21597.57179,0.007723846,0,0 +1937,1.231103105,0.904516492,0,0,3.977215074,0.34372195,44.188471,2.1186454,1.7013755,0.006390022,0,0,0,111.3625,0,4275.9946,127.1823371,550.6109419,0,0,1.1131878,0,0,0,7.58E-06,0.001127477,0,7.28E-04,0,1.346525353,18.735883,95.84567433,9.575630542,20.85060471,0,23231.71203,0.00772185,0,0 +1938,1.161421971,0.907321542,0,0,3.879546431,0.39883954,49.06474,2.4891541,1.7183047,0.1328808,0,0,0,112.0603,0,4271.2734,127.905393,535.4268485,0,0,1.185033,0,0,0,7.61E-06,0.001225424,0,7.31E-04,0,1.355126677,18.72062801,93.23706062,9.133612085,20.283818,0,21542.97587,0.007728553,0,0 +1939,1.232613704,0.905880028,0,0,4.010820601,0.43390074,56.683054,2.745053,1.7352338,0.68779311,0,0,0,112.8293,0,4270.1197,129.5013568,554.5379171,0,0,1.2571398,0,0,0,7.64E-06,0.001332062,0,7.35E-04,0,1.366829172,18.98792969,97.34535423,9.632984019,21.02085333,0,23010.26881,0.11813875,0,0 +1940,1.332494478,0.893463629,0,0,4.026253626,0.50172554,67.980741,3.2190952,1.7521629,1.4928916,0,0,0,113.75015,0,4276.3916,130.1349943,550.4654056,0,0,1.3304594,0,0,0,7.69E-06,0.001448183,0,7.41E-04,0,1.379589207,18.93380648,96.49612887,9.961368881,20.56627575,0,25159.07412,0.21814961,0,0 +1941,1.35733239,0.876081403,0,0,4.050294267,0.64957282,81.740279,4.2240743,1.769092,2.2339929,0,0,0,114.54353,0,4282.9257,132.2180939,552.9500651,0,0,1.4028748,0,0,0,7.73E-06,0.00157415,0,7.45E-04,0,1.427063176,19.03403078,97.09407345,10.19371174,20.46203137,0,26113.9497,0.1951164,0,0 +1942,1.359049319,0.897314522,0,0,4.114193284,0.84353078,95.021136,5.585489,1.7860212,2.976471,0,0,0.19841173,115.26991,0,4303.7401,134.7060241,560.1841861,0,0,1.4745564,0,0,0,7.76E-06,0.001710955,0,7.48E-04,0,1.529818545,19.21018323,98.65719695,10.34548378,21.01419377,0,26702.04279,0.16898031,0,0 +1943,1.402945825,0.892124843,0,0,4.114085782,0.80476688,89.521615,5.4576739,1.8029502,3.7199961,0,0.056451758,4.3053247,116.04761,0,4331.4951,136.6296869,561.0185503,0,0,1.5467027,0,0,0,7.79E-06,0.001859737,0,7.52E-04,0,1.677793207,19.22648995,99.48634644,10.64406286,20.76469901,0,27110.34859,0.14684461,0,0 +1944,1.387913119,0.898318952,0,0,4.111269896,0.41764093,72.694302,2.9606569,1.8198794,4.4638059,0,0.97266311,16.545617,116.85265,0,4354.745,138.9310562,569.4275578,0,0,1.6191675,0,0,0,7.83E-06,0.002021507,0,7.56E-04,0,1.853743997,19.45467137,102.0083052,10.97214997,20.91812228,0,26578.15151,0.11439264,0,0 +1945,1.180916482,0.898822172,0,0,3.970406317,0.20111842,68.369262,1.5076942,1.8368084,5.2077233,0,3.4593405,24.846154,117.6118,0,4376.5008,141.022964,562.3881403,0,0,1.69101,0,0,0,7.86E-06,0.002197258,0,7.60E-04,0,2.046836624,19.53099873,102.3868629,10.81105837,20.63041519,0,23414.92286,0.080798572,0,0 +1946,1.294211066,0.982947007,0,0,3.971696435,0.27970458,74.717234,2.0726649,1.8537378,5.9856104,0,4.9404679,24.839378,118.39896,0,4399.6117,142.7064022,555.289963,0,0,1.7631908,0,0,0,7.89E-06,0.002388349,0,7.64E-04,0,2.242235208,19.68948842,102.6581835,10.80993836,20.3059335,0,23137.29124,0.064300427,0,0 +1947,1.449894938,1.013635265,0,0,4.004289599,0.34838359,84.081746,2.6369074,1.8706665,6.4443541,0,4.8390374,24.982371,119.2973,0,4428.0553,144.7944965,563.4037754,0,0,1.8372679,0,0,0,7.94E-06,0.002596315,0,7.69E-04,0,2.428654505,19.91609513,104.1573676,11.48967842,20.19099947,0.003372839,25978.58013,0.046731228,0,0 +1948,1.541746758,1.021788966,0,0,4.123520873,0.33316898,90.670686,2.6243892,1.8875961,6.6649072,0,4.8563661,24.987103,120.08364,0,4451.0369,147.2720295,586.53608,0,0,1.966277,0,0,0,7.98E-06,0.003327672,0,7.73E-04,0,2.589644896,20.34906056,108.0964174,12.19576499,20.65035706,0.023611977,27162.31675,0.020169381,0,0 +1949,1.51503408,1.032229109,0,0,4.095746551,0.31424196,91.962416,2.5926444,1.8955033,7.1640705,0,5.561141,27.295461,120.70601,0,4466.7618,150.2157149,588.4410387,0,0,1.6426278,0,0,0,7.99E-06,0.02463759,0,7.75E-04,0,2.714013981,20.9091959,109.1544258,11.86397123,21.08117938,0.063741035,26198.85137,-0.001578436,0,0 +1950,1.695680787,1.04543439,0,0,4.331260791,0.32876887,78.580053,2.8441101,1.9897329,7.4706053,0,8.1460574,32.673745,121.62274,0,4499.2896,152.2010084,619.9439709,0,0,1.0661465,0,0,0,8.05E-06,0.10531435,0,7.81E-04,0,2.786823806,21.60140457,113.8598472,13.13214183,22.10581056,0.16053368,29148.54682,2.43E-04,0,0 +1951,1.817356704,1.263788462,0,0,4.212336067,0.33222262,70.47669,3.0430784,2.1685287,7.5542237,0,12.050138,36.815853,122.51807,0.014330518,4529.1876,155.2719352,593.1994506,0,0,1.0527789,0,0,0,8.09E-06,0.2343219,0,7.85E-04,0,2.830792646,21.71096706,109.0909544,13.15219389,20.39818818,0.23983988,30378.93497,0.001166432,0,0 +1952,1.85187593,1.291508658,0,0,4.278249967,0.32854487,76.508762,3.2228257,2.4120426,7.6734014,0,16.078842,40.441283,123.26435,0.21725302,4558.7052,160.5733576,606.95634,0,0,1.4414744,0,0,0,8.10E-06,0.3628351,0,7.87E-04,0,2.873469224,22.39378605,112.6182109,13.48661504,20.95793435,0.24565292,30772.87938,-0.002030065,0,0 +1953,1.905887196,1.288662579,0,0,4.400134891,0.31999622,81.681224,3.3863087,2.8478934,7.7034458,0,20.201055,45.581432,124.06078,1.3575508,4600.7084,165.6818323,623.9750548,0,0,2.100408,0,0,0,8.12E-06,0.48047903,0,7.90E-04,0,2.918473221,23.08627653,116.7765378,14.05062035,21.60093971,0.24572915,31392.44296,-2.28E-04,0,0 +1954,1.955325831,1.342683244,0,0,4.475107773,0.29457384,86.86347,3.4048632,3.2763156,7.760213,0,25.212381,51.892411,124.75392,3.6198833,4629.2231,170.3710079,628.9096635,0,0,2.8888848,0,0,0,8.14E-06,0.59576061,0,7.91E-04,0,2.965305231,23.5182693,118.7896929,14.35262782,21.65473895,0.24580572,31601.64062,-0.004070821,0,0 +1955,2.138786817,1.387820683,0,0,4.585745112,0.26311875,91.980019,3.3346824,3.6788015,7.6370702,0,30.727319,59.871881,125.74327,6.4848679,4666.3367,174.7404471,641.3267253,0,0,3.5564777,0,0,0,8.18E-06,0.70910415,0,7.96E-04,0,3.016004168,23.78869162,122.5425815,15.35988489,21.61194057,0.24588273,34555.40272,0.001049355,0,0 +1956,2.291039468,1.446283643,0,0,4.844401489,0.22075982,97.008491,3.0796375,4.2759912,7.5430316,0,33.546756,66.950489,126.58168,9.1561662,4699.2729,180.6711175,673.806229,0,0,4.5322658,0,0,0,8.21E-06,0.82044371,0,8.00E-04,0,3.06769313,24.39548109,129.82302,16.40773077,22.72448276,0.24595899,37118.77109,0.006640162,0,0 +1957,2.384773,1.477494579,0,0,5.084522572,0.18587639,102.11597,2.8571248,4.9612019,7.3765313,0,32.871446,72.204141,127.41838,11.488509,4733.2024,186.0555677,695.9496131,0,0,5.9875108,0,0,0,8.25E-06,0.92977447,0,8.03E-04,0,3.122765936,25.10938271,135.5915206,17.20228851,23.82634945,0.24603635,38873.75431,0.004342369,0,0 +1958,2.467095469,1.528597347,0,0,5.060488043,0.17928487,107.206,2.9954591,5.6330503,6.9087313,0,34.746284,80.925329,128.42262,14.781202,4771.3965,188.3855399,661.2854858,0,0,7.120204,0,0,0,8.29E-06,1.0371306,0,8.08E-04,0,3.184188319,25.26871426,129.2085836,17.04310474,22.2466504,0.2461131,39341.99136,0.002605294,1.53E-05,1.55E-04 +1959,2.603672914,1.473668289,0,0,5.186762349,0.18081021,112.29185,3.2476716,6.3880226,6.8760458,0,43.506257,93.983467,129.47587,18.063698,4808.726,192.6867573,665.4367222,0,0,8.0253807,0,0,0,8.33E-06,1.1424694,0,8.12E-04,0,3.250322629,25.78456832,131.2104974,17.51526633,22.13695045,0.30755864,41319.47351,8.68E-04,1.22E-04,0.001246036 +1960,2.728446849,1.461519532,0,0,5.288213084,0.17259465,117.2597,3.3209398,7.3201718,7.2392631,0,56.281481,107.5417,130.53321,21.750437,4847.0424,197.2611005,668.565663,0,0,9.5885732,0,0,0,8.37E-06,1.2458107,0,8.17E-04,0,3.323928526,26.12794679,133.3368149,18.13798676,22.06866314,0.4304021,42970.73471,-8.68E-04,2.31E-04,0.002375087 +1961,2.75210185,1.531158202,0,0,5.280187775,0.16861102,121.58986,3.4304351,8.4287849,7.4514735,0.001861801,70.618557,123.80387,131.26152,27.278298,4864.0212,205.1383413,701.0053453,0,0,11.884386,0,0,0,8.37E-06,1.346892,0,8.17E-04,0,3.545375735,26.8897385,143.5652635,18.73899699,23.37357314,0.55328481,48370.7476,-0.002605324,2.49E-04,0.003546415 +1962,2.868392579,1.520724684,0,0,5.268371109,0.17112099,125.71015,3.6249821,9.6127678,7.5805279,0.045181371,86.214551,144.89716,132.4011,32.049021,4895.6486,207.2122992,678.8492234,0,0,14.500089,0,0,0,8.41E-06,1.4460951,0,8.21E-04,0,3.678783292,27.3913443,140.105892,19.33292939,22.55009464,0.61483924,49373.46267,-0.004342521,2.53E-04,0.004920676 +1963,3.036186161,1.527209311,0,0,5.437875743,0.18314033,128.88013,3.9881367,10.949721,7.9110854,0.24720738,101.83231,167.67883,132.99126,37.52532,4904.2354,216.1922656,741.3196016,0,0,17.280228,0,0,0,8.39E-06,1.5429261,0,8.19E-04,0,3.803776307,28.74464761,156.130954,20.52084737,24.60921093,0.55366285,50918.54792,-0.007869931,3.52E-04,0.005972759 +1964,3.193585727,1.518253087,0,0,5.259909465,0.20130699,129.76929,4.4326257,12.657214,8.4778946,0.46848862,116.30072,189.8766,134.07707,49.914046,4933.087,216.556163,689.11146,0,0,20.771971,0,0,0,8.44E-06,1.6379776,0,8.24E-04,0,3.945754292,28.60741633,146.4547756,21.25062666,22.37762398,0.49245891,52831.63767,-7.60E-04,0.001030371,0.033580017 +1965,3.342046615,1.549410355,0,0,5.270010253,0.2250418,129.69213,4.9089192,14.528257,9.0358315,0.58010695,130.83984,213.3919,135.19804,70.507935,4953.0596,222.6664157,709.3122963,0,0,25.0603,0,0,0,8.46E-06,1.7308461,0,8.27E-04,0,4.115195266,29.97215368,153.4053912,22.08301054,22.64997293,0.4926084,54063.80178,0.015948649,0.002140689,0.11324642 +1966,3.50172055,1.551765281,0,0,5.285174796,0.26721734,129.70542,5.6248074,16.547774,9.5008952,0.77191369,147.99606,240.15802,136.46754,94.258765,4976.4474,226.3106958,710.9414665,0,0,30.477075,0,0,0,8.51E-06,1.8217969,0,8.32E-04,0,4.311197356,31.55306755,156.4949809,22.8477914,22.43429714,0.61550021,55269.31676,0.069786165,0.003103097,0.20275693 +1967,3.625966014,1.595865386,0,0,5.390458849,0.32052973,129.68847,6.3547572,18.918172,9.9208119,1.0373,169.42177,269.58286,137.66763,116.32544,4995.4184,232.3331465,746.2098209,0,0,36.036945,1.25E-05,0,6.90E-05,8.54E-06,1.9105949,0,8.37E-04,0,4.481777635,33.16777605,164.7753162,24.19623738,23.58529354,0.7384486,54762.8971,0.24404072,0.003754249,0.26151045 +1968,3.834595266,1.546993091,0,0,5.370373092,0.40423022,129.73308,7.3324415,21.713594,10.295172,1.3673824,195.13757,299.71437,139.24379,133.08156,5029.5667,235.3354027,740.4824182,0,0.009237978,40.359034,8.80E-05,0,4.86E-04,8.63E-06,1.9976935,0,8.46E-04,0,4.618299686,34.38157284,165.0957088,25.41081254,22.82579691,0.67731523,56868.37887,0.44305972,0.005543179,0.29037411 +1969,4.061567727,1.543708902,0,0,5.404091613,0.5206411,129.76058,8.4831718,24.938178,10.638634,1.7120901,220.72612,327.55328,140.05867,146.61896,5026.2804,239.1848516,747.0297315,0,0.18322115,44.144508,9.37E-05,0,5.04E-04,0.009824818,2.0817369,0,8.45E-04,0,4.732615323,34.96181251,169.6815713,26.06506901,22.10048951,0.67751619,58467.8108,0.55613635,0.03648951,0.30862539 +1970,4.323514044,1.531929069,0,0,5.549708797,0.6581692,129.69302,9.5318801,28.576904,11.00827,1.8909658,245.38621,354.60102,141.52757,173.56366,5048.3132,244.4183955,781.0375523,0,0.60795801,49.037394,2.47E-05,0,1.09E-04,0.036330653,2.1644992,0,8.52E-04,0,4.714190308,37.46957853,179.6859547,27.82408407,22.78022432,0.80047128,61529.77979,0.64373178,0.11813403,0.34789664 +1971,4.510244869,1.405554242,0,0,5.703748992,0.82992065,129.60227,10.711494,32.729139,11.452529,2.1402118,276.44309,387.53989,143.1196,217.72405,5067.5026,249.2895331,796.2029425,0,0.8564576,55.790888,1.33E-05,0,4.26E-05,0.064586906,2.2451174,0,8.59E-04,0,4.663522046,38.13342516,183.5355579,28.61726398,23.19511601,0.86210262,61716.79563,0.78786166,0.2232129,0.40686343 +1972,4.706494312,1.326937135,0,0,5.971153375,1.0559029,129.65777,12.24311,37.465523,11.97792,2.5517628,314.22879,427.68026,144.52172,267.60333,5079.1924,257.2102054,868.4735708,0,0.87667663,61.456633,1.35E-05,0,4.30E-05,0.082580189,2.3233295,0,8.64E-04,0,4.93074212,39.56446297,196.6655247,30.23622151,25.52743454,0.86237286,63465.10424,1.0951867,0.31882408,0.4721474 +1973,4.975651786,1.318385656,0,0,5.895831576,1.330787,129.79157,14.085332,42.979262,12.585161,2.92937,338.0693,454.71123,146.54158,301.85553,5118.3195,260.294725,826.0293132,0,0.82240702,65.420113,1.38E-05,0,5.50E-05,0.090214925,2.4006492,0,8.77E-04,0,5.050826137,39.95714271,186.5259319,31.24009688,23.45564811,0.92401065,66317.71189,1.5930673,0.39726303,0.54390644 +1974,4.948149198,1.290549,0,0,5.971643938,1.4191691,129.76026,14.311146,49.247959,13.447442,3.5184015,340.6055,453.22872,147.80664,327.35544,5113.8208,261.8082771,824.6214022,0,0.76119143,71.666995,1.40E-05,0,0.052416219,0.087063163,2.474116,0,8.78E-04,0,5.034419125,40.69211664,183.6005251,31.07740605,23.59962462,1.0394718,65371.62667,2.1806547,0.67241083,0.65809554 +1975,4.9286224,1.303204964,0,0,5.998431374,1.4004084,129.65616,14.321042,57.565811,14.538442,4.2176868,337.71465,440.16522,148.91662,384.99818,5104.4298,263.0585486,816.9194859,0,0.80304672,79.153904,1.42E-05,0,0.19213674,0.072875586,2.545125,0,8.78E-04,0,5.206812767,41.4767259,177.5130673,30.76637271,23.12965379,1.1646458,64182.76882,2.8018363,1.2682709,0.8287437 +1976,5.194661022,1.320205358,0,0,6.237496532,1.5554771,129.63321,16.011714,57.24638,15.386466,4.743647,329.27602,426.10768,150.23158,475.43135,5104.2152,269.9482097,856.0634915,0,0.82394648,92.664426,1.44E-05,0,0.33759564,0.047412585,2.614347,0,8.80E-04,0,5.352361697,42.52135697,186.2474273,32.28663209,24.40571792,1.4235416,67153.40876,3.4107057,1.8435573,0.98712807 +1977,5.36442864,1.352097971,0,0,6.353178768,1.692355,129.63647,16.762577,55.875241,15.71703,5.1782548,306.11158,404.2283,152.04264,533.0325,5117.6518,274.0301524,868.4313097,0,0.93269902,109.06413,2.14E-06,0,0.42456315,0.022180513,3.5323931,0,8.87E-04,0,5.499463795,43.27485688,189.2255323,33.05929028,24.38724427,2.1583469,67777.19082,3.8826089,2.1420878,1.0852977 +1978,5.581802903,1.2993019,0,0,6.579044818,1.7691766,130.48849,16.898235,72.245349,15.529417,5.5214166,278.45958,383.9896,153.91731,529.79652,5132.0601,276.3333545,897.4051484,0,1.277913,112.78031,-6.25E-05,0,0.45249588,-0.059867027,4.661461,0,8.95E-04,0,5.625120896,44.24089207,192.9347955,34.2691933,25.01974419,2.8286901,68023.04188,4.2701212,2.1599238,1.1209157 +1979,5.73073214,1.252317648,0,0,6.677231649,1.9203395,128.37989,17.898313,94.634628,14.991238,6.1020639,271.13342,394.80033,155.58904,518.50501,5138.651,281.6000656,900.4664227,0,1.7595655,113.22088,-2.04E-06,0,0.42017076,-0.17766763,5.0937882,0,9.00E-04,0,5.807081799,45.13478108,196.0169029,35.01398718,25.21247986,2.8296177,69119.86371,4.6513697,2.0579417,1.1328091 +1980,5.650947967,1.244135794,0,0,6.618387125,1.9633226,125.08456,17.664267,120.23426,14.760861,7.2362595,276.09356,398.43779,157.04196,513.02719,5131.8984,283.3464702,890.5114952,0,2.0330453,118.29604,7.94E-05,0,0.35605477,-0.12485274,5.1732709,0,9.02E-04,8.17E-05,5.872959052,45.97852705,194.391242,34.76440147,25.23254566,2.8304823,68783.84557,5.1129913,2.1545661,1.1562096 +1981,5.539335981,1.252813549,0,0,6.57778223,1.7391266,126.52811,16.187192,128.45086,13.920115,8.6372447,271.00597,403.07178,158.51506,516.86109,5123.4643,279.7894207,875.7816094,0,1.96562,122.37567,1.71E-05,0,0.32601335,0.11779446,4.4274361,0,9.03E-04,6.97E-04,5.805407446,46.37436562,189.1686139,34.11541673,24.87329597,2.9541119,66688.82722,6.0090215,2.4863888,1.1742814 +1982,5.477249508,1.258145478,0,0,6.915258578,1.6205522,129.38621,15.97381,128.57689,13.885459,9.2748324,277.72577,391.79861,159.18065,532.93449,5083.3728,287.6693154,967.4292983,0,1.6573364,125.26367,-8.23E-05,0,0.33083911,0.22216908,3.5575865,0,8.94E-04,0.001578501,6.043062728,47.66689068,206.8844648,34.15609141,28.27220571,2.9550432,65532.30175,6.4693449,3.0131287,1.352411 +1983,5.483062193,1.433024176,0,0,6.625402214,1.8456854,130.75989,16.384525,150.74703,15.564841,9.057039,353.29433,385.70972,160.09109,547.19948,5047.3484,281.6176584,862.0214943,0,1.3378778,129.4055,-2.71E-05,0,0.33559498,0.09748991,3.8040369,0,8.87E-04,0.002017846,6.06583408,47.6454021,183.8358223,33.28512898,24.45951343,3.2014371,64552.41617,6.0034055,3.8198142,1.378774 +1984,5.619005091,1.461224853,0,0,6.815018955,1.954181,134.9934,14.927399,167.86607,17.177696,10.537606,352.61795,438.30954,162.15076,546.6524,5054.1956,285.0030452,889.7020107,0,1.2391705,137.14097,8.66E-05,0,0.48356263,0.027417786,4.8805395,0,8.93E-04,0.004307161,5.996375963,48.69349353,189.3335257,34.32486538,25.32627636,3.570683,65309.89915,6.3412338,4.7987259,1.1329507 +1985,5.678895003,1.499743779,0,0,6.922761989,1.930951,138.44665,13.863624,191.20489,18.042992,12.093107,321.80334,487.46531,164.43684,559.24581,5072.7864,285.6752697,906.9368199,0,1.4290266,148.48134,2.16E-04,0,0.56320674,0.085787554,5.2553933,0,9.02E-04,0.012966035,5.996554239,49.41563613,190.4568857,34.8615092,25.83243998,3.6945657,65474.08715,7.6862714,5.5359652,1.1864916 +1986,5.784334368,1.530113569,0,0,7.013703662,2.0447892,134.66824,14.595216,226.48099,17.343175,11.156209,363.19165,561.19711,166.53505,605.54478,5079.9439,290.8084488,914.5218093,0,2.1480617,163.26271,2.16E-04,6.84E-04,0.57273931,0.044305139,5.6896951,0,9.08E-04,0.028102657,6.123193923,50.21167874,195.6652235,35.24652923,25.91211685,3.9411958,65479.27148,8.6199267,5.6626388,1.453026 +1987,5.942054872,1.515689335,0,0,7.200139154,2.1868179,140.05915,15.122737,234.71551,15.986362,11.176584,377.17492,543.59326,168.70781,636.85035,5087.8651,295.0485147,952.0611492,0.001157823,3.2631248,177.25124,5.82E-05,0.004878587,0.79616882,-0.099665792,6.5386064,0,9.14E-04,0.044783508,6.350228642,51.33101366,203.5851701,36.43815818,27.25186717,4.3106697,66721.094,9.1692428,5.2412687,1.7364871 +1988,6.133362797,1.515094775,0,0,7.39663506,2.2384091,134.89421,15.295333,225.34631,14.052169,12.063592,324.40759,433.01446,171.54521,645.54402,5119.7697,298.6854951,950.4151874,0.34924766,5.2661192,185.3279,0.021115007,0.06849384,0.88192316,-0.073662439,6.6278139,0,9.28E-04,0.060567348,6.188309996,51.72677742,203.5322276,37.79778929,27.18506613,4.6802608,67287.4839,10.094657,4.7030971,1.770198 +1989,6.211121149,1.53212989,0,0,7.320233668,2.2075539,105.50252,15.212081,212.83728,10.119863,11.292045,246.46809,357.7641,174.22363,713.52261,5139.3872,302.1641744,930.8467755,0.72136249,10.730464,189.56819,0.31476996,0.67304705,0.82629641,0.054397397,6.6572182,0,0.006065534,0.076147787,6.264529715,52.06403696,200.3165052,38.13825088,26.33140677,5.0499664,67312.93275,10.904862,4.3864096,1.6702493 +1990,6.186811699,1.445096887,0,0,7.508271532,2.1076967,86.426532,14.407865,176.8456,7.0905085,10.591201,208.25652,333.97703,176.36773,658.40311,5137.248,305.2725547,940.5626313,1.5203264,17.768055,192.30881,0.96053501,1.7208698,0.69729352,0.18589003,6.6838429,0,0.02696988,0.091767095,6.277152283,52.52170068,203.021231,38.25721546,27.36536835,5.1743108,67094.07179,10.051338,4.2741531,1.7373255 +1991,6.190131152,1.63686011,0,0,8.011536269,1.982897,85.142226,12.924815,120.64491,6.9542228,10.775591,159.81289,286.27307,177.30503,474.47964,5089.9323,318.7311921,1129.983883,6.9394223,22.06288,185.52075,1.727734,2.7251313,0.70613627,0.24819351,7.0572566,0,0.058141591,0.10715402,6.344945592,54.26130892,244.4286341,39.69249193,34.39493833,5.29866,66472.31502,9.6580528,4.1585749,1.6735462 +1992,6.145912973,1.683057085,0,0,7.364888993,1.9500444,85.437279,11.907588,74.361852,5.3089984,10.120439,106.91739,227.43518,179.3441,361.04368,5056.1355,299.4017955,913.3754186,22.26499,24.233416,194.061,2.4767485,4.0250116,1.0018637,0.18194194,7.9102615,0,0.088755914,0.12273589,6.358476439,52.37759099,198.238473,38.71717596,26.64897689,5.4230636,64223.92565,10.784362,3.8127392,1.4631107 +1993,6.193394815,1.54672743,0,0,7.531122847,1.9984803,84.458339,11.381334,50.567396,3.463778,8.6771649,84.3251,231.9618,179.76429,256.33383,5078.4684,299.4425141,941.8816353,34.33223,22.551362,208.33854,3.0949997,11.967198,1.5166355,0.157163,8.3534838,0,0.1188094,0.13825367,6.310752017,52.78275226,203.7757832,39.74372709,28.11499626,5.424762,63195.55052,11.612337,3.3180441,1.2514505 +1994,6.240067755,1.503716685,0,0,7.895732734,2.1430557,86.05046,11.006658,37.565451,4.6095776,8.163643,85.893495,238.58315,178.03958,159.08791,5003.2837,310.2518368,1060.282744,45.287421,24.423112,237.88968,3.5515518,24.558229,2.3253155,0.20390529,8.737968,0,0.14808425,0.15358509,6.441827,54.21042307,231.0503543,40.27137016,33.14335063,5.5491826,61820.50124,11.303115,2.9604627,1.1962062 +1995,6.377386454,1.486080505,0,0,7.813189501,2.3880707,80.480245,10.682998,23.473127,5.7076242,7.6747577,86.264975,210.72453,180.13151,95.783763,5016.3948,305.4095889,955.0363062,51.095458,27.59918,230.3453,3.8771223,36.211193,3.4395305,0.29614801,9.315257,0,0.17780027,0.16982122,6.504076136,53.41671788,206.4742485,40.45040793,29.71540754,5.6736625,60635.50707,11.011358,2.8923304,1.0842597 +1996,6.511379279,1.470193985,0,0,7.686339551,2.6638414,75.256035,10.505743,13.005309,4.6522227,5.5242189,85.278741,170.78176,183.444,59.514335,5297.7083,307.2912075,930.0218807,53.568363,26.00128,224.86947,4.0579149,48.538296,4.5014521,0.39044285,9.7707047,0,0.20547879,0.23841137,6.542220103,53.42127729,200.8724208,40.45019229,28.71419152,5.5527008,59650.01603,10.510994,2.8654227,0.84755661 +1997,6.574573879,2.18331399,0,0,8.269788743,2.8728437,75.489912,10.417958,10.398164,3.7691062,3.4559389,86.341446,160.63531,180.149,29.550907,5288.9251,331.2889198,1204.992305,55.763481,29.370536,240.5221,4.6266327,58.758537,5.5717023,0.427562,9.7952259,4.96E-05,0.25820595,0.31501343,6.740456045,56.11803189,264.6751503,41.89315592,38.34138232,5.7834259,59868.27682,9.8242768,2.8566852,0.76826308 +1998,6.590459871,1.541245282,0,0,8.412226876,2.9899069,72.916263,10.335348,12.992477,3.9615346,2.9318362,86.348141,156.67666,176.1082,23.412636,5175.5355,315.3326212,1085.430599,55.956781,28.471196,234.46613,6.9049469,70.049792,6.8917397,0.54029666,10.02529,3.58E-04,0.60512272,0.38665542,6.446521521,56.58934432,232.3180182,42.33468434,37.8122783,5.6031107,58604.36759,10.323837,2.701239,0.76943857 +1999,6.661329053,1.303430472,0,0,7.698162125,2.9607505,72.96355,10.216505,14.054175,3.9749853,3.1538842,82.703538,140.42544,168.37661,18.420173,5112.4264,309.4083709,940.700678,58.338707,25.741051,252.31636,8.6848445,91.978363,7.9486502,0.7424207,10.07373,0.003108151,1.0699013,0.49435229,6.281150807,54.7693723,205.1118782,40.94720104,30.44917133,5.1676463,55523.54474,10.262658,2.1509855,0.7706312 +2000,6.893167303,1.201338049,0,0,7.457347232,2.8153943,72.651408,9.9231457,9.4043884,3.9867142,2.3476518,76.330076,122.76605,165.25876,19.471227,5074.2696,310.1868098,886.5647302,56.341686,25.730152,263.60627,10.640667,99.657424,8.5987563,0.86319988,9.2978389,0.034006926,1.411492,0.57423278,6.112229814,54.50959652,195.3241582,41.26362178,27.9819784,5.2735332,55661.00151,9.4801348,1.9694412,0.77151922 +2001,6.957086928,0.961802096,0,0,7.591758769,3.0480682,70.656969,10.593275,5.9590471,3.2771364,1.1600545,68.271466,111.64066,165.599,19.806901,5094.2258,312.8963787,881.6703956,56.368781,24.490463,261.60586,11.075295,96.243251,9.8521252,0.94275566,8.9840003,0.80619906,1.6540309,0.63867332,6.188009183,54.70989639,196.1877828,41.37717554,27.87799844,5.3282102,56049.16643,8.8337936,2.3248261,0.74608572 +2002,7.097947295,1.070652511,0,0,8.046474187,3.4534372,70.456674,11.982167,3.1513602,2.420559,0.95011524,63.484809,101.90454,161.14055,12.302716,5096.5932,322.2788312,970.7244172,50.843174,25.156097,270.32175,12.214474,102.73275,11.617585,1.2107813,9.7208997,2.9170651,2.8037817,0.73327062,6.359556248,57.07665954,218.4604141,41.89878327,33.80824329,5.4976481,55687.52236,8.3685909,2.2797577,0.67660085 +2003,7.424688348,0.901041903,0,0,8.241697598,3.16329,69.839024,12.579882,5.7693016,1.7336337,0.74505988,62.277955,97.844828,158.92828,10.122917,5113.7538,328.1242242,944.7470786,44.441172,25.070909,287.30923,15.640539,117.40605,13.114832,1.560512,11.005369,5.226518,4.7856897,0.85366012,6.428305305,57.69037488,214.4033914,42.68216556,34.36218135,5.5417194,57641.7237,8.0831154,2.0262772,0.60195554 +2004,7.812644316,1.038213168,0,0,8.542465507,2.2029533,66.998563,12.194883,9.216749,1.4729969,0.75667708,60.966802,87.654103,156.21655,9.7469995,5141.4447,338.9417722,945.5469501,49.135801,28.554887,307.57676,15.758879,125.65071,13.097501,2.0510461,12.712613,6.6512131,5.4873038,0.97410928,6.590470047,58.11358477,216.6872834,44.5568559,32.33033041,5.6480085,60340.85189,7.5267646,2.1192661,0.55294607 +2005,8.093491316,1.025657164,0,0,8.840128386,1.9480504,63.195607,11.060838,4.6297025,1.8139658,0.58070615,60.331179,71.956593,154.12291,7.5405195,5209.9819,346.3955546,950.5924444,53.955471,33.447493,329.52471,16.143675,126.49199,12.434284,2.365528,14.626529,7.0791974,6.3606922,1.0845927,6.693579484,58.88341048,218.7880648,45.62238086,32.72399071,6.2799143,62587.82672,6.9433284,1.8947828,0.46971744 +2006,8.35813441,1.092642828,0,0,8.92564815,2.045423,60.048081,10.21735,0.6450641,1.7510311,0.58710647,63.037203,65.575271,152.41471,9.3190485,5272.2746,356.4696896,986.1510089,51.911598,36.489809,346.30497,19.891066,133.41048,14.118518,2.3531588,12.639849,6.8754044,8.3862482,1.1852524,6.875606953,60.37974253,229.8954395,46.63913374,34.3551466,6.9409178,63046.34515,6.3118449,1.5902358,0.43579597 +2007,8.681148087,0.966211967,0,0,9.284494092,1.7666158,57.257154,9.3272415,4.5089203,1.5545493,0.78280059,64.737513,61.623755,147.28895,9.6981304,5250.6823,355.0225755,945.8695944,49.953532,37.109679,357.26506,26.595246,127.25708,16.399738,2.4154053,9.3262891,6.6980995,8.4029745,1.2649376,6.596141361,60.96582609,219.7058707,48.13085999,33.27729799,6.9754073,62641.3592,5.7707437,1.7021554,0.59162888 +2008,8.733139806,0.668337987,0,0,9.091850914,1.746034,56.837697,9.0353429,8.3395339,1.9164483,0.45696793,63.060877,57.108479,144.47281,6.337645,5191.6855,360.4917105,912.5104843,54.881457,33.091627,362.72449,30.815622,138.28669,17.544095,2.6196596,8.8123411,7.076053,10.669375,1.3164863,6.638276368,61.31644175,214.695495,48.0350761,31.61901151,6.8835341,61275.77058,5.5737514,1.6171325,0.63840472 +2009,8.584990107,0.754863283,0,0,9.109514002,1.7995507,55.355253,9.6854874,5.7877004,1.6755174,0.3835494,60.065148,54.788238,144.24254,3.7694324,5145.2658,364.2003634,917.7292309,61.506343,32.081369,366.5558,33.926872,160.10848,21.142804,2.9666725,9.9336003,7.8522494,16.223306,1.4335012,6.712782947,61.3779593,218.7581143,46.48309573,31.77247637,7.159861,58721.16171,5.2570896,1.7272846,0.47723148 +2010,8.975543684,0.885110055,0,0,9.665129376,1.7742176,56.090865,10.48947,4.4070317,1.4644148,0.65896445,58.86009,52.271203,142.6745,2.4614781,5179.9719,370.8962528,953.2286303,65.209531,29.851794,361.74691,35.069515,165.044,20.460881,3.1827017,11.247607,8.7778712,15.914528,1.3375544,6.708375368,62.44447212,224.6021121,47.31829704,34.61053251,7.2759031,58249.45527,4.8975548,1.8511656,0.39655186 +2011,9.25596626,0.91365454,0,0,9.478876566,1.8467555,57.565927,11.056837,4.6237938,2.0468287,0.85601742,62.415615,52.120722,140.42156,3.0036158,5252.9333,372.6576832,906.7673675,67.690592,28.645628,366.94427,43.330418,190.47655,22.158614,3.410604,12.498165,9.4654578,20.415233,1.1291345,6.648935415,62.39874927,218.628754,48.49222156,32.51825927,7.4656928,58834.52202,4.3361773,2.096153,0.39105944 +2012,9.386649745,0.970689078,0,0,9.705285171,1.794986,59.464919,9.6609456,5.4529267,2.0520518,0.7168607,70.235225,53.35878,136.71475,3.0096674,5232.3317,380.8097666,949.6022184,63.311547,25.468261,356.29002,45.81505,205.00564,21.423,3.2771162,12.591587,9.054248,24.0671,0.98551995,6.742796632,63.84845417,229.1069362,48.17674509,35.82690196,7.7062836,57925.01408,3.8379813,1.7328717,0.41594871 +2013,9.659396496,0.91865757,0,0,9.560553735,1.6324652,62.512861,8.3027436,6.5167934,1.9408617,0.61330322,75.740842,54.819887,133.39273,1.8384424,5231.2321,381.5943928,901.2387566,59.817791,19.467118,342.89828,38.8888,202.01825,23.8069,2.9986006,11.604213,9.7859,21.452891,0.87225171,6.847910646,63.65097665,219.3811793,47.50620674,33.24556583,7.686158,57413.51787,3.5745493,0.96258078,0.44442215 +2014,9.719224641,1.095764818,0,0,9.744379658,1.6517,53.5475,9.8735,2.8024,1.6696,1.114899,54.9365,28.9612,133.6791,1.2625,5358.4982,387.8735392,964.0476182,59.82,22.47,358.8813,57.1243,200.0249,25.2487,3.5393,12.991,10.1025,30.4858,1.1516,6.916164551,65.03685366,233.525518,47.38523786,36.14582139,7.8784,57093.26142,3.481,1.2299,0.3854 +2015,9.724603237,0.959883081,0,0,9.727423577,1.57,47.5476,10.8699,0.8742,1.6696,1.6714,43.5734,14.6096,133.823,0,5404.8069,388.0727957,934.3498847,59.82,22.47,358.8813,78.7906,201.9534,32.381,3.6633,14.4857,11.7285,38.5792,1.1516,6.937624392,65.27970313,227.2448193,47.34877178,34.74602423,8.02,50464.18814,3.2933,1.3378,0.3481 +2016,10.0137416,0.979403185,0,0,9.827517522,1.65966,45.01716,11.2461766,0.78156,1.515231454,1.61422146,41.88082,12.88774,135.46402,0,5443.89094,394.1490789,941.1198963,60.8428786,21.9901556,351.625206,93.919698,208.27624,37.15426,3.92278474,12.0596,13.1617472,32.11786,1.15000362,7.048999349,65.97180535,229.2001635,47.99024446,34.96487173,8.09776,50246.94887,3.07158,1.29166,0.33428 +2017,10.30287997,0.998923289,0,0,9.927611468,1.74932,42.48672,11.6224532,0.68892,1.360862908,1.55704292,40.18824,11.16588,137.10504,0,5482.97498,400.2253622,947.8899079,61.8657572,21.5103112,344.369112,109.048796,214.59908,41.92752,4.18226948,9.6335,14.5949944,25.65652,1.14840724,7.160374305,66.66390756,231.1555076,48.63171714,35.18371923,8.17552,50029.70959,2.84986,1.24552,0.32046 +2018,10.59201833,1.018443393,0,0,10.02770541,1.83898,39.95628,11.9987298,0.59628,1.206494362,1.49986438,38.49566,9.44402,138.74606,0,5522.05902,406.3016455,954.6599195,62.8886358,21.0304668,337.113018,124.177894,220.92192,46.70078,4.44175422,7.2074,16.0282416,19.19518,1.14681086,7.271749261,67.35600977,233.1108518,49.27318982,35.40256673,8.25328,49812.47031,2.62814,1.19938,0.30664 +2019,10.8811567,1.037963497,0,0,10.12779936,1.92864,37.42584,12.3750064,0.50364,1.052125816,1.44268584,36.80308,7.72216,140.38708,0,5561.14306,412.3779287,961.4299311,63.9115144,20.5506224,329.856924,139.306992,227.24476,51.47404,4.70123896,4.7813,17.4614888,12.73384,1.14521448,7.383124218,68.04811198,235.0661959,49.91466249,35.62141423,8.33104,49595.23103,2.40642,1.15324,0.29282 +2020,11.17029506,1.057483601,0,0,10.2278933,2.0183,34.8954,12.751283,0.411,0.89775727,1.3855073,35.1105,6.0003,142.0281,0,5600.2271,418.454212,968.1999428,64.934393,20.070778,322.60083,154.43609,233.5676,56.2473,4.9607237,2.3552,18.894736,6.2725,1.1436181,7.494499174,68.7402142,237.0215401,50.55613517,35.84026173,8.4088,49377.99175,2.1847,1.1071,0.279 +2021,11.39942587,1.047739858,0,0,10.27385939,1.95221,33.28538,12.5088952,0.37899,0.833926213,1.342148655,33.87909,5.50149,140.81847,0,5575.05016,423.7418701,969.9193313,63.8401921,19.2265454,304.67177,160.228367,230.11956,58.23306,4.97197436,2.17242,19.5283976,5.78571,1.101461536,7.591045145,69.30189134,237.9864507,50.66649463,36.00451055,8.43464,49409.01001,2.06237,1.07222,0.26903 +2022,11.62855668,1.037996115,0,0,10.31982547,1.88612,31.67536,12.2665074,0.34698,0.770095156,1.29879001,32.64768,5.00268,139.60884,0,5549.87322,429.0295283,971.6387198,62.7459912,18.3823128,286.74271,166.020644,226.67152,60.21882,4.98322502,1.98964,20.1620592,5.29892,1.059304972,7.687591116,69.86356849,238.9513613,50.77685408,36.16875937,8.46048,49440.02828,1.94004,1.03734,0.25906 +2023,11.85768748,1.028252372,0,0,10.36579156,1.82003,30.06534,12.0241196,0.31497,0.706264099,1.255431365,31.41627,4.50387,138.39921,0,5524.69628,434.3171864,973.3581083,61.6517903,17.5380802,268.81365,171.812921,223.22348,62.20458,4.99447568,1.80686,20.7957208,4.81213,1.017148408,7.784137086,70.42524563,239.9162719,50.88721354,36.33300819,8.48632,49471.04655,1.81771,1.00246,0.24909 +2024,12.08681829,1.018508629,0,0,10.41175765,1.75394,28.45532,11.7817318,0.28296,0.642433042,1.21207272,30.18486,4.00506,137.18958,0,5499.51934,439.6048446,975.0774968,60.5575894,16.6938476,250.88459,177.605198,219.77544,64.19034,5.00572634,1.62408,21.4293824,4.32534,0.974991844,7.880683057,70.98692278,240.8811825,50.997573,36.497257,8.51216,49502.06482,1.69538,0.96758,0.23912 +2025,12.31594909,1.008764886,0,0,10.45772373,1.68785,26.8453,11.539344,0.25095,0.578601985,1.168714075,28.95345,3.50625,135.97995,0,5474.3424,444.8925027,976.7968853,59.4633885,15.849615,232.95553,183.397475,216.3274,66.1761,5.016977,1.4413,22.063044,3.83855,0.93283528,7.977229028,71.54859993,241.8460931,51.10793246,36.66150582,8.538,49533.08309,1.57305,0.9327,0.22915 +2026,12.5450799,0.999021143,0,0,10.50368982,1.62176,25.23528,11.2969562,0.21894,0.514770928,1.12535543,27.72204,3.00744,134.77032,0,5449.16546,450.1801609,978.5162738,58.3691876,15.0053824,215.02647,189.189752,212.87936,68.16186,5.02822766,1.25852,22.6967056,3.35176,0.890678716,8.073774999,72.11027707,242.8110036,51.21829191,36.82575464,8.56384,49564.10135,1.45072,0.89782,0.21918 +2027,12.77421071,0.9892774,0,0,10.5496559,1.55567,23.62526,11.0545684,0.18693,0.450939871,1.081996785,26.49063,2.50863,133.56069,0,5423.98852,455.467819,980.2356623,57.2749867,14.1611498,197.09741,194.982029,209.43132,70.14762,5.03947832,1.07574,23.3303672,2.86497,0.848522152,8.17032097,72.67195422,243.7759142,51.32865137,36.99000346,8.58968,49595.11962,1.32839,0.86294,0.20921 +2028,13.00334151,0.979533657,0,0,10.59562199,1.48958,22.01524,10.8121806,0.15492,0.387108814,1.03863814,25.25922,2.00982,132.35106,0,5398.81158,460.7554772,981.9550508,56.1807858,13.3169172,179.16835,200.774306,205.98328,72.13338,5.05072898,0.89296,23.9640288,2.37818,0.806365588,8.26686694,73.23363137,244.7408248,51.43901083,37.15425228,8.61552,49626.13789,1.20606,0.82806,0.19924 +2029,13.23247232,0.969789914,0,0,10.64158807,1.42349,20.40522,10.5697928,0.12291,0.323277757,0.995279495,24.02781,1.51101,131.14143,0,5373.63464,466.0431353,983.6744394,55.0865849,12.4726846,161.23929,206.566583,202.53524,74.11914,5.06197964,0.71018,24.5976904,1.89139,0.764209024,8.363412911,73.79530851,245.7057354,51.54937028,37.3185011,8.64136,49657.15616,1.08373,0.79318,0.18927 +2030,13.46160312,0.960046171,0,0,10.68755416,1.3574,18.7952,10.327405,0.0909,0.2594467,0.95192085,22.7964,1.0122,129.9318,0,5348.4577,471.3307935,985.3938279,53.992384,11.628452,143.31023,212.35886,199.0872,76.1049,5.0732303,0.5274,25.231352,1.4046,0.72205246,8.459958882,74.35698566,246.670646,51.65972974,37.48274991,8.6672,49688.17442,0.9614,0.7583,0.1793 +2031,13.62552259,0.95032764,0,0,10.71943753,1.3151,17.92802,10.17227643,0.08382,0.241007612,0.922171126,21.99688,0.92805,129.1576,0,5332.34441,475.7522846,987.1278401,51.7698,10.82562094,131.008084,216.31717,198.40591,77.85739,5.07429779,0.50649,25.846339,1.34891,0.707414934,8.538551672,74.73542397,247.090167,51.69677483,37.56389761,8.67123,49705.66961,0.90757,0.7344,0.1729 +2032,13.78944206,0.940609109,0,0,10.7513209,1.2728,17.06084,10.01714786,0.07674,0.222568525,0.892421402,21.19736,0.8439,128.3834,0,5316.23112,480.1737758,988.8618523,49.547216,10.02278988,118.705938,220.27548,197.72462,79.60988,5.07536528,0.48558,26.461326,1.29322,0.692777408,8.617144462,75.11386229,247.509688,51.73381992,37.6450453,8.67526,49723.16481,0.85374,0.7105,0.1665 +2033,13.95336152,0.930890579,0,0,10.78320427,1.2305,16.19366,9.86201929,0.06966,0.204129437,0.862671678,20.39784,0.75975,127.6092,0,5300.11783,484.5952669,990.5958645,47.324632,9.21995882,106.403792,224.23379,197.04333,81.36237,5.07643277,0.46467,27.076313,1.23753,0.678139882,8.695737253,75.4923006,247.929209,51.770865,37.72619299,8.67929,49740.66,0.79991,0.6866,0.1601 +2034,14.11728099,0.921172048,0,0,10.81508764,1.1882,15.32648,9.70689072,0.06258,0.18569035,0.832921954,19.59832,0.6756,126.835,0,5284.00454,489.0167581,992.3298767,45.102048,8.41712776,94.101646,228.1921,196.36204,83.11486,5.07750026,0.44376,27.6913,1.18184,0.663502356,8.774330043,75.87073892,248.34873,51.80791009,37.80734069,8.68332,49758.15519,0.74608,0.6627,0.1537 +2035,14.28120046,0.911453518,0,0,10.84697101,1.1459,14.4593,9.55176215,0.0555,0.167251262,0.80317223,18.7988,0.59145,126.0608,0,5267.89125,493.4382492,994.0638889,42.879464,7.6142967,81.7995,232.15041,195.68075,84.86735,5.07856775,0.42285,28.306287,1.12615,0.64886483,8.852922833,76.24917723,248.7682509,51.84495518,37.88848838,8.68735,49775.65038,0.69225,0.6388,0.1473 +2036,14.44511993,0.901734987,0,0,10.87885438,1.1036,13.59212,9.39663358,0.04842,0.148812174,0.773422506,17.99928,0.5073,125.2866,0,5251.77796,497.8597404,995.7979011,40.65688,6.81146564,69.497354,236.10872,194.99946,86.61984,5.07963524,0.40194,28.921274,1.07046,0.634227304,8.931515623,76.62761554,249.1877719,51.88200027,37.96963607,8.69138,49793.14557,0.63842,0.6149,0.1409 +2037,14.60903939,0.892016456,0,0,10.91073775,1.0613,12.72494,9.24150501,0.04134,0.130373087,0.743672782,17.19976,0.42315,124.5124,0,5235.66467,502.2812315,997.5319133,38.434296,6.00863458,57.195208,240.06703,194.31817,88.37233,5.08070273,0.38103,29.536261,1.01477,0.619589778,9.010108413,77.00605386,249.6072929,51.91904536,38.05078377,8.69541,49810.64076,0.58459,0.591,0.1345 +2038,14.77295886,0.882297926,0,0,10.94262112,1.019,11.85776,9.08637644,0.03426,0.111933999,0.713923058,16.40024,0.339,123.7382,0,5219.55138,506.7027227,999.2659255,36.211712,5.20580352,44.893062,244.02534,193.63688,90.12482,5.08177022,0.36012,30.151248,0.95908,0.604952252,9.088701204,77.38449217,250.0268139,51.95609045,38.13193146,8.69944,49828.13596,0.53076,0.5671,0.1281 +2039,14.93687833,0.872579395,0,0,10.97450449,0.9767,10.99058,8.93124787,0.02718,0.093494912,0.684173334,15.60072,0.25485,122.964,0,5203.43809,511.1242138,1000.999938,33.989128,4.40297246,32.590916,247.98365,192.95559,91.87731,5.08283771,0.33921,30.766235,0.90339,0.590314726,9.167293994,77.76293049,250.4463349,51.99313553,38.21307915,8.70347,49845.63115,0.47693,0.5432,0.1217 +2040,15.1007978,0.862860864,0,0,11.00638786,0.9344,10.1234,8.7761193,0.0201,0.075055824,0.65442361,14.8012,0.1707,122.1898,0,5187.3248,515.545705,1002.73395,31.766544,3.6001414,20.28877,251.94196,192.2743,93.6298,5.0839052,0.3183,31.381222,0.8477,0.5756772,9.245886784,78.1413688,250.8658559,52.03018062,38.29422685,8.7075,49863.12634,0.4231,0.5193,0.1153 +2041,15.22848066,0.855416874,0,0,11.00032026,0.90733,9.65632,8.67684021,0.01853,0.0697235,0.633957487,14.28209,0.15651,121.69434,0,5177.01263,519.8885619,1002.064186,30.4061322,3.34120265,18.44822429,254.948019,193.15595,94.95507,5.09883811,0.3025,31.9342087,0.80562,0.571158232,9.316427872,78.39863212,251.3807211,51.99849157,38.30272664,8.68817,49873.48922,0.39941,0.50294,0.11118 +2042,15.35616351,0.847972884,0,0,10.99425266,0.88026,9.18924,8.57756112,0.01696,0.064391176,0.613491364,13.76298,0.14232,121.19888,0,5166.70046,524.2314188,1001.394423,29.0457204,3.0822639,16.60767858,257.954078,194.0376,96.28034,5.11377102,0.2867,32.4871954,0.76354,0.566639264,9.38696896,78.65589544,251.8955863,51.96680252,38.31122643,8.66884,49883.8521,0.37572,0.48658,0.10706 +2043,15.48384637,0.840528894,0,0,10.98818506,0.85319,8.72216,8.47828203,0.01539,0.059058851,0.593025241,13.24387,0.12813,120.70342,0,5156.38829,528.5742758,1000.724659,27.6853086,2.82332515,14.76713287,260.960137,194.91925,97.60561,5.12870393,0.2709,33.0401821,0.72146,0.562120296,9.457510048,78.91315876,252.4104515,51.93511347,38.31972622,8.64951,49894.21499,0.35203,0.47022,0.10294 +2044,15.61152923,0.833084904,0,0,10.98211747,0.82612,8.25508,8.37900294,0.01382,0.053726527,0.572559118,12.72476,0.11394,120.20796,0,5146.07612,532.9171327,1000.054895,26.3248968,2.5643864,12.92658716,263.966196,195.8009,98.93088,5.14363684,0.2551,33.5931688,0.67938,0.557601328,9.528051136,79.17042208,252.9253166,51.90342442,38.32822601,8.63018,49904.57787,0.32834,0.45386,0.09882 +2045,15.73921209,0.825640914,0,0,10.97604987,0.79905,7.788,8.27972385,0.01225,0.048394203,0.552092995,12.20565,0.09975,119.7125,0,5135.76395,537.2599896,999.3851317,24.964485,2.30544765,11.08604145,266.972255,196.68255,100.25615,5.15856975,0.2393,34.1461555,0.6373,0.55308236,9.598592224,79.42768539,253.4401818,51.87173537,38.3367258,8.61085,49914.94075,0.30465,0.4375,0.0947 +2046,15.86689495,0.818196924,0,0,10.96998227,0.77198,7.32092,8.18044476,0.01068,0.043061879,0.531626872,11.68654,0.08556,119.21704,0,5125.45178,541.6028465,998.7153681,23.6040732,2.0465089,9.24549574,269.978314,197.5642,101.58142,5.17350266,0.2235,34.6991422,0.59522,0.548563392,9.669133312,79.68494871,253.955047,51.84004632,38.34522559,8.59152,49925.30364,0.28096,0.42114,0.09058 +2047,15.99457781,0.810752934,0,0,10.96391467,0.74491,6.85384,8.08116567,0.00911,0.037729555,0.511160749,11.16743,0.07137,118.72158,0,5115.13961,545.9457035,998.0456044,22.2436614,1.78757015,7.40495003,272.984373,198.44585,102.90669,5.18843557,0.2077,35.2521289,0.55314,0.544044424,9.739674399,79.94221203,254.4699122,51.80835727,38.35372538,8.57219,49935.66652,0.25727,0.40478,0.08646 +2048,16.12226067,0.803308944,0,0,10.95784707,0.71784,6.38676,7.98188658,0.00754,0.03239723,0.490694626,10.64832,0.05718,118.22612,0,5104.82744,550.2885604,997.3758408,20.8832496,1.5286314,5.56440432,275.990432,199.3275,104.23196,5.20336848,0.1919,35.8051156,0.51106,0.539525456,9.810215487,80.19947535,254.9847774,51.77666822,38.36222517,8.55286,49946.0294,0.23358,0.38842,0.08234 +2049,16.24994353,0.795864954,0,0,10.95177947,0.69077,5.91968,7.88260749,0.00597,0.027064906,0.470228503,10.12921,0.04299,117.73066,0,5094.51527,554.6314173,996.7060771,19.5228378,1.26969265,3.72385861,278.996491,200.20915,105.55723,5.21830139,0.1761,36.3581023,0.46898,0.535006488,9.880756575,80.45673867,255.4996426,51.74497917,38.37072496,8.53353,49956.39229,0.20989,0.37206,0.07822 +2050,16.37762639,0.788420963,0,0,10.94571187,0.6637,5.4526,7.7833284,0.0044,0.021732582,0.44976238,9.6101,0.0288,117.2352,0,5084.2031,558.9742742,996.0363135,18.162426,1.0107539,1.8833129,282.00255,201.0908,106.8825,5.2332343,0.1603,36.911089,0.4269,0.53048752,9.951297663,80.71400199,256.0145078,51.71329011,38.37922475,8.5142,49966.75517,0.1862,0.3557,0.0741 +2051,16.47065241,0.795391198,0,0,10.90930242,0.64638,5.20103,7.71978898,0.00406,0.020186656,0.435696317,9.27305,0.02641,116.9182,0,5077.60323,563.3086997,993.4146635,17.3846094,0.938056143,1.712466056,283.785038,201.34217,107.62355,5.19588404,0.15272,37.3077316,0.40671,0.526054511,10.01513932,80.89995626,255.6309221,51.51947034,38.2955354,8.51471,49771.70362,0.17577,0.34449,0.07145 +2052,16.56367843,0.802361432,0,0,10.87289297,0.62906,4.94946,7.65624956,0.00372,0.01864073,0.421630254,8.936,0.02402,116.6012,0,5071.00336,567.6431252,990.7930134,16.6067928,0.865358386,1.541619212,285.567526,201.59354,108.3646,5.15853378,0.14514,37.7043742,0.38652,0.521621502,10.07898099,81.08591054,255.2473364,51.32565056,38.21184605,8.51522,49576.65206,0.16534,0.33328,0.0688 +2053,16.65670445,0.809331666,0,0,10.83648352,0.61174,4.69789,7.59271014,0.00338,0.017094804,0.407564191,8.59895,0.02163,116.2842,0,5064.40349,571.9775507,988.1713633,15.8289762,0.792660629,1.370772368,287.350014,201.84491,109.10565,5.12118352,0.13756,38.1010168,0.36633,0.517188493,10.14282265,81.27186481,254.8637507,51.13183078,38.12815669,8.51573,49381.60051,0.15491,0.32207,0.06615 +2054,16.74973047,0.8163019,0,0,10.80007406,0.59442,4.44632,7.52917072,0.00304,0.015548878,0.393498128,8.2619,0.01924,115.9672,0,5057.80362,576.3119763,985.5497133,15.0511596,0.719962872,1.199925524,289.132502,202.09628,109.8467,5.08383326,0.12998,38.4976594,0.34614,0.512755484,10.20666431,81.45781909,254.4801651,50.938011,38.04446734,8.51624,49186.54896,0.14448,0.31086,0.0635 +2055,16.84275649,0.823272134,0,0,10.76366461,0.5771,4.19475,7.4656313,0.0027,0.014002952,0.379432065,7.92485,0.01685,115.6502,0,5051.20375,580.6464018,982.9280632,14.273343,0.647265115,1.02907868,290.91499,202.34765,110.58775,5.046483,0.1224,38.894302,0.32595,0.508322475,10.27050597,81.64377336,254.0965794,50.74419122,37.96077799,8.51675,48991.49741,0.13405,0.29965,0.06085 +2056,16.93578251,0.830242368,0,0,10.72725516,0.55978,3.94318,7.40209188,0.00236,0.012457026,0.365366002,7.5878,0.01446,115.3332,0,5044.60388,584.9808273,980.3064132,13.4955264,0.574567358,0.858231836,292.697478,202.59902,111.3288,5.00913274,0.11482,39.2909446,0.30576,0.503889466,10.33434763,81.82972764,253.7129937,50.55037144,37.87708863,8.51726,48796.44585,0.12362,0.28844,0.0582 +2057,17.02880852,0.837212602,0,0,10.6908457,0.54246,3.69161,7.33855246,0.00202,0.0109111,0.351299939,7.25075,0.01207,115.0162,0,5038.00401,589.3152528,977.6847631,12.7177098,0.501869601,0.687384992,294.479966,202.85039,112.06985,4.97178248,0.10724,39.6875872,0.28557,0.499456457,10.39818929,82.01568191,253.3294081,50.35655166,37.79339928,8.51777,48601.3943,0.11319,0.27723,0.05555 +2058,17.12183454,0.844182836,0,0,10.65443625,0.52514,3.44004,7.27501304,0.00168,0.009365174,0.337233876,6.9137,0.00968,114.6992,0,5031.40414,593.6496783,975.0631131,11.9398932,0.429171844,0.516538148,296.262454,203.10176,112.8109,4.93443222,0.09966,40.0842298,0.26538,0.495023448,10.46203095,82.20163619,252.9458224,50.16273189,37.70970993,8.51828,48406.34275,0.10276,0.26602,0.0529 +2059,17.21486056,0.85115307,0,0,10.6180268,0.50782,3.18847,7.21147362,0.00134,0.007819249,0.323167813,6.57665,0.00729,114.3822,0,5024.80427,597.9841038,972.441463,11.1620766,0.356474087,0.345691304,298.044942,203.35313,113.55195,4.89708196,0.09208,40.4808724,0.24519,0.490590439,10.52587261,82.38759046,252.5622367,49.96891211,37.62602057,8.51879,48211.2912,0.09233,0.25481,0.05025 +2060,17.30788658,0.858123304,0,0,10.58161735,0.4905,2.9369,7.1479342,0.001,0.006273323,0.30910175,6.2396,0.0049,114.0652,0,5018.2044,602.3185293,969.819813,10.38426,0.28377633,0.17484446,299.82743,203.6045,114.293,4.8597317,0.0845,40.877515,0.225,0.48615743,10.58971427,82.57354474,252.178651,49.77509233,37.54233122,8.5193,48016.23964,0.0819,0.2436,0.0476 +2061,17.40529949,0.855502641,0,0,10.54384315,0.47941,2.80139,7.10727458,9.20E-04,0.005825228,0.299431331,6.02076,0.00449,113.86222,0,5013.98107,606.7996169,967.4970798,9.93955833,0.263361767,0.158985329,301.735028,204.55202,115.22352,4.83178498,0.08044,41.29773,0.21419,0.483983905,10.65249315,82.65804713,251.7006005,49.59075877,37.44419061,8.52632,47814.53894,0.07732,0.23592,0.0459 +2062,17.5027124,0.852881977,0,0,10.50606895,0.46832,2.66588,7.06661496,8.40E-04,0.005377134,0.289760912,5.80192,0.00408,113.65924,0,5009.75774,611.2807045,965.1743466,9.49485666,0.242947203,0.143126197,303.642626,205.49954,116.15404,4.80383826,0.07638,41.717945,0.20338,0.48181038,10.71527202,82.74254951,251.22255,49.40642521,37.34605,8.53334,47612.83824,0.07274,0.22824,0.0442 +2063,17.60012531,0.850261314,0,0,10.46829475,0.45723,2.53037,7.02595534,7.60E-04,0.004929039,0.280090493,5.58308,0.00367,113.45626,0,5005.53441,615.7617921,962.8516134,9.05015499,0.22253264,0.127267066,305.550224,206.44706,117.08456,4.77589154,0.07232,42.13816,0.19257,0.479636855,10.77805089,82.8270519,250.7444995,49.22209165,37.24790939,8.54036,47411.13753,0.06816,0.22056,0.0425 +2064,17.69753822,0.84764065,0,0,10.43052055,0.44614,2.39486,6.98529572,6.80E-04,0.004480945,0.270420074,5.36424,0.00326,113.25328,0,5001.31108,620.2428798,960.5288802,8.60545332,0.202118076,0.111407935,307.457822,207.39458,118.01508,4.74794482,0.06826,42.558375,0.18176,0.47746333,10.84082976,82.91155429,250.2664489,49.03775809,37.14976878,8.54738,47209.43683,0.06358,0.21288,0.0408 +2065,17.79495113,0.845019987,0,0,10.39274635,0.43505,2.25935,6.9446361,6.00E-04,0.00403285,0.260749655,5.1454,0.00285,113.0503,0,4997.08775,624.7239674,958.206147,8.16075165,0.181703513,0.095548804,309.36542,208.3421,118.9456,4.7199981,0.0642,42.97859,0.17095,0.475289805,10.90360863,82.99605667,249.7883984,48.85342453,37.05162817,8.5544,47007.73612,0.059,0.2052,0.0391 +2066,17.89236404,0.842399323,0,0,10.35497215,0.42396,2.12384,6.90397648,5.20E-04,0.003584756,0.251079236,4.92656,0.00244,112.84732,0,4992.86442,629.205055,955.8834138,7.71604998,0.16128895,0.079689672,311.273018,209.28962,119.87612,4.69205138,0.06014,43.398805,0.16014,0.47311628,10.9663875,83.08055906,249.3103479,48.66909097,36.95348755,8.56142,46806.03542,0.05442,0.19752,0.0374 +2067,17.98977695,0.83977866,0,0,10.31719795,0.41287,1.98833,6.86331686,4.40E-04,0.003136661,0.241408817,4.70772,0.00203,112.64434,0,4988.64109,633.6861426,953.5606807,7.27134831,0.140874386,0.063830541,313.180616,210.23714,120.80664,4.66410466,0.05608,43.81902,0.14933,0.470942755,11.02916637,83.16506145,248.8322974,48.48475742,36.85534694,8.56844,46604.33471,0.04984,0.18984,0.0357 +2068,18.08718986,0.837157996,0,0,10.27942376,0.40178,1.85282,6.82265724,3.60E-04,0.002688567,0.231738398,4.48888,0.00162,112.44136,0,4984.41776,638.1672303,951.2379475,6.82664664,0.120459823,0.04797141,315.088214,211.18466,121.73716,4.63615794,0.05202,44.239235,0.13852,0.46876923,11.09194524,83.24956383,248.3542469,48.30042386,36.75720633,8.57546,46402.63401,0.04526,0.18216,0.034 +2069,18.18460277,0.834537333,0,0,10.24164956,0.39069,1.71731,6.78199762,2.80E-04,0.002240472,0.222067979,4.27004,0.00121,112.23838,0,4980.19443,642.6483179,948.9152143,6.38194497,0.100045259,0.032112278,316.995812,212.13218,122.66768,4.60821122,0.04796,44.65945,0.12771,0.466595705,11.15472412,83.33406622,247.8761963,48.1160903,36.65906572,8.58248,46200.93331,0.04068,0.17448,0.0323 +2070,18.28201568,0.831916669,0,0,10.20387536,0.3796,1.5818,6.741338,2.00E-04,0.001792378,0.21239756,4.0512,8.00E-04,112.0354,0,4975.9711,647.1294055,946.5924811,5.9372433,0.079630696,0.016253147,318.90341,213.0797,123.5982,4.5802645,0.0439,45.079665,0.1169,0.46442218,11.21750299,83.41856861,247.3981458,47.93175674,36.56092511,8.5895,45999.2326,0.0361,0.1668,0.0306 +2071,18.37939617,0.826316678,0,0,10.15959503,0.37251,1.50882,6.71530824,1.80E-04,0.00165795,0.205751345,3.90912,7.30E-04,111.90564,0,4973.26737,651.7547103,944.5465119,5.68298413,0.073907751,0.014775588,321.079493,215.00581,124.58139,4.56903783,0.04178,45.5428175,0.11126,0.464557258,11.27840169,83.44386368,246.8005105,47.74289912,36.46048262,8.60361,45776.28475,0.03408,0.16155,0.02951 +2072,18.47677667,0.820716688,0,0,10.1153147,0.36542,1.43584,6.68927848,1.60E-04,0.001523521,0.19910513,3.76704,6.60E-04,111.77588,0,4970.56364,656.380015,942.5005427,5.42872496,0.068184805,0.013298029,323.255576,216.93192,125.56458,4.55781116,0.03966,46.00597,0.10562,0.464692336,11.33930039,83.46915875,246.2028751,47.55404149,36.36004012,8.61772,45553.3369,0.03206,0.1563,0.02842 +2073,18.57415717,0.815116697,0,0,10.07103437,0.35833,1.36286,6.66324872,1.40E-04,0.001389093,0.192458915,3.62496,5.90E-04,111.64612,0,4967.85991,661.0053198,940.4545735,5.17446579,0.06246186,0.011820471,325.431659,218.85803,126.54777,4.54658449,0.03754,46.4691225,0.09998,0.464827414,11.40019909,83.49445382,245.6052398,47.36518387,36.25959763,8.63183,45330.38904,0.03004,0.15105,0.02733 +2074,18.67153767,0.809516706,0,0,10.02675404,0.35124,1.28988,6.63721896,1.20E-04,0.001254665,0.1858127,3.48288,5.20E-04,111.51636,0,4965.15618,665.6306245,938.4086043,4.92020662,0.056738915,0.010342912,327.607742,220.78414,127.53096,4.53535782,0.03542,46.932275,0.09434,0.464962492,11.4610978,83.5197489,245.0076044,47.17632625,36.15915513,8.64594,45107.44119,0.02802,0.1458,0.02624 +2075,18.76891816,0.803916715,0,0,9.982473712,0.34415,1.2169,6.6111892,1.00E-04,0.001120236,0.179166485,3.3408,4.50E-04,111.3866,0,4962.45245,670.2559293,936.3626351,4.66594745,0.05101597,0.008865353,329.783825,222.71025,128.51415,4.52413115,0.0333,47.3954275,0.0887,0.46509757,11.5219965,83.54504397,244.409969,46.98746863,36.05871264,8.66005,44884.49333,0.026,0.14055,0.02515 +2076,18.86629866,0.798316724,0,0,9.938193383,0.33706,1.14392,6.58515944,8.00E-05,9.86E-04,0.17252027,3.19872,3.80E-04,111.25684,0,4959.74872,674.881234,934.3166659,4.41168828,0.045293024,0.007387794,331.959908,224.63636,129.49734,4.51290448,0.03118,47.85858,0.08306,0.465232648,11.5828952,83.57033904,243.8123337,46.79861101,35.95827015,8.67416,44661.54548,0.02398,0.1353,0.02406 +2077,18.96367916,0.792716733,0,0,9.893913053,0.32997,1.07094,6.55912968,6.00E-05,8.51E-04,0.165874055,3.05664,3.10E-04,111.12708,0,4957.04499,679.5065388,932.2706967,4.15742911,0.039570079,0.005910235,334.135991,226.56247,130.48053,4.50167781,0.02906,48.3217325,0.07742,0.465367726,11.64379391,83.59563412,243.2146983,46.60975338,35.85782765,8.68827,44438.59763,0.02196,0.13005,0.02297 +2078,19.06105965,0.787116743,0,0,9.849632724,0.32288,0.99796,6.53309992,4.00E-05,7.17E-04,0.15922784,2.91456,2.40E-04,110.99732,0,4954.34126,684.1318435,930.2247275,3.90316994,0.033847134,0.004432676,336.312074,228.48858,131.46372,4.49045114,0.02694,48.784885,0.07178,0.465502804,11.70469261,83.62092919,242.617063,46.42089576,35.75738516,8.70238,44215.64977,0.01994,0.1248,0.02188 +2079,19.15844015,0.781516752,0,0,9.805352395,0.31579,0.92498,6.50707016,2.00E-05,5.83E-04,0.152581625,2.77248,1.70E-04,110.86756,0,4951.63753,688.7571483,928.1787583,3.64891077,0.028124188,0.002955118,338.488157,230.41469,132.44691,4.47922447,0.02482,49.2480375,0.06614,0.465637882,11.76559131,83.64622426,242.0194276,46.23203814,35.65694266,8.71649,43992.70192,0.01792,0.11955,0.02079 +2080,19.25582065,0.775916761,0,0,9.761072065,0.3087,0.852,6.4810404,0,4.48E-04,0.14593541,2.6304,1.00E-04,110.7378,0,4948.9338,693.382453,926.1327891,3.3946516,0.022401243,0.001477559,340.66424,232.3408,133.4301,4.4679978,0.0227,49.71119,0.0605,0.46577296,11.82649001,83.67151934,241.4217923,46.04318052,35.55650017,8.7306,43769.75407,0.0159,0.1143,0.0197 +2081,19.38332128,0.768320282,0,0,9.729928673,0.29608,0.81269,6.43477082,0,4.26E-04,0.141363939,2.53814,9.00E-05,110.50681,0,4944.12776,697.576527,925.4613132,3.24927085,0.020790643,0.00134622,342.465234,234.59449,134.12343,4.46075324,0.02159,50.1420424,0.05754,0.466620266,11.89304358,83.89975244,240.8072834,45.94680918,35.47585854,8.76398,43580.11244,0.01501,0.1107,0.01899 +2082,19.51082192,0.760723803,0,0,9.698785281,0.28346,0.77338,6.38850124,0,4.03E-04,0.136792468,2.44588,8.00E-05,110.27582,0,4939.32172,701.7706009,924.7898374,3.1038901,0.019180042,0.001214882,344.266228,236.84818,134.81676,4.45350868,0.02048,50.5728948,0.05458,0.467467572,11.95959715,84.12798554,240.1927744,45.85043785,35.39521692,8.79736,43390.47082,0.01412,0.1071,0.01828 +2083,19.63832256,0.753127323,0,0,9.667641889,0.27084,0.73407,6.34223166,0,3.81E-04,0.132220997,2.35362,7.00E-05,110.04483,0,4934.51568,705.9646749,924.1183615,2.95850935,0.017569442,0.001083543,346.067222,239.10187,135.51009,4.44626412,0.01937,51.0037472,0.05162,0.468314878,12.02615071,84.35621864,239.5782655,45.75406651,35.3145753,8.83074,43200.8292,0.01323,0.1035,0.01757 +2084,19.7658232,0.745530844,0,0,9.636498497,0.25822,0.69476,6.29596208,0,3.58E-04,0.127649526,2.26136,6.00E-05,109.81384,0,4929.70964,710.1587489,923.4468856,2.8131286,0.015958842,9.52E-04,347.868216,241.35556,136.20342,4.43901956,0.01826,51.4345996,0.04866,0.469162184,12.09270428,84.58445174,238.9637566,45.65769518,35.23393367,8.86412,43011.18758,0.01234,0.0999,0.01686 +2085,19.89332384,0.737934365,0,0,9.605355105,0.2456,0.65545,6.2496925,0,3.36E-04,0.123078055,2.1691,5.00E-05,109.58285,0,4924.9036,714.3528228,922.7754097,2.66774785,0.014348241,8.21E-04,349.66921,243.60925,136.89675,4.431775,0.01715,51.865452,0.0457,0.47000949,12.15925785,84.81268484,238.3492476,45.56132384,35.15329205,8.8975,42821.54595,0.01145,0.0963,0.01615 +2086,20.02082447,0.730337886,0,0,9.574211713,0.23298,0.61614,6.20342292,0,3.14E-04,0.118506584,2.07684,4.00E-05,109.35186,0,4920.09756,718.5468968,922.1039338,2.5223671,0.012737641,6.90E-04,351.470204,245.86294,137.59008,4.42453044,0.01604,52.2963044,0.04274,0.470856796,12.22581141,85.04091794,237.7347387,45.4649525,35.07265043,8.93088,42631.90433,0.01056,0.0927,0.01544 +2087,20.14832511,0.722741407,0,0,9.543068321,0.22036,0.57683,6.15715334,0,2.91E-04,0.113935113,1.98458,3.00E-05,109.12087,0,4915.29152,722.7409707,921.4324579,2.37698635,0.011127041,5.58E-04,353.271198,248.11663,138.28341,4.41728588,0.01493,52.7271568,0.03978,0.471704102,12.29236498,85.26915104,237.1202298,45.36858117,34.9920088,8.96426,42442.26271,0.00967,0.0891,0.01473 +2088,20.27582575,0.715144928,0,0,9.511924929,0.20774,0.53752,6.11088376,0,2.69E-04,0.109363642,1.89232,2.00E-05,108.88988,0,4910.48548,726.9350447,920.760982,2.2316056,0.00951644,4.27E-04,355.072192,250.37032,138.97674,4.41004132,0.01382,53.1580092,0.03682,0.472551408,12.35891855,85.49738415,236.5057208,45.27220983,34.91136718,8.99764,42252.62108,0.00878,0.0855,0.01402 +2089,20.40332639,0.707548448,0,0,9.480781537,0.19512,0.49821,6.06461418,0,2.46E-04,0.104792171,1.80006,1.00E-05,108.65889,0,4905.67944,731.1291186,920.0895062,2.08622485,0.00790584,2.96E-04,356.873186,252.62401,139.67007,4.40279676,0.01271,53.5888616,0.03386,0.473398714,12.42547211,85.72561725,235.8912119,45.1758385,34.83072556,9.03102,42062.97946,0.00789,0.0819,0.01331 +2090,20.53082703,0.699951969,0,0,9.449638145,0.1825,0.4589,6.0183446,0,2.24E-04,0.1002207,1.7078,0,108.4279,0,4900.8734,735.3231926,919.4180303,1.9408441,0.00629524,1.64E-04,358.67418,254.8777,140.3634,4.3955522,0.0116,54.019714,0.0309,0.47424602,12.49202568,85.95385035,235.276703,45.07946716,34.75008393,9.0644,41873.33784,0.007,0.0783,0.0126 +2091,20.66278691,0.702440331,0,0,9.415197624,0.1825,0.43762,6.0183446,0,2.02E-04,0.097055836,1.64769,0.0012,108.4279,0,4900.8734,739.5640926,919.0187296,1.86679494,0.007758679,0.001050708,360.870423,257.46318,141.2224,4.39604397,0.01044,54.4855851,0.02781,0.476014312,12.55741282,86.18930321,234.5409363,44.96932836,34.64991121,9.11009,41599.4687,0.0071,0.07583,0.01215 +2092,20.79474679,0.704928694,0,0,9.380757102,0.1825,0.41634,6.0183446,0,1.79E-04,0.093890972,1.58758,0.0024,108.4279,0,4900.8734,743.8049925,918.619429,1.79274578,0.009222117,0.001937244,363.066666,260.04866,142.0814,4.39653574,0.00928,54.9514562,0.02472,0.477782604,12.62279996,86.42475607,233.8051696,44.85918956,34.54973849,9.15578,41325.59957,0.0072,0.07336,0.0117 +2093,20.92670667,0.707417056,0,0,9.34631658,0.1825,0.39506,6.0183446,0,1.57E-04,0.090726108,1.52747,0.0036,108.4279,0,4900.8734,748.0458925,918.2201284,1.71869662,0.010685556,0.002823779,365.262909,262.63414,142.9404,4.39702751,0.00812,55.4173273,0.02163,0.479550896,12.6881871,86.66020893,233.069403,44.74905076,34.44956576,9.20147,41051.73043,0.0073,0.07089,0.01125 +2094,21.05866655,0.709905418,0,0,9.311876058,0.1825,0.37378,6.0183446,0,1.34E-04,0.087561244,1.46736,0.0048,108.4279,0,4900.8734,752.2867925,917.8208277,1.64464746,0.012148995,0.003710314,367.459152,265.21962,143.7994,4.39751928,0.00696,55.8831984,0.01854,0.481319188,12.75357425,86.89566179,232.3336363,44.63891196,34.34939304,9.24716,40777.86129,0.0074,0.06842,0.0108 +2095,21.19062643,0.712393781,0,0,9.277435536,0.1825,0.3525,6.0183446,0,1.12E-04,0.08439638,1.40725,0.006,108.4279,0,4900.8734,756.5276924,917.4215271,1.5705983,0.013612434,0.00459685,369.655395,267.8051,144.6584,4.39801105,0.0058,56.3490695,0.01545,0.48308748,12.81896139,87.13111465,231.5978696,44.52877316,34.24922032,9.29285,40503.99216,0.0075,0.06595,0.01035 +2096,21.32258632,0.714882143,0,0,9.242995015,0.1825,0.33122,6.0183446,0,8.96E-05,0.081231515,1.34714,0.0072,108.4279,0,4900.8734,760.7685924,917.0222265,1.49654914,0.015075873,0.005483385,371.851638,270.39058,145.5174,4.39850282,0.00464,56.8149406,0.01236,0.484855772,12.88434853,87.36656751,230.862103,44.41863437,34.1490476,9.33854,40230.12302,0.0076,0.06348,0.0099 +2097,21.4545462,0.717370505,0,0,9.208554493,0.1825,0.30994,6.0183446,0,6.72E-05,0.078066651,1.28703,0.0084,108.4279,0,4900.8734,765.0094924,916.6229259,1.42249998,0.016539312,0.00636992,374.047881,272.97606,146.3764,4.39899459,0.00348,57.2808117,0.00927,0.486624064,12.94973567,87.60202037,230.1263363,44.30849557,34.04887487,9.38423,39956.25388,0.0077,0.06101,0.00945 +2098,21.58650608,0.719858868,0,0,9.174113971,0.1825,0.28866,6.0183446,0,4.48E-05,0.074901787,1.22692,0.0096,108.4279,0,4900.8734,769.2503924,916.2236252,1.34845082,0.01800275,0.007256455,376.244124,275.56154,147.2354,4.39948636,0.00232,57.7466828,0.00618,0.488392356,13.01512281,87.83747324,229.3905696,44.19835677,33.94870215,9.42992,39682.38475,0.0078,0.05854,0.009 +2099,21.71846596,0.72234723,0,0,9.139673449,0.1825,0.26738,6.0183446,0,2.24E-05,0.071736923,1.16681,0.0108,108.4279,0,4900.8734,773.4912923,915.8243246,1.27440166,0.019466189,0.008142991,378.440367,278.14702,148.0944,4.39997813,0.00116,58.2125539,0.00309,0.490160648,13.08050995,88.0729261,228.654803,44.08821797,33.84852943,9.47561,39408.51561,0.0079,0.05607,0.00855 +2100,21.85042584,0.724835592,0,0,9.105232927,0.1825,0.2461,6.0183446,0,0,0.068572059,1.1067,0.012,108.4279,0,4900.8734,777.7321923,915.425024,1.2003525,0.020929628,0.009029526,380.63661,280.7325,148.9534,4.4004699,0,58.678425,0,0.49192894,13.1458971,88.30837896,227.9190363,43.97807917,33.7483567,9.5213,39134.64648,0.008,0.0536,0.0081 +2101,21.70475634,0.71033888,0,0,9.055633152,0.181283333,0.244459333,5.978222303,0,0,0.068114912,1.099322,0.01192,107.7050473,0,4868.200911,775.2219547,911.537964,1.19235015,0.020790097,0.008969329,378.0990326,278.86095,147.9603773,4.371133434,0,58.2872355,0,0.488649414,13.13014299,88.15961771,226.7517103,43.72663359,33.61937906,9.457824667,38881.8393,0.007946667,0.053242667,0.008046 +2102,21.55908683,0.695842168,0,0,9.006033376,0.180066667,0.242818667,5.938100005,0,0,0.067657765,1.091944,0.01184,106.9821947,0,4835.528421,772.7117171,907.6509041,1.1843478,0.020650566,0.008909132,375.5614552,276.9894,146.9673547,4.341796968,0,57.896046,0,0.485369887,13.11438888,88.01085645,225.5843843,43.47518802,33.49040142,9.394349333,38629.03212,0.007893333,0.052885333,0.007992 +2103,21.41341733,0.681345457,0,0,8.956433601,0.17885,0.241178,5.897977708,0,0,0.067200618,1.084566,0.01176,106.259342,0,4802.855932,770.2014796,903.7638442,1.17634545,0.020511035,0.008848935,373.0238778,275.11785,145.974332,4.312460502,0,57.5048565,0,0.482090361,13.09863477,87.8620952,224.4170583,43.22374244,33.36142379,9.330874,38376.22494,0.00784,0.052528,0.007938 +2104,21.26774782,0.666848745,0,0,8.906833826,0.177633333,0.239537333,5.857855411,0,0,0.066743471,1.077188,0.01168,105.5364893,0,4770.183443,767.691242,899.8767843,1.1683431,0.020371505,0.008788739,370.4863004,273.2463,144.9813093,4.283124036,0,57.113667,0,0.478810835,13.08288066,87.71333395,223.2497323,42.97229687,33.23244615,9.267398667,38123.41776,0.007786667,0.052170667,0.007884 +2105,21.12207832,0.652352033,0,0,8.85723405,0.176416667,0.237896667,5.817733113,0,0,0.066286324,1.06981,0.0116,104.8136367,0,4737.510953,765.1810044,895.9897244,1.16034075,0.020231974,0.008728542,367.948723,271.37475,143.9882867,4.25378757,0,56.7224775,0,0.475531309,13.06712655,87.56457269,222.0824063,42.72085129,33.10346851,9.203923333,37870.61058,0.007733333,0.051813333,0.00783 +2106,20.97640881,0.637855321,0,0,8.807634275,0.1752,0.236256,5.777610816,0,0,0.065829177,1.062432,0.01152,104.090784,0,4704.838464,762.6707669,892.1026645,1.1523384,0.020092443,0.008668345,365.4111456,269.5032,142.995264,4.224451104,0,56.331288,0,0.472251782,13.05137244,87.41581144,220.9150803,42.46940571,32.97449087,9.140448,37617.80341,0.00768,0.051456,0.007776 +2107,20.8307393,0.623358609,0,0,8.758034499,0.173983333,0.234615333,5.737488519,0,0,0.06537203,1.055054,0.01144,103.3679313,0,4672.165975,760.1605293,888.2156046,1.14433605,0.019952912,0.008608148,362.8735682,267.63165,142.0022413,4.195114638,0,55.9400985,0,0.468972256,13.03561833,87.26705019,219.7477543,42.21796014,32.84551323,9.076972667,37364.99623,0.007626667,0.051098667,0.007722 +2108,20.6850698,0.608861897,0,0,8.708434724,0.172766667,0.232974667,5.697366221,0,0,0.064914883,1.047676,0.01136,102.6450787,0,4639.493485,757.6502917,884.3285447,1.1363337,0.019813381,0.008547951,360.3359908,265.7601,141.0092187,4.165778172,0,55.548909,0,0.46569273,13.01986423,87.11828894,218.5804283,41.96651456,32.71653559,9.013497333,37112.18905,0.007573333,0.050741333,0.007668 +2109,20.53940029,0.594365186,0,0,8.658834948,0.17155,0.231334,5.657243924,0,0,0.064457735,1.040298,0.01128,101.922226,0,4606.820996,755.1400542,880.4414848,1.12833135,0.01967385,0.008487754,357.7984134,263.88855,140.016196,4.136441706,0,55.1577195,0,0.462413204,13.00411012,86.96952768,217.4131023,41.71506899,32.58755795,8.950022,36859.38187,0.00752,0.050384,0.007614 +2110,20.39373079,0.579868474,0,0,8.609235173,0.170333333,0.229693333,5.617121627,0,0,0.064000588,1.03292,0.0112,101.1993733,0,4574.148507,752.6298166,876.5544248,1.120329,0.019534319,0.008427558,355.260836,262.017,139.0231733,4.10710524,0,54.76653,0,0.459133677,12.98835601,86.82076643,216.2457763,41.46362341,32.45858031,8.886546667,36606.57469,0.007466667,0.050026667,0.00756 +2111,20.24806128,0.565371762,0,0,8.559635398,0.169116667,0.228052667,5.576999329,0,0,0.063543441,1.025542,0.01112,100.4765207,0,4541.476017,750.119579,872.6673649,1.11232665,0.019394789,0.008367361,352.7232586,260.14545,138.0301507,4.077768774,0,54.3753405,0,0.455854151,12.9726019,86.67200518,215.0784503,41.21217783,32.32960267,8.823071333,36353.76752,0.007413333,0.049669333,0.007506 +2112,20.10239178,0.55087505,0,0,8.510035622,0.1679,0.226412,5.536877032,0,0,0.063086294,1.018164,0.01104,99.753668,0,4508.803528,747.6093414,868.780305,1.1043243,0.019255258,0.008307164,350.1856812,258.2739,137.037128,4.048432308,0,53.984151,0,0.452574625,12.95684779,86.52324393,213.9111243,40.96073226,32.20062503,8.759596,36100.96034,0.00736,0.049312,0.007452 +2113,19.95672227,0.536378338,0,0,8.460435847,0.166683333,0.224771333,5.496754735,0,0,0.062629147,1.010786,0.01096,99.03081533,0,4476.131039,745.0991039,864.8932451,1.09632195,0.019115727,0.008246967,347.6481038,256.40235,136.0441053,4.019095842,0,53.5929615,0,0.449295099,12.94109368,86.37448267,212.7437983,40.70928668,32.07164739,8.696120667,35848.15316,0.007306667,0.048954667,0.007398 +2114,19.81105276,0.521881626,0,0,8.410836071,0.165466667,0.223130667,5.456632437,0,0,0.062172,1.003408,0.01088,98.30796267,0,4443.458549,742.5888663,861.0061852,1.0883196,0.018976196,0.00818677,345.1105264,254.5308,135.0510827,3.989759376,0,53.201772,0,0.446015572,12.92533957,86.22572142,211.5764723,40.4578411,31.94266975,8.632645333,35595.34598,0.007253333,0.048597333,0.007344 +2115,19.66538326,0.507384915,0,0,8.361236296,0.16425,0.22149,5.41651014,0,0,0.061714853,0.99603,0.0108,97.58511,0,4410.78606,740.0786287,857.1191253,1.08031725,0.018836665,0.008126573,342.572949,252.65925,134.05806,3.96042291,0,52.8105825,0,0.442736046,12.90958547,86.07696017,210.4091463,40.20639553,31.81369211,8.56917,35342.5388,0.0072,0.04824,0.00729 +2116,19.51971375,0.492888203,0,0,8.311636521,0.163033333,0.219849333,5.376387843,0,0,0.061257706,0.988652,0.01072,96.86225733,0,4378.113571,737.5683912,853.2320654,1.0723149,0.018697134,0.008066377,340.0353716,250.7877,133.0650373,3.931086444,0,52.419393,0,0.43945652,12.89383136,85.92819892,209.2418203,39.95494995,31.68471448,8.505694667,35089.73163,0.007146667,0.047882667,0.007236 +2117,19.37404425,0.478391491,0,0,8.262036745,0.161816667,0.218208667,5.336265545,0,0,0.060800559,0.981274,0.01064,96.13940467,0,4345.441081,735.0581536,849.3450055,1.06431255,0.018557603,0.00800618,337.4977942,248.91615,132.0720147,3.901749978,0,52.0282035,0,0.436176993,12.87807725,85.77943766,208.0744943,39.70350438,31.55573684,8.442219333,34836.92445,0.007093333,0.047525333,0.007182 +2118,19.22837474,0.463894779,0,0,8.21243697,0.1606,0.216568,5.296143248,0,0,0.060343412,0.973896,0.01056,95.416552,0,4312.768592,732.547916,845.4579455,1.0563102,0.018418073,0.007945983,334.9602168,247.0446,131.078992,3.872413512,0,51.637014,0,0.432897467,12.86232314,85.63067641,206.9071683,39.4520588,31.4267592,8.378744,34584.11727,0.00704,0.047168,0.007128 +2119,19.08270524,0.449398067,0,0,8.162837194,0.159383333,0.214927333,5.256020951,0,0,0.059886265,0.966518,0.01048,94.69369933,0,4280.096103,730.0376784,841.5708856,1.04830785,0.018278542,0.007885786,332.4226394,245.17305,130.0859693,3.843077046,0,51.2458245,0,0.429617941,12.84656903,85.48191516,205.7398423,39.20061322,31.29778156,8.315268667,34331.31009,0.006986667,0.046810667,0.007074 +2120,18.93703573,0.434901355,0,0,8.113237419,0.158166667,0.213286667,5.215898653,0,0,0.059429118,0.95914,0.0104,93.97084667,0,4247.423613,727.5274409,837.6838257,1.0403055,0.018139011,0.007825589,329.885062,243.3015,129.0929467,3.81374058,0,50.854635,0,0.426338415,12.83081492,85.33315391,204.5725163,38.94916765,31.16880392,8.251793333,34078.50291,0.006933333,0.046453333,0.00702 +2121,18.79136623,0.420404643,0,0,8.063637643,0.15695,0.211646,5.175776356,0,0,0.058971971,0.951762,0.01032,93.247994,0,4214.751124,725.0172033,833.7967658,1.03230315,0.01799948,0.007765392,327.3474846,241.42995,128.099924,3.784404114,0,50.4634455,0,0.423058888,12.81506081,85.18439265,203.4051903,38.69772207,31.03982628,8.188318,33825.69573,0.00688,0.046096,0.006966 +2122,18.64569672,0.405907932,0,0,8.014037868,0.155733333,0.210005333,5.135654059,0,0,0.058514824,0.944384,0.01024,92.52514133,0,4182.078635,722.5069657,829.9097059,1.0243008,0.017859949,0.007705196,324.8099072,239.5584,127.1069013,3.755067648,0,50.072256,0,0.419779362,12.7993067,85.0356314,202.2378643,38.4462765,30.91084864,8.124842667,33572.88856,0.006826667,0.045738667,0.006912 +2123,18.50002721,0.39141122,0,0,7.964438093,0.154516667,0.208364667,5.095531761,0,0,0.058057677,0.937006,0.01016,91.80228867,0,4149.406145,719.9967282,826.022646,1.01629845,0.017720418,0.007644999,322.2723298,237.68685,126.1138787,3.725731182,0,49.6810665,0,0.416499836,12.7835526,84.88687015,201.0705383,38.19483092,30.781871,8.061367333,33320.08138,0.006773333,0.045381333,0.006858 +2124,18.35435771,0.376914508,0,0,7.914838317,0.1533,0.206724,5.055409464,0,0,0.05760053,0.929628,0.01008,91.079436,0,4116.733656,717.4864906,822.1355861,1.0082961,0.017580888,0.007584802,319.7347524,235.8153,125.120856,3.696394716,0,49.289877,0,0.41322031,12.76779849,84.73810889,199.9032123,37.94338534,30.65289336,7.997892,33067.2742,0.00672,0.045024,0.006804 +2125,18.2086882,0.362417796,0,0,7.865238542,0.152083333,0.205083333,5.015287167,0,0,0.057143383,0.92225,0.01,90.35658333,0,4084.061167,714.976253,818.2485262,1.00029375,0.017441357,0.007524605,317.197175,233.94375,124.1278333,3.66705825,0,48.8986875,0,0.409940783,12.75204438,84.58934764,198.7358863,37.69193977,30.52391572,7.934416667,32814.46702,0.006666667,0.044666667,0.00675 +2126,18.0630187,0.347921084,0,0,7.815638766,0.150866667,0.203442667,4.975164869,0,0,0.056686235,0.914872,0.00992,89.63373067,0,4051.388677,712.4660154,814.3614662,0.9922914,0.017301826,0.007464408,314.6595976,232.0722,123.1348107,3.637721784,0,48.507498,0,0.406661257,12.73629027,84.44058639,197.5685603,37.44049419,30.39493808,7.870941333,32561.65984,0.006613333,0.044309333,0.006696 +2127,17.91734919,0.333424372,0,0,7.766038991,0.14965,0.201802,4.935042572,0,0,0.056229088,0.907494,0.00984,88.910878,0,4018.716188,709.9557779,810.4744063,0.98428905,0.017162295,0.007404211,312.1220202,230.20065,122.141788,3.608385318,0,48.1163085,0,0.403381731,12.72053616,84.29182514,196.4012343,37.18904862,30.26596044,7.807466,32308.85267,0.00656,0.043952,0.006642 +2128,17.77167969,0.318927661,0,0,7.716439215,0.148433333,0.200161333,4.894920275,0,0,0.055771941,0.900116,0.00976,88.18802533,0,3986.043699,707.4455403,806.5873464,0.9762867,0.017022764,0.007344014,309.5844428,228.3291,121.1487653,3.579048852,0,47.725119,0,0.400102205,12.70478205,84.14306388,195.2339083,36.93760304,30.13698281,7.743990667,32056.04549,0.006506667,0.043594667,0.006588 +2129,17.62601018,0.304430949,0,0,7.66683944,0.147216667,0.198520667,4.854797977,0,0,0.055314794,0.892738,0.00968,87.46517267,0,3953.371209,704.9353027,802.7002865,0.96828435,0.016883233,0.007283818,307.0468654,226.45755,120.1557427,3.549712386,0,47.3339295,0,0.396822678,12.68902794,83.99430263,194.0665823,36.68615746,30.00800517,7.680515333,31803.23831,0.006453333,0.043237333,0.006534 +2130,17.48034067,0.289934237,0,0,7.617239665,0.146,0.19688,4.81467568,0,0,0.054857647,0.88536,0.0096,86.74232,0,3920.69872,702.4250652,798.8132266,0.960282,0.016743702,0.007223621,304.509288,224.586,119.16272,3.52037592,0,46.94274,0,0.393543152,12.67327383,83.84554138,192.8992563,36.43471189,29.87902753,7.61704,31550.43113,0.0064,0.04288,0.00648 +2131,17.33467117,0.275437525,0,0,7.567639889,0.144783333,0.195239333,4.774553383,0,0,0.0544005,0.877982,0.00952,86.01946733,0,3888.026231,699.9148276,794.9261667,0.95227965,0.016604172,0.007163424,301.9717106,222.71445,118.1696973,3.491039454,0,46.5515505,0,0.390263626,12.65751973,83.69678013,191.7319303,36.18326631,29.75004989,7.553564667,31297.62395,0.006346667,0.042522667,0.006426 +2132,17.18900166,0.260940813,0,0,7.518040114,0.143566667,0.193598667,4.734431085,0,0,0.053943353,0.870604,0.00944,85.29661467,0,3855.353741,697.40459,791.0391068,0.9442773,0.016464641,0.007103227,299.4341332,220.8429,117.1766747,3.461702988,0,46.160361,0,0.386984099,12.64176562,83.54801887,190.5646043,35.93182074,29.62107225,7.490089333,31044.81678,0.006293333,0.042165333,0.006372 +2133,17.04333216,0.246444101,0,0,7.468440338,0.14235,0.191958,4.694308788,0,0,0.053486206,0.863226,0.00936,84.573762,0,3822.681252,694.8943525,787.1520469,0.93627495,0.01632511,0.00704303,296.8965558,218.97135,116.183652,3.432366522,0,45.7691715,0,0.383704573,12.62601151,83.39925762,189.3972783,35.68037516,29.49209461,7.426614,30792.0096,0.00624,0.041808,0.006318 +2134,16.89766265,0.231947389,0,0,7.418840563,0.141133333,0.190317333,4.654186491,0,0,0.053029059,0.855848,0.00928,83.85090933,0,3790.008763,692.3841149,783.264987,0.9282726,0.016185579,0.006982833,294.3589784,217.0998,115.1906293,3.403030056,0,45.377982,0,0.380425047,12.6102574,83.25049637,188.2299523,35.42892958,29.36311697,7.363138667,30539.20242,0.006186667,0.041450667,0.006264 +2135,16.75199315,0.217450678,0,0,7.369240788,0.139916667,0.188676667,4.614064193,0,0,0.052571912,0.84847,0.0092,83.12805667,0,3757.336273,689.8738773,779.377927,0.92027025,0.016046048,0.006922637,291.821401,215.22825,114.1976067,3.37369359,0,44.9867925,0,0.377145521,12.59450329,83.10173512,187.0626263,35.17748401,29.23413933,7.299663333,30286.39524,0.006133333,0.041093333,0.00621 +2136,16.60632364,0.202953966,0,0,7.319641012,0.1387,0.187036,4.573941896,0,0,0.052114765,0.841092,0.00912,82.405204,0,3724.663784,687.3636397,775.4908671,0.9122679,0.015906517,0.00686244,289.2838236,213.3567,113.204584,3.344357124,0,44.595603,0,0.373865994,12.57874918,82.95297386,185.8953003,34.92603843,29.10516169,7.236188,30033.58806,0.00608,0.040736,0.006156 +2137,16.46065414,0.188457254,0,0,7.270041237,0.137483333,0.185395333,4.533819599,0,0,0.051657618,0.833714,0.00904,81.68235133,0,3691.991295,684.8534022,771.6038072,0.90426555,0.015766986,0.006802243,286.7462462,211.48515,112.2115613,3.315020658,0,44.2044135,0,0.370586468,12.56299507,82.80421261,184.7279743,34.67459286,28.97618405,7.172712667,29780.78089,0.006026667,0.040378667,0.006102 +2138,16.31498463,0.173960542,0,0,7.220441461,0.136266667,0.183754667,4.493697301,0,0,0.051200471,0.826336,0.00896,80.95949867,0,3659.318805,682.3431646,767.7167473,0.8962632,0.015627456,0.006742046,284.2086688,209.6136,111.2185387,3.285684192,0,43.813224,0,0.367306942,12.54724096,82.65545136,183.5606483,34.42314728,28.84720641,7.109237333,29527.97371,0.005973333,0.040021333,0.006048 +2139,16.16931512,0.15946383,0,0,7.170841686,0.13505,0.182114,4.453575004,0,0,0.050743324,0.818958,0.00888,80.236646,0,3626.646316,679.832927,763.8296874,0.88826085,0.015487925,0.006681849,281.6710914,207.74205,110.225516,3.256347726,0,43.4220345,0,0.364027416,12.53148686,82.50669011,182.3933223,34.1717017,28.71822877,7.045762,29275.16653,0.00592,0.039664,0.005994 +2140,16.02364562,0.144967118,0,0,7.12124191,0.133833333,0.180473333,4.413452707,0,0,0.050286177,0.81158,0.0088,79.51379333,0,3593.973827,677.3226895,759.9426275,0.8802585,0.015348394,0.006621652,279.133514,205.8705,109.2324933,3.22701126,0,43.030845,0,0.360747889,12.51573275,82.35792885,181.2259963,33.92025613,28.58925113,6.982286667,29022.35935,0.005866667,0.039306667,0.00594 +2141,15.87797611,0.130470407,0,0,7.071642135,0.132616667,0.178832667,4.373330409,0,0,0.04982903,0.804202,0.00872,78.79094067,0,3561.301337,674.8124519,756.0555676,0.87225615,0.015208863,0.006561456,276.5959366,203.99895,108.2394707,3.197674794,0,42.6396555,0,0.357468363,12.49997864,82.2091676,180.0586703,33.66881055,28.4602735,6.918811333,28769.55217,0.005813333,0.038949333,0.005886 +2142,15.73230661,0.115973695,0,0,7.02204236,0.1314,0.177192,4.333208112,0,0,0.049371882,0.796824,0.00864,78.068088,0,3528.628848,672.3022143,752.1685077,0.8642538,0.015069332,0.006501259,274.0583592,202.1274,107.246448,3.168338328,0,42.248466,0,0.354188837,12.48422453,82.06040635,178.8913443,33.41736498,28.33129586,6.855336,28516.74499,0.00576,0.038592,0.005832 +2143,15.5866371,0.101476983,0,0,6.972442584,0.130183333,0.175551333,4.293085815,0,0,0.048914735,0.789446,0.00856,77.34523533,0,3495.956359,669.7919767,748.2814477,0.85625145,0.014929801,0.006441062,271.5207818,200.25585,106.2534253,3.139001862,0,41.8572765,0,0.350909311,12.46847042,81.9116451,177.7240183,33.1659194,28.20231822,6.791860667,28263.93782,0.005706667,0.038234667,0.005778 +2144,15.4409676,0.086980271,0,0,6.922842809,0.128966667,0.173910667,4.252963517,0,0,0.048457588,0.782068,0.00848,76.62238267,0,3463.283869,667.2817392,744.3943878,0.8482491,0.01479027,0.006380865,268.9832044,198.3843,105.2604027,3.109665396,0,41.466087,0,0.347629784,12.45271631,81.76288384,176.5566923,32.91447382,28.07334058,6.728385333,28011.13064,0.005653333,0.037877333,0.005724 +2145,15.29529809,0.072483559,0,0,6.873243033,0.12775,0.17227,4.21284122,0,0,0.048000441,0.77469,0.0084,75.89953,0,3430.61138,664.7715016,740.5073279,0.84024675,0.01465074,0.006320668,266.445627,196.51275,104.26738,3.08032893,0,41.0748975,0,0.344350258,12.4369622,81.61412259,175.3893663,32.66302825,27.94436294,6.66491,27758.32346,0.0056,0.03752,0.00567 +2146,15.14962858,0.057986847,0,0,6.823643258,0.126533333,0.170629333,4.172718923,0,0,0.047543294,0.767312,0.00832,75.17667733,0,3397.938891,662.261264,736.620268,0.8322444,0.014511209,0.006260471,263.9080496,194.6412,103.2743573,3.050992464,0,40.683708,0,0.341070732,12.4212081,81.46536134,174.2220403,32.41158267,27.8153853,6.601434667,27505.51628,0.005546667,0.037162667,0.005616 +2147,15.00395908,0.043490136,0,0,6.774043482,0.125316667,0.168988667,4.132596625,0,0,0.047086147,0.759934,0.00824,74.45382467,0,3365.266401,659.7510265,732.7332081,0.82424205,0.014371678,0.006200275,261.3704722,192.76965,102.2813347,3.021655998,0,40.2925185,0,0.337791205,12.40545399,81.31660008,173.0547143,32.1601371,27.68640766,6.537959333,27252.7091,0.005493333,0.036805333,0.005562 +2148,14.85828957,0.028993424,0,0,6.724443707,0.1241,0.167348,4.092474328,0,0,0.046629,0.752556,0.00816,73.730972,0,3332.593912,657.2407889,728.8461482,0.8162397,0.014232147,0.006140078,258.8328948,190.8981,101.288312,2.992319532,0,39.901329,0,0.334511679,12.38969988,81.16783883,171.8873883,31.90869152,27.55743002,6.474484,26999.90193,0.00544,0.036448,0.005508 +2149,14.71262007,0.014496712,0,0,6.674843932,0.122883333,0.165707333,4.052352031,0,0,0.046171853,0.745178,0.00808,73.00811933,0,3299.921423,654.7305513,724.9590883,0.80823735,0.014092616,0.006079881,256.2953174,189.02655,100.2952893,2.962983066,0,39.5101395,0,0.331232153,12.37394577,81.01907758,170.7200623,31.65724594,27.42845238,6.411008667,26747.09475,0.005386667,0.036090667,0.005454 +2150,14.56695056,0,0,0,6.625244156,0.121666667,0.164066667,4.012229733,0,0,0.045714706,0.7378,0.008,72.28526667,0,3267.248933,652.2203138,721.0720284,0.800235,0.013953085,0.006019684,253.75774,187.155,99.30226667,2.9336466,0,39.11895,0,0.327952627,12.35819166,80.87031633,169.5527363,31.40580037,27.29947474,6.347533333,26494.28757,0.005333333,0.035733333,0.0054 +2151,14.42128106,0,0,0,6.575644381,0.12045,0.162426,3.972107436,0,0,0.045257559,0.730422,0.00792,71.562414,0,3234.576444,649.7100762,717.1849684,0.79223265,0.013813554,0.005959487,251.2201626,185.28345,98.309244,2.904310134,0,38.7277605,0,0.3246731,12.34243755,80.72155507,168.3854103,31.15435479,27.1704971,6.284058,26241.48039,0.00528,0.035376,0.005346 +2152,14.27561155,0,0,0,6.526044605,0.119233333,0.160785333,3.931985139,0,0,0.044800412,0.723044,0.00784,70.83956133,0,3201.903955,647.1998386,713.2979085,0.7842303,0.013674024,0.00589929,248.6825852,183.4119,97.31622133,2.874973668,0,38.336571,0,0.321393574,12.32668344,80.57279382,167.2180843,30.90290922,27.04151946,6.220582667,25988.67321,0.005226667,0.035018667,0.005292 +2153,14.12994205,0,0,0,6.47644483,0.118016667,0.159144667,3.891862841,0,0,0.044343265,0.715666,0.00776,70.11670867,0,3169.231465,644.689601,709.4108486,0.77622795,0.013534493,0.005839093,246.1450078,181.54035,96.32319867,2.845637202,0,37.9453815,0,0.318114048,12.31092933,80.42403257,166.0507583,30.65146364,26.91254182,6.157107333,25735.86604,0.005173333,0.034661333,0.005238 +2154,13.98427254,0,0,0,6.426845055,0.1168,0.157504,3.851740544,0,0,0.043886118,0.708288,0.00768,69.393856,0,3136.558976,642.1793635,705.5237887,0.7682256,0.013394962,0.005778897,243.6074304,179.6688,95.330176,2.816300736,0,37.554192,0,0.314834522,12.29517523,80.27527132,164.8834323,30.40001806,26.78356419,6.093632,25483.05886,0.00512,0.034304,0.005184 +2155,13.83860303,0,0,0,6.377245279,0.115583333,0.155863333,3.811618247,0,0,0.043428971,0.70091,0.0076,68.67100333,0,3103.886487,639.6691259,701.6367288,0.76022325,0.013255431,0.0057187,241.069853,177.79725,94.33715333,2.78696427,0,37.1630025,0,0.311554995,12.27942112,80.12651006,163.7161063,30.14857249,26.65458655,6.030156667,25230.25168,0.005066667,0.033946667,0.00513 +2156,13.69293353,0,0,0,6.327645504,0.114366667,0.154222667,3.771495949,0,0,0.042971824,0.693532,0.00752,67.94815067,0,3071.213997,637.1588883,697.7496689,0.7522209,0.0131159,0.005658503,238.5322756,175.9257,93.34413067,2.757627804,0,36.771813,0,0.308275469,12.26366701,79.97774881,162.5487803,29.89712691,26.52560891,5.966681333,24977.4445,0.005013333,0.033589333,0.005076 +2157,13.54726402,0,0,0,6.278045728,0.11315,0.152582,3.731373652,0,0,0.042514677,0.686154,0.00744,67.225298,0,3038.541508,634.6486508,693.862609,0.74421855,0.012976369,0.005598306,235.9946982,174.05415,92.351108,2.728291338,0,36.3806235,0,0.304995943,12.2479129,79.82898756,161.3814543,29.64568134,26.39663127,5.903206,24724.63732,0.00496,0.033232,0.005022 +2158,13.40159452,0,0,0,6.228445953,0.111933333,0.150941333,3.691251355,0,0,0.04205753,0.678776,0.00736,66.50244533,0,3005.869019,632.1384132,689.9755491,0.7362162,0.012836839,0.005538109,233.4571208,172.1826,91.35808533,2.698954872,0,35.989434,0,0.301716417,12.23215879,79.68022631,160.2141283,29.39423576,26.26765363,5.839730667,24471.83015,0.004906667,0.032874667,0.004968 +2159,13.25592501,0,0,0,6.178846177,0.110716667,0.149300667,3.651129057,0,0,0.041600382,0.671398,0.00728,65.77959267,0,2973.196529,629.6281756,686.0884892,0.72821385,0.012697308,0.005477912,230.9195434,170.31105,90.36506267,2.669618406,0,35.5982445,0,0.29843689,12.21640468,79.53146505,159.0468023,29.14279018,26.13867599,5.776255333,24219.02297,0.004853333,0.032517333,0.004914 +2160,13.11025551,0,0,0,6.129246402,0.1095,0.14766,3.61100676,0,0,0.041143235,0.66402,0.0072,65.05674,0,2940.52404,627.117938,682.2014292,0.7202115,0.012557777,0.005417716,228.381966,168.4395,89.37204,2.64028194,0,35.207055,0,0.295157364,12.20065057,79.3827038,157.8794763,28.89134461,26.00969835,5.71278,23966.21579,0.0048,0.03216,0.00486 +2161,12.964586,0,0,0,6.079646627,0.108283333,0.146019333,3.570884463,0,0,0.040686088,0.656642,0.00712,64.33388733,0,2907.851551,624.6077005,678.3143693,0.71220915,0.012418246,0.005357519,225.8443886,166.56795,88.37901733,2.610945474,0,34.8158655,0,0.291877838,12.18489646,79.23394255,156.7121503,28.63989903,25.88072071,5.649304667,23713.40861,0.004746667,0.031802667,0.004806 +2162,12.81891649,0,0,0,6.030046851,0.107066667,0.144378667,3.530762165,0,0,0.040228941,0.649264,0.00704,63.61103467,0,2875.179061,622.0974629,674.4273094,0.7042068,0.012278715,0.005297322,223.3068112,164.6964,87.38599467,2.581609008,0,34.424676,0,0.288598311,12.16914236,79.0851813,155.5448243,28.38845346,25.75174307,5.585829333,23460.60143,0.004693333,0.031445333,0.004752 +2163,12.67324699,0,0,0,5.980447076,0.10585,0.142738,3.490639868,0,0,0.039771794,0.641886,0.00696,62.888182,0,2842.506572,619.5872253,670.5402495,0.69620445,0.012139184,0.005237125,220.7692338,162.82485,86.392972,2.552272542,0,34.0334865,0,0.285318785,12.15338825,78.93642004,154.3774983,28.13700788,25.62276543,5.522354,23207.79425,0.00464,0.031088,0.004698 +2164,12.52757748,0,0,0,5.9308473,0.104633333,0.141097333,3.450517571,0,0,0.039314647,0.634508,0.00688,62.16532933,0,2809.834083,617.0769878,666.6531896,0.6882021,0.011999653,0.005176928,218.2316564,160.9533,85.39994933,2.522936076,0,33.642297,0,0.282039259,12.13763414,78.78765879,153.2101723,27.8855623,25.49378779,5.458878667,22954.98708,0.004586667,0.030730667,0.004644 +2165,12.38190798,0,0,0,5.881247525,0.103416667,0.139456667,3.410395273,0,0,0.0388575,0.62713,0.0068,61.44247667,0,2777.161593,614.5667502,662.7661297,0.68019975,0.011860123,0.005116731,215.694079,159.08175,84.40692667,2.49359961,0,33.2511075,0,0.278759733,12.12188003,78.63889754,152.0428463,27.63411673,25.36481015,5.395403333,22702.1799,0.004533333,0.030373333,0.00459 +2166,12.23623847,0,0,0,5.831647749,0.1022,0.137816,3.370272976,0,0,0.038400353,0.619752,0.00672,60.719624,0,2744.489104,612.0565126,658.8790698,0.6721974,0.011720592,0.005056535,213.1565016,157.2102,83.413904,2.464263144,0,32.859918,0,0.275480206,12.10612592,78.49013628,150.8755203,27.38267115,25.23583251,5.331928,22449.37272,0.00448,0.030016,0.004536 +2167,12.09056897,0,0,0,5.782047974,0.100983333,0.136175333,3.330150679,0,0,0.037943206,0.612374,0.00664,59.99677133,0,2711.816615,609.546275,654.9920099,0.66419505,0.011581061,0.004996338,210.6189242,155.33865,82.42088133,2.434926678,0,32.4687285,0,0.27220068,12.09037181,78.34137503,149.7081943,27.13122558,25.10685488,5.268452667,22196.56554,0.004426667,0.029658667,0.004482 +2168,11.94489946,0,0,0,5.732448199,0.099766667,0.134534667,3.290028381,0,0,0.037486059,0.604996,0.00656,59.27391867,0,2679.144125,607.0360375,651.1049499,0.6561927,0.01144153,0.004936141,208.0813468,153.4671,81.42785867,2.405590212,0,32.077539,0,0.268921154,12.0746177,78.19261378,148.5408683,26.87978,24.97787724,5.204977333,21943.75836,0.004373333,0.029301333,0.004428 +2169,11.79922996,0,0,0,5.682848423,0.09855,0.132894,3.249906084,0,0,0.037028912,0.597618,0.00648,58.551066,0,2646.471636,604.5257999,647.21789,0.64819035,0.011301999,0.004875944,205.5437694,151.59555,80.434836,2.376253746,0,31.6863495,0,0.265641628,12.05886359,78.04385253,147.3735423,26.62833442,24.8488996,5.141502,21690.95119,0.00432,0.028944,0.004374 +2170,11.65356045,0,0,0,5.633248648,0.097333333,0.131253333,3.209783787,0,0,0.036571765,0.59024,0.0064,57.82821333,0,2613.799147,602.0155623,643.3308301,0.640188,0.011162468,0.004815747,203.006192,149.724,79.44181333,2.34691728,0,31.29516,0,0.262362101,12.04310949,77.89509127,146.2062163,26.37688885,24.71992196,5.078026667,21438.14401,0.004266667,0.028586667,0.00432 +2171,11.50789094,0,0,0,5.583648872,0.096116667,0.129612667,3.169661489,0,0,0.036114618,0.582862,0.00632,57.10536067,0,2581.126657,599.5053248,639.4437702,0.63218565,0.011022937,0.00475555,200.4686146,147.85245,78.44879067,2.317580814,0,30.9039705,0,0.259082575,12.02735538,77.74633002,145.0388903,26.12544327,24.59094432,5.014551333,21185.33683,0.004213333,0.028229333,0.004266 +2172,11.36222144,0,0,0,5.534049097,0.0949,0.127972,3.129539192,0,0,0.035657471,0.575484,0.00624,56.382508,0,2548.454168,596.9950872,635.5567103,0.6241833,0.010883407,0.004695354,197.9310372,145.9809,77.455768,2.288244348,0,30.512781,0,0.255803049,12.01160127,77.59756877,143.8715643,25.8739977,24.46196668,4.951076,20932.52965,0.00416,0.027872,0.004212 +2173,11.21655193,0,0,0,5.484449322,0.093683333,0.126331333,3.089416895,0,0,0.035200324,0.568106,0.00616,55.65965533,0,2515.781679,594.4848496,631.6696504,0.61618095,0.010743876,0.004635157,195.3934598,144.10935,76.46274533,2.258907882,0,30.1215915,0,0.252523523,11.99584716,77.44880752,142.7042383,25.62255212,24.33298904,4.887600667,20679.72247,0.004106667,0.027514667,0.004158 +2174,11.07088243,0,0,0,5.434849546,0.092466667,0.124690667,3.049294597,0,0,0.034743177,0.560728,0.00608,54.93680267,0,2483.109189,591.9746121,627.7825905,0.6081786,0.010604345,0.00457496,192.8558824,142.2378,75.46972267,2.229571416,0,29.730402,0,0.249243996,11.98009305,77.30004626,141.5369123,25.37110654,24.2040114,4.824125333,20426.9153,0.004053333,0.027157333,0.004104 +2175,10.92521292,0,0,0,5.385249771,0.09125,0.12305,3.0091723,0,0,0.03428603,0.55335,0.006,54.21395,0,2450.4367,589.4643745,623.8955306,0.60017625,0.010464814,0.004514763,190.318305,140.36625,74.4767,2.20023495,0,29.3392125,0,0.24596447,11.96433894,77.15128501,140.3695863,25.11966097,24.07503376,4.76065,20174.10812,0.004,0.0268,0.00405 +2176,10.77954342,0,0,0,5.335649995,0.090033333,0.121409333,2.969050003,0,0,0.033828882,0.545972,0.00592,53.49109733,0,2417.764211,586.9541369,620.0084706,0.5921739,0.010325283,0.004454566,187.7807276,138.4947,73.48367733,2.170898484,0,28.948023,0,0.242684944,11.94858483,77.00252376,139.2022603,24.86821539,23.94605612,4.697174667,19921.30094,0.003946667,0.026442667,0.003996 +2177,10.63387391,0,0,0,5.28605022,0.088816667,0.119768667,2.928927705,0,0,0.033371735,0.538594,0.00584,52.76824467,0,2385.091721,584.4438993,616.1214107,0.58417155,0.010185752,0.004394369,185.2431502,136.62315,72.49065467,2.141562018,0,28.5568335,0,0.239405417,11.93283073,76.85376251,138.0349343,24.61676982,23.81707848,4.633699333,19668.49376,0.003893333,0.026085333,0.003942 +2178,10.4882044,0,0,0,5.236450444,0.0876,0.118128,2.888805408,0,0,0.032914588,0.531216,0.00576,52.045392,0,2352.419232,581.9336618,612.2343508,0.5761692,0.010046221,0.004334172,182.7055728,134.7516,71.497632,2.112225552,0,28.165644,0,0.236125891,11.91707662,76.70500125,136.8676083,24.36532424,23.68810084,4.570224,19415.68658,0.00384,0.025728,0.003888 +2179,10.3425349,0,0,0,5.186850669,0.086383333,0.116487333,2.848683111,0,0,0.032457441,0.523838,0.00568,51.32253933,0,2319.746743,579.4234242,608.3472909,0.56816685,0.009906691,0.004273976,180.1679954,132.88005,70.50460933,2.082889086,0,27.7744545,0,0.232846365,11.90132251,76.55624,135.7002823,24.11387866,23.5591232,4.506748667,19162.8794,0.003786667,0.025370667,0.003834 +2180,10.19686539,0,0,0,5.137250894,0.085166667,0.114846667,2.808560813,0,0,0.032000294,0.51646,0.0056,50.59968667,0,2287.074253,576.9131866,604.460231,0.5601645,0.00976716,0.004213779,177.630418,131.0085,69.51158667,2.05355262,0,27.383265,0,0.229566839,11.8855684,76.40747875,134.5329563,23.86243309,23.43014557,4.443273333,18910.07223,0.003733333,0.025013333,0.00378 +2181,10.05119589,0,0,0,5.087651118,0.08395,0.113206,2.768438516,0,0,0.031543147,0.509082,0.00552,49.876834,0,2254.401764,574.4029491,600.5731711,0.55216215,0.009627629,0.004153582,175.0928406,129.13695,68.518564,2.024216154,0,26.9920755,0,0.226287312,11.86981429,76.2587175,133.3656303,23.61098751,23.30116793,4.379798,18657.26505,0.00368,0.024656,0.003726 +2182,9.905526382,0,0,0,5.038051343,0.082733333,0.111565333,2.728316219,0,0,0.031086,0.501704,0.00544,49.15398133,0,2221.729275,571.8927115,596.6861112,0.5441598,0.009488098,0.004093385,172.5552632,127.2654,67.52554133,1.994879688,0,26.600886,0,0.223007786,11.85406018,76.10995624,132.1983043,23.35954194,23.17219029,4.316322667,18404.45787,0.003626667,0.024298667,0.003672 +2183,9.759856877,0,0,0,4.988451567,0.081516667,0.109924667,2.688193921,0,0,0.030628853,0.494326,0.00536,48.43112867,0,2189.056785,569.3824739,592.7990513,0.53615745,0.009348567,0.004033188,170.0176858,125.39385,66.53251867,1.965543222,0,26.2096965,0,0.21972826,11.83830607,75.96119499,131.0309782,23.10809636,23.04321265,4.252847333,18151.65069,0.003573333,0.023941333,0.003618 +2184,9.614187371,0,0,0,4.938851792,0.0803,0.108284,2.648071624,0,0,0.030171706,0.486948,0.00528,47.708276,0,2156.384296,566.8722363,588.9119914,0.5281551,0.009209036,0.003972991,167.4801084,123.5223,65.539496,1.936206756,0,25.818507,0,0.216448734,11.82255196,75.81243374,129.8636522,22.85665078,22.91423501,4.189372,17898.84351,0.00352,0.023584,0.003564 +2185,9.468517866,0,0,0,4.889252017,0.079083333,0.106643333,2.607949327,0,0,0.029714559,0.47957,0.0052,46.98542333,0,2123.711807,564.3619988,585.0249314,0.52015275,0.009069505,0.003912795,164.942531,121.65075,64.54647333,1.90687029,0,25.4273175,0,0.213169207,11.80679786,75.66367248,128.6963262,22.60520521,22.78525737,4.125896667,17646.03634,0.003466667,0.023226667,0.00351 +2186,9.32284836,0,0,0,4.839652241,0.077866667,0.105002667,2.567827029,0,0,0.029257412,0.472192,0.00512,46.26257067,0,2091.039317,561.8517612,581.1378715,0.5121504,0.008929975,0.003852598,162.4049536,119.7792,63.55345067,1.877533824,0,25.036128,0,0.209889681,11.79104375,75.51491123,127.5290002,22.35375963,22.65627973,4.062421333,17393.22916,0.003413333,0.022869333,0.003456 +2187,9.177178854,0,0,0,4.790052466,0.07665,0.103362,2.527704732,0,0,0.028800265,0.464814,0.00504,45.539718,0,2058.366828,559.3415236,577.2508116,0.50414805,0.008790444,0.003792401,159.8673762,117.90765,62.560428,1.848197358,0,24.6449385,0,0.206610155,11.77528964,75.36614998,126.3616742,22.10231406,22.52730209,3.998946,17140.42198,0.00336,0.022512,0.003402 +2188,9.031509349,0,0,0,4.74045269,0.075433333,0.101721333,2.487582435,0,0,0.028343118,0.457436,0.00496,44.81686533,0,2025.694339,556.8312861,573.3637517,0.4961457,0.008650913,0.003732204,157.3297988,116.0361,61.56740533,1.818860892,0,24.253749,0,0.203330629,11.75953553,75.21738873,125.1943482,21.85086848,22.39832445,3.935470667,16887.6148,0.003306667,0.022154667,0.003348 +2189,8.885839843,0,0,0,4.690852915,0.074216667,0.100080667,2.447460137,0,0,0.027885971,0.450058,0.00488,44.09401267,0,1993.021849,554.3210485,569.4766918,0.48814335,0.008511382,0.003672007,154.7922214,114.16455,60.57438267,1.789524426,0,23.8625595,0,0.200051102,11.74378142,75.06862747,124.0270222,21.5994229,22.26934681,3.871995333,16634.80762,0.003253333,0.021797333,0.003294 +2190,8.740170337,0,0,0,4.641253139,0.073,0.09844,2.40733784,0,0,0.027428824,0.44268,0.0048,43.37116,0,1960.34936,551.8108109,565.5896319,0.480141,0.008371851,0.00361181,152.254644,112.293,59.58136,1.76018796,0,23.47137,0,0.196771576,11.72802731,74.91986622,122.8596962,21.34797733,22.14036917,3.80852,16382.00045,0.0032,0.02144,0.00324 +2191,8.594500832,0,0,0,4.591653364,0.071783333,0.096799333,2.367215543,0,0,0.026971677,0.435302,0.00472,42.64830733,0,1927.676871,549.3005734,561.702572,0.47213865,0.00823232,0.003551614,149.7170666,110.42145,58.58833733,1.730851494,0,23.0801805,0,0.19349205,11.7122732,74.77110497,121.6923702,21.09653175,22.01139153,3.745044667,16129.19327,0.003146667,0.021082667,0.003186 +2192,8.448831326,0,0,0,4.542053589,0.070566667,0.095158667,2.327093245,0,0,0.026514529,0.427924,0.00464,41.92545467,0,1895.004381,546.7903358,557.8155121,0.4641363,0.008092789,0.003491417,147.1794892,108.5499,57.59531467,1.701515028,0,22.688991,0,0.190212523,11.69651909,74.62234372,120.5250442,20.84508617,21.8824139,3.681569333,15876.38609,0.003093333,0.020725333,0.003132 +2193,8.303161821,0,0,0,4.492453813,0.06935,0.093518,2.286970948,0,0,0.026057382,0.420546,0.00456,41.202602,0,1862.331892,544.2800982,553.9284521,0.45613395,0.007953259,0.00343122,144.6419118,106.67835,56.602292,1.672178562,0,22.2978015,0,0.186932997,11.68076499,74.47358246,119.3577182,20.5936406,21.75343626,3.618094,15623.57891,0.00304,0.020368,0.003078 +2194,8.157492315,0,0,0,4.442854038,0.068133333,0.091877333,2.246848651,0,0,0.025600235,0.413168,0.00448,40.47974933,0,1829.659403,541.7698606,550.0413922,0.4481316,0.007813728,0.003371023,142.1043344,104.8068,55.60926933,1.642842096,0,21.906612,0,0.183653471,11.66501088,74.32482121,118.1903922,20.34219502,21.62445862,3.554618667,15370.77173,0.002986667,0.020010667,0.003024 +2195,8.011822809,0,0,0,4.393254262,0.066916667,0.090236667,2.206726353,0,0,0.025143088,0.40579,0.0044,39.75689667,0,1796.986913,539.2596231,546.1543323,0.44012925,0.007674197,0.003310826,139.566757,102.93525,54.61624667,1.61350563,0,21.5154225,0,0.180373945,11.64925677,74.17605996,117.0230662,20.09074945,21.49548098,3.491143333,15117.96456,0.002933333,0.019653333,0.00297 +2196,7.866153304,0,0,0,4.343654487,0.0657,0.088596,2.166604056,0,0,0.024685941,0.398412,0.00432,39.034044,0,1764.314424,536.7493855,542.2672724,0.4321269,0.007534666,0.003250629,137.0291796,101.0637,53.623224,1.584169164,0,21.124233,0,0.177094418,11.63350266,74.02729871,115.8557402,19.83930387,21.36650334,3.427668,14865.15738,0.00288,0.019296,0.002916 +2197,7.720483798,0,0,0,4.294054711,0.064483333,0.086955333,2.126481759,0,0,0.024228794,0.391034,0.00424,38.31119133,0,1731.641935,534.2391479,538.3802125,0.42412455,0.007395135,0.003190433,134.4916022,99.19215,52.63020133,1.554832698,0,20.7330435,0,0.173814892,11.61774855,73.87853745,114.6884142,19.58785829,21.2375257,3.364192667,14612.3502,0.002826667,0.018938667,0.002862 +2198,7.574814292,0,0,0,4.244454936,0.063266667,0.085314667,2.086359461,0,0,0.023771647,0.383656,0.00416,37.58833867,0,1698.969445,531.7289104,534.4931526,0.4161222,0.007255604,0.003130236,131.9540248,97.3206,51.63717867,1.525496232,0,20.341854,0,0.170535366,11.60199444,73.7297762,113.5210882,19.33641272,21.10854806,3.300717333,14359.54302,0.002773333,0.018581333,0.002808 +2199,7.429144787,0,0,0,4.194855161,0.06205,0.083674,2.046237164,0,0,0.0233145,0.376278,0.00408,36.865486,0,1666.296956,529.2186728,530.6060927,0.40811985,0.007116074,0.003070039,129.4164474,95.44905,50.644156,1.496159766,0,19.9506645,0,0.16725584,11.58624033,73.58101495,112.3537622,19.08496714,20.97957042,3.237242,14106.73584,0.00272,0.018224,0.002754 +2200,7.283475281,0,0,0,4.145255385,0.060833333,0.082033333,2.006114867,0,0,0.022857353,0.3689,0.004,36.14263333,0,1633.624467,526.7084352,526.7190328,0.4001175,0.006976543,0.003009842,126.87887,93.5775,49.65113333,1.4668233,0,19.559475,0,0.163976313,11.57048622,73.4322537,111.1864362,18.83352157,20.85059278,3.173766667,13853.92866,0.002666667,0.017866667,0.0027 +2201,7.137805776,0,0,0,4.09565561,0.059616667,0.080392667,1.965992569,0,0,0.022400206,0.361522,0.00392,35.41978067,0,1600.951977,524.1981976,522.8319728,0.39211515,0.006837012,0.002949645,124.3412926,91.70595,48.65811067,1.437486834,0,19.1682855,0,0.160696787,11.55473212,73.28349244,110.0191102,18.58207599,20.72161514,3.110291333,13601.12149,0.002613333,0.017509333,0.002646 +2202,6.99213627,0,0,0,4.046055834,0.0584,0.078752,1.925870272,0,0,0.021943059,0.354144,0.00384,34.696928,0,1568.279488,521.6879601,518.9449129,0.3841128,0.006697481,0.002889448,121.8037152,89.8344,47.665088,1.408150368,0,18.777096,0,0.157417261,11.53897801,73.13473119,108.8517842,18.33063041,20.5926375,3.046816,13348.31431,0.00256,0.017152,0.002592 +2203,6.846466764,0,0,0,3.996456059,0.057183333,0.077111333,1.885747975,0,0,0.021485912,0.346766,0.00376,33.97407533,0,1535.606999,519.1777225,515.057853,0.37611045,0.00655795,0.002829251,119.2661378,87.96285,46.67206533,1.378813902,0,18.3859065,0,0.154137735,11.5232239,72.98596994,107.6844582,18.07918484,20.46365986,2.983340667,13095.50713,0.002506667,0.016794667,0.002538 +2204,6.700797259,0,0,0,3.946856284,0.055966667,0.075470667,1.845625677,0,0,0.021028765,0.339388,0.00368,33.25122267,0,1502.934509,516.6674849,511.1707931,0.3681081,0.006418419,0.002769055,116.7285604,86.0913,45.67904267,1.349477436,0,17.994717,0,0.150858208,11.50746979,72.83720869,106.5171322,17.82773926,20.33468222,2.919865333,12842.69995,0.002453333,0.016437333,0.002484 +2205,6.555127753,0,0,0,3.897256508,0.05475,0.07383,1.80550338,0,0,0.020571618,0.33201,0.0036,32.52837,0,1470.26202,514.1572474,507.2837332,0.36010575,0.006278888,0.002708858,114.190983,84.21975,44.68602,1.32014097,0,17.6035275,0,0.147578682,11.49171568,72.68844743,105.3498062,17.57629369,20.20570459,2.85639,12589.89277,0.0024,0.01608,0.00243 +2206,6.409458247,0,0,0,3.847656733,0.053533333,0.072189333,1.765381083,0,0,0.020114471,0.324632,0.00352,31.80551733,0,1437.589531,511.6470098,503.3966733,0.3521034,0.006139358,0.002648661,111.6534056,82.3482,43.69299733,1.290804504,0,17.212338,0,0.144299156,11.47596157,72.53968618,104.1824802,17.32484811,20.07672695,2.792914667,12337.0856,0.002346667,0.015722667,0.002376 +2207,6.263788742,0,0,0,3.798056957,0.052316667,0.070548667,1.725258785,0,0,0.019657324,0.317254,0.00344,31.08266467,0,1404.917041,509.1367722,499.5096134,0.34410105,0.005999827,0.002588464,109.1158282,80.47665,42.69997467,1.261468038,0,16.8211485,0,0.141019629,11.46020746,72.39092493,103.0151542,17.07340253,19.94774931,2.729439333,12084.27842,0.002293333,0.015365333,0.002322 +2208,6.118119236,0,0,0,3.748457182,0.0511,0.068908,1.685136488,0,0,0.019200177,0.309876,0.00336,30.359812,0,1372.244552,506.6265346,495.6225535,0.3360987,0.005860296,0.002528267,106.5782508,78.6051,41.706952,1.232131572,0,16.429959,0,0.137740103,11.44445336,72.24216367,101.8478282,16.82195696,19.81877167,2.665964,11831.47124,0.00224,0.015008,0.002268 +2209,5.972449731,0,0,0,3.698857406,0.049883333,0.067267333,1.645014191,0,0,0.018743029,0.302498,0.00328,29.63695933,0,1339.572063,504.1162971,491.7354936,0.32809635,0.005720765,0.00246807,104.0406734,76.73355,40.71392933,1.202795106,0,16.0387695,0,0.134460577,11.42869925,72.09340242,100.6805022,16.57051138,19.68979403,2.602488667,11578.66406,0.002186667,0.014650667,0.002214 +2210,5.826780225,0,0,0,3.649257631,0.048666667,0.065626667,1.604891893,0,0,0.018285882,0.29512,0.0032,28.91410667,0,1306.899573,501.6060595,487.8484336,0.320094,0.005581234,0.002407874,101.503096,74.862,39.72090667,1.17345864,0,15.64758,0,0.131181051,11.41294514,71.94464117,99.51317624,16.31906581,19.56081639,2.539013333,11325.85688,0.002133333,0.014293333,0.00216 +2211,5.681110719,0,0,0,3.599657856,0.04745,0.063986,1.564769596,0,0,0.017828735,0.287742,0.00312,28.191254,0,1274.227084,499.0958219,483.9613737,0.31209165,0.005441703,0.002347677,98.9655186,72.99045,38.727884,1.144122174,0,15.2563905,0,0.127901524,11.39719103,71.79587992,98.34585024,16.06762023,19.43183875,2.475538,11073.04971,0.00208,0.013936,0.002106 +2212,5.535441214,0,0,0,3.55005808,0.046233333,0.062345333,1.524647299,0,0,0.017371588,0.280364,0.00304,27.46840133,0,1241.554595,496.5855844,480.0743138,0.3040893,0.005302172,0.00228748,96.4279412,71.1189,37.73486133,1.114785708,0,14.865201,0,0.124621998,11.38143692,71.64711866,97.17852424,15.81617465,19.30286111,2.412062667,10820.24253,0.002026667,0.013578667,0.002052 +2213,5.389771708,0,0,0,3.500458305,0.045016667,0.060704667,1.484525001,0,0,0.016914441,0.272986,0.00296,26.74554867,0,1208.882105,494.0753468,476.1872539,0.29608695,0.005162642,0.002227283,93.8903638,69.24735,36.74183867,1.085449242,0,14.4740115,0,0.121342472,11.36568281,71.49835741,96.01119824,15.56472908,19.17388347,2.348587333,10567.43535,0.001973333,0.013221333,0.001998 +2214,5.244102202,0,0,0,3.450858529,0.0438,0.059064,1.444402704,0,0,0.016457294,0.265608,0.00288,26.022696,0,1176.209616,491.5651092,472.300194,0.2880846,0.005023111,0.002167086,91.3527864,67.3758,35.748816,1.056112776,0,14.082822,0,0.118062946,11.3499287,71.34959616,94.84387224,15.3132835,19.04490583,2.285112,10314.62817,0.00192,0.012864,0.001944 +2215,5.098432697,0,0,0,3.401258754,0.042583333,0.057423333,1.404280407,0,0,0.016000147,0.25823,0.0028,25.29984333,0,1143.537127,489.0548717,468.4131341,0.28008225,0.00488358,0.002106889,88.815209,65.50425,34.75579333,1.02677631,0,13.6916325,0,0.114783419,11.33417459,71.20083491,93.67654624,15.06183793,18.91592819,2.221636667,10061.82099,0.001866667,0.012506667,0.00189 +2216,4.952763191,0,0,0,3.351658978,0.041366667,0.055782667,1.364158109,0,0,0.015543,0.250852,0.00272,24.57699067,0,1110.864637,486.5446341,464.5260742,0.2720799,0.004744049,0.002046693,86.2776316,63.6327,33.76277067,0.997439844,0,13.300443,0,0.111503893,11.31842049,71.05207365,92.50922024,14.81039235,18.78695055,2.158161333,9809.013815,0.001813333,0.012149333,0.001836 +2217,4.807093686,0,0,0,3.302059203,0.04015,0.054142,1.324035812,0,0,0.015085853,0.243474,0.00264,23.854138,0,1078.192148,484.0343965,460.6390143,0.26407755,0.004604518,0.001986496,83.7400542,61.76115,32.769748,0.968103378,0,12.9092535,0,0.108224367,11.30266638,70.9033124,91.34189423,14.55894677,18.65797291,2.094686,9556.206637,0.00176,0.011792,0.001782 +2218,4.66142418,0,0,0,3.252459428,0.038933333,0.052501333,1.283913515,0,0,0.014628706,0.236096,0.00256,23.13128533,0,1045.519659,481.5241589,456.7519543,0.2560752,0.004464987,0.001926299,81.2024768,59.8896,31.77672533,0.938766912,0,12.518064,0,0.104944841,11.28691227,70.75455115,90.17456823,14.3075012,18.52899528,2.031210667,9303.399459,0.001706667,0.011434667,0.001728 +2219,4.515754674,0,0,0,3.202859652,0.037716667,0.050860667,1.243791217,0,0,0.014171559,0.228718,0.00248,22.40843267,0,1012.847169,479.0139214,452.8648944,0.24807285,0.004325456,0.001866102,78.6648994,58.01805,30.78370267,0.909430446,0,12.1268745,0,0.101665314,11.27115816,70.6057899,89.00724223,14.05605562,18.40001764,1.967735333,9050.592281,0.001653333,0.011077333,0.001674 +2220,4.370085169,0,0,0,3.153259877,0.0365,0.04922,1.20366892,0,0,0.013714412,0.22134,0.0024,21.68558,0,980.17468,476.5036838,448.9778345,0.2400705,0.004185926,0.001805905,76.127322,56.1465,29.79068,0.88009398,0,11.735685,0,0.098385788,11.25540405,70.45702864,87.83991623,13.80461005,18.27104,1.90426,8797.785103,0.0016,0.01072,0.00162 +2221,4.224415663,0,0,0,3.103660101,0.035283333,0.047579333,1.163546623,0,0,0.013257265,0.213962,0.00232,20.96272733,0,947.5021907,473.9934462,445.0907746,0.23206815,0.004046395,0.001745708,73.5897446,54.27495,28.79765733,0.850757514,0,11.3444955,0,0.095106262,11.23964994,70.30826739,86.67259023,13.55316447,18.14206236,1.840784667,8544.977925,0.001546667,0.010362667,0.001566 +2222,4.078746157,0,0,0,3.054060326,0.034066667,0.045938667,1.123424325,0,0,0.012800118,0.206584,0.00224,20.23987467,0,914.8297013,471.4832087,441.2037147,0.2240658,0.003906864,0.001685512,71.0521672,52.4034,27.80463467,0.821421048,0,10.953306,0,0.091826735,11.22389583,70.15950614,85.50526423,13.30171889,18.01308472,1.777309333,8292.170746,0.001493333,0.010005333,0.001512 +2223,3.933076652,0,0,0,3.004460551,0.03285,0.044298,1.083302028,0,0,0.012342971,0.199206,0.00216,19.517022,0,882.157212,468.9729711,437.3166548,0.21606345,0.003767333,0.001625315,68.5145898,50.53185,26.811612,0.792084582,0,10.5621165,0,0.088547209,11.20814172,70.01074489,84.33793823,13.05027332,17.88410708,1.713834,8039.363568,0.00144,0.009648,0.001458 +2224,3.787407146,0,0,0,2.954860775,0.031633333,0.042657333,1.043179731,0,0,0.011885824,0.191828,0.00208,18.79416933,0,849.4847227,466.4627335,433.4295949,0.2080611,0.003627802,0.001565118,65.9770124,48.6603,25.81858933,0.762748116,0,10.170927,0,0.085267683,11.19238762,69.86198363,83.17061223,12.79882774,17.75512944,1.650358667,7786.55639,0.001386667,0.009290667,0.001404 +2225,3.641737641,0,0,0,2.905261,0.030416667,0.041016667,1.003057433,0,0,0.011428677,0.18445,0.002,18.07131667,0,816.8122333,463.9524959,429.542535,0.20005875,0.003488271,0.001504921,63.439435,46.78875,24.82556667,0.73341165,0,9.7797375,0,0.081988157,11.17663351,69.71322238,82.00328623,12.54738217,17.6261518,1.586883333,7533.749212,0.001333333,0.008933333,0.00135 +2226,3.496068135,0,0,0,2.855661224,0.0292,0.039376,0.962935136,0,0,0.010971529,0.177072,0.00192,17.348464,0,784.139744,461.4422584,425.655475,0.1920564,0.00334874,0.001444724,60.9018576,44.9172,23.832544,0.704075184,0,9.388548,0,0.07870863,11.1608794,69.56446113,80.83596023,12.29593659,17.49717416,1.523408,7280.942034,0.00128,0.008576,0.001296 +2227,3.350398629,0,0,0,2.806061449,0.027983333,0.037735333,0.922812839,0,0,0.010514382,0.169694,0.00184,16.62561133,0,751.4672547,458.9320208,421.7684151,0.18405405,0.00320921,0.001384527,58.3642802,43.04565,22.83952133,0.674738718,0,8.9973585,0,0.075429104,11.14512529,69.41569987,79.66863423,12.04449101,17.36819652,1.459932667,7028.134856,0.001226667,0.008218667,0.001242 +2228,3.204729124,0,0,0,2.756461673,0.026766667,0.036094667,0.882690541,0,0,0.010057235,0.162316,0.00176,15.90275867,0,718.7947653,456.4217832,417.8813552,0.1760517,0.003069679,0.00132433,55.8267028,41.1741,21.84649867,0.645402252,0,8.606169,0,0.072149578,11.12937118,69.26693862,78.50130823,11.79304544,17.23921888,1.396457333,6775.327678,0.001173333,0.007861333,0.001188 +2229,3.059059618,0,0,0,2.706861898,0.02555,0.034454,0.842568244,0,0,0.009600088,0.154938,0.00168,15.179906,0,686.122276,453.9115457,413.9942953,0.16804935,0.002930148,0.001264134,53.2891254,39.30255,20.853476,0.616065786,0,8.2149795,0,0.068870052,11.11361707,69.11817737,77.33398223,11.54159986,17.11024124,1.332982,6522.5205,0.00112,0.007504,0.001134 +2230,2.913390112,0,0,0,2.657262123,0.024333333,0.032813333,0.802445947,0,0,0.009142941,0.14756,0.0016,14.45705333,0,653.4497867,451.4013081,410.1072354,0.160047,0.002790617,0.001203937,50.751548,37.431,19.86045333,0.58672932,0,7.82379,0,0.065590525,11.09786296,68.96941612,76.16665623,11.29015429,16.9812636,1.269506667,6269.713322,0.001066667,0.007146667,0.00108 +2231,2.767720607,0,0,0,2.607662347,0.023116667,0.031172667,0.762323649,0,0,0.008685794,0.140182,0.00152,13.73420067,0,620.7772973,448.8910705,406.2201755,0.15204465,0.002651086,0.00114374,48.2139706,35.55945,18.86743067,0.557392854,0,7.4326005,0,0.062310999,11.08210885,68.82065486,74.99933023,11.03870871,16.85228597,1.206031333,6016.906144,0.001013333,0.006789333,0.001026 +2232,2.622051101,0,0,0,2.558062572,0.0219,0.029532,0.722201352,0,0,0.008228647,0.132804,0.00144,13.011348,0,588.104808,446.380833,402.3331156,0.1440423,0.002511555,0.001083543,45.6763932,33.6879,17.874408,0.528056388,0,7.041411,0,0.059031473,11.06635475,68.67189361,73.83200423,10.78726313,16.72330833,1.142556,5764.098965,9.60E-04,0.006432,9.72E-04 +2233,2.476381596,0,0,0,2.508462796,0.020683333,0.027891333,0.682079055,0,0,0.0077715,0.125426,0.00136,12.28849533,0,555.4323187,443.8705954,398.4460557,0.13603995,0.002372025,0.001023346,43.1388158,31.81635,16.88138533,0.498719922,0,6.6502215,0,0.055751947,11.05060064,68.52313236,72.66467823,10.53581756,16.59433069,1.079080667,5511.291787,9.07E-04,0.006074667,9.18E-04 +2234,2.33071209,0,0,0,2.458863021,0.019466667,0.026250667,0.641956757,0,0,0.007314353,0.118048,0.00128,11.56564267,0,522.7598293,441.3603578,394.5589957,0.1280376,0.002232494,9.63E-04,40.6012384,29.9448,15.88836267,0.469383456,0,6.259032,0,0.05247242,11.03484653,68.37437111,71.49735223,10.28437198,16.46535305,1.015605333,5258.484609,8.53E-04,0.005717333,8.64E-04 +2235,2.185042584,0,0,0,2.409263245,0.01825,0.02461,0.60183446,0,0,0.006857206,0.11067,0.0012,10.84279,0,490.08734,438.8501202,390.6719358,0.12003525,0.002092963,9.03E-04,38.063661,28.07325,14.89534,0.44004699,0,5.8678425,0,0.049192894,11.01909242,68.22560985,70.33002623,10.03292641,16.33637541,0.95213,5005.677431,8.00E-04,0.00536,8.10E-04 +2236,2.039373079,0,0,0,2.35966347,0.017033333,0.022969333,0.561712163,0,0,0.006400059,0.103292,0.00112,10.11993733,0,457.4148507,436.3398827,386.7848759,0.1120329,0.001953432,8.43E-04,35.5260836,26.2017,13.90231733,0.410710524,0,5.476653,0,0.045913368,11.00333831,68.0768486,69.16270023,9.78148083,16.20739777,0.888654667,4752.870253,7.47E-04,0.005002667,7.56E-04 +2237,1.893703573,0,0,0,2.310063695,0.015816667,0.021328667,0.521589865,0,0,0.005942912,0.095914,0.00104,9.397084667,0,424.7423613,433.8296451,382.897816,0.10403055,0.001813901,7.83E-04,32.9885062,24.33015,12.90929467,0.381374058,0,5.0854635,0,0.042633841,10.9875842,67.92808735,67.99537423,9.530035254,16.07842013,0.825179333,4500.063075,6.93E-04,0.004645333,7.02E-04 +2238,1.748034067,0,0,0,2.260463919,0.0146,0.019688,0.481467568,0,0,0.005485765,0.088536,9.60E-04,8.674232,0,392.069872,431.3194075,379.0107561,0.0960282,0.00167437,7.22E-04,30.4509288,22.4586,11.916272,0.352037592,0,4.694274,0,0.039354315,10.97183009,67.7793261,66.82804823,9.278589678,15.94944249,0.761704,4247.255897,6.40E-04,0.004288,6.48E-04 +2239,1.602364562,0,0,0,2.210864144,0.013383333,0.018047333,0.441345271,0,0,0.005028618,0.081158,8.80E-04,7.951379333,0,359.3973827,428.80917,375.1236962,0.08802585,0.001534839,6.62E-04,27.9133514,20.58705,10.92324933,0.322701126,0,4.3030845,0,0.036074789,10.95607599,67.63056484,65.66072223,9.027144102,15.82046485,0.698228667,3994.448719,5.87E-04,0.003930667,5.94E-04 +2240,1.456695056,0,0,0,2.161264368,0.012166667,0.016406667,0.401222973,0,0,0.004571471,0.07378,8.00E-04,7.228526667,0,326.7248933,426.2989324,371.2366363,0.0800235,0.001395309,6.02E-04,25.375774,18.7155,9.930226667,0.29336466,0,3.911895,0,0.032795263,10.94032188,67.48180359,64.49339622,8.775698526,15.69148721,0.634753333,3741.641541,5.33E-04,0.003573333,5.40E-04 +2241,1.311025551,0,0,0,2.111664593,0.01095,0.014766,0.361100676,0,0,0.004114324,0.066402,7.20E-04,6.505674,0,294.052404,423.7886948,367.3495764,0.07202115,0.001255778,5.42E-04,22.8381966,16.84395,8.937204,0.264028194,0,3.5207055,0,0.029515736,10.92456777,67.33304234,63.32607022,8.52425295,15.56250957,0.571278,3488.834363,4.80E-04,0.003216,4.86E-04 +2242,1.165356045,0,0,0,2.062064818,0.009733333,0.013125333,0.320978379,0,0,0.003657176,0.059024,6.40E-04,5.782821333,0,261.3799147,421.2784572,363.4625165,0.0640188,0.001116247,4.82E-04,20.3006192,14.9724,7.944181333,0.234691728,0,3.129516,0,0.02623621,10.90881366,67.18428109,62.15874422,8.272807374,15.43353193,0.507802667,3236.027184,4.27E-04,0.002858667,4.32E-04 +2243,1.019686539,0,0,0,2.012465042,0.008516667,0.011484667,0.280856081,0,0,0.003200029,0.051646,5.60E-04,5.059968667,0,228.7074253,418.7682197,359.5754565,0.05601645,9.77E-04,4.21E-04,17.7630418,13.10085,6.951158667,0.205355262,0,2.7383265,0,0.022956684,10.89305955,67.03551983,60.99141822,8.021361798,15.30455429,0.444327333,2983.220006,3.73E-04,0.002501333,3.78E-04 +2244,0.874017034,0,0,0,1.962865267,0.0073,0.009844,0.240733784,0,0,0.002742882,0.044268,4.80E-04,4.337116,0,196.034936,416.2579821,355.6883966,0.0480141,8.37E-04,3.61E-04,15.2254644,11.2293,5.958136,0.176018796,0,2.347137,0,0.019677158,10.87730544,66.88675858,59.82409222,7.769916221,15.17557666,0.380852,2730.412828,3.20E-04,0.002144,3.24E-04 +2245,0.728347528,0,0,0,1.913265491,0.006083333,0.008203333,0.200611487,0,0,0.002285735,0.03689,4.00E-04,3.614263333,0,163.3624467,413.7477445,351.8013367,0.04001175,6.98E-04,3.01E-04,12.687887,9.35775,4.965113333,0.14668233,0,1.9559475,0,0.016397631,10.86155133,66.73799733,58.65676622,7.518470645,15.04659902,0.317376667,2477.60565,2.67E-04,0.001786667,2.70E-04 +2246,0.582678022,0,0,0,1.863665716,0.004866667,0.006562667,0.160489189,0,0,0.001828588,0.029512,3.20E-04,2.891410667,0,130.6899573,411.237507,347.9142768,0.0320094,5.58E-04,2.41E-04,10.1503096,7.4862,3.972090667,0.117345864,0,1.564758,0,0.013118105,10.84579722,66.58923608,57.48944022,7.267025069,14.91762138,0.253901333,2224.798472,2.13E-04,0.001429333,2.16E-04 +2247,0.437008517,0,0,0,1.81406594,0.00365,0.004922,0.120366892,0,0,0.001371441,0.022134,2.40E-04,2.168558,0,98.017468,408.7272694,344.0272169,0.02400705,4.19E-04,1.81E-04,7.6127322,5.61465,2.979068,0.088009398,0,1.1735685,0,0.009838579,10.83004312,66.44047482,56.32211422,7.015579493,14.78864374,0.190426,1971.991294,1.60E-04,0.001072,1.62E-04 +2248,0.291339011,0,0,0,1.764466165,0.002433333,0.003281333,0.080244595,0,0,9.14E-04,0.014756,1.60E-04,1.445705333,0,65.34497867,406.2170318,340.140157,0.0160047,2.79E-04,1.20E-04,5.0751548,3.7431,1.986045333,0.058672932,0,0.782379,0,0.006559053,10.81428901,66.29171357,55.15478822,6.764133917,14.6596661,0.126950667,1719.184116,1.07E-04,7.15E-04,1.08E-04 +2249,0.145669506,0,0,0,1.71486639,0.001216667,0.001640667,0.040122297,0,0,4.57E-04,0.007378,8.00E-05,0.722852667,0,32.67248933,403.7067942,336.2530971,0.00800235,1.40E-04,6.02E-05,2.5375774,1.87155,0.993022667,0.029336466,0,0.3911895,0,0.003279526,10.7985349,66.14295232,53.98746222,6.512688341,14.53068846,0.063475333,1466.376938,5.33E-05,3.57E-04,5.40E-05 +2250,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2251,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2252,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2253,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2254,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2255,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2256,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2257,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2258,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2259,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2260,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2261,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2262,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2263,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2264,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2265,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2266,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2267,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2268,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2269,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2270,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2271,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2272,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2273,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2274,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2275,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2276,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2277,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2278,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2279,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2280,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2281,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2282,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2283,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2284,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2285,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2286,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2287,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2288,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2289,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2290,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2291,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2292,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2293,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2294,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2295,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2296,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2297,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2298,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2299,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 +2300,0,0,0,0,1.665266614,0,0,0,0,0,0,0,0,0,0,0,401.1965567,332.3660372,0,0,0,0,0,0,0,0,0,0,0,10.78278079,65.99419106,52.82013622,6.261242765,14.40171082,0,1213.56976,0,0,0 diff --git a/inst/shinyApp/www/inputs/ssp434_emissions.csv b/inst/shinyApp/www/inputs/ssp434_emissions.csv new file mode 100644 index 0000000..3db95a1 --- /dev/null +++ b/inst/shinyApp/www/inputs/ssp434_emissions.csv @@ -0,0 +1,562 @@ +; ssp434 from rcmip,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; hectordata 0.0.0.9000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; commit dab9aad8750535b,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; date Fri Nov 4 11:35:31 2022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; UNITS:,Pg C/yr,Pg C/yr,Pg C/yr,Pg C/yr,Tg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg CH4,Tg CO,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg N,Tg,Tg NMVOC,Tg N,Tg,Gg,Gg S,Gg,Gg,Gg +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_emissions,CCl4_emissions,CF4_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CFC11_emissions,CFC12_emissions,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_emissions,CH4_emissions,CO_emissions,HCFC141b_emissions,HCFC142b_emissions,HCFC22_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC23_emissions,HFC245fa_emissions,HFC32_emissions,HFC4310_emissions,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,SF6_emissions,SO2_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions +1745,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1746,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1747,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1748,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1749,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1750,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1751,0.002594106,0.08266927,0,0,2.072925926,0,0.024856862,0.010071225,0,0,0,0,0,105.1072,0,4276.7685,18.91510887,343.9263672,0,0,0,0,0,0,0,0,0,0,0,0.055785796,6.860142185,59.08812628,3.833772936,15.18871674,0,1206.06818,0.007723273,0,0 +1752,0.002595208,0.084190146,0,0,2.064311933,0,0.024856862,0.010071225,0,0,0,0,0,105.12502,0,4277.7049,18.88971181,341.8090339,0,0,0,0,0,0,0,0,0,0,0,0.056839716,6.819482037,58.63199703,3.834371851,15.03447574,0,1200.427847,0.007723273,0,0 +1753,0.002595302,0.085739002,0,0,2.071950564,0,0.024856862,0.010071225,0,0,0,0,0,105.10373,0,4276.586,19.12137723,343.6754562,0,0,0,0,0,0,0,0,0,0,0,0.057913547,6.881438529,59.0263494,3.817794323,15.18254515,0,1207.227099,0.007723273,0,0 +1754,0.002596404,0.087316353,0,0,2.099349783,0,0.024856862,0.010071225,0,0,0,0,0,105.07356,0,4274.9998,19.50906107,349.8156252,0,0,0,0,0,0,0,0,0,0,0,0.059007665,7.015189224,60.26994517,3.847331337,15.55877305,0,1232.953114,0.007723273,0,0 +1755,0.002597506,0.088922722,0,0,2.099173165,0,0.024856862,0.010071225,0,0,0,0,0,105.09182,0,4275.9598,19.50045493,348.144668,0,0,0,0,0,0,0,0,0,0,0,0.060122454,6.943989043,59.82493372,3.886652888,15.35818253,0,1223.082685,0.007723273,0,0 +1756,0.00277509,0.090558644,0,0,2.068915407,0,0.024856862,0.010071225,0,0,0,0,0,105.08556,0,4275.6306,19.4625366,343.3231517,0,0,0,0,0,0,0,0,0,0,0,0.061258303,6.922711557,58.94682931,3.780146274,15.19577663,0,1211.479202,0.007723273,0,0 +1757,0.002776193,0.092224663,0,0,2.147923676,0,0.024856862,0.010071225,0,0,0,0,0,105.09137,0,4275.9361,20.02354066,355.9418923,0,0,0,0,0,0,0,0,0,0,0,0.062415611,7.047674129,61.263693,3.998436266,15.70481912,0,1255.688247,0.007723273,0,0 +1758,0.002777295,0.093921331,0,0,2.12061141,0,0.024856862,0.010071225,0,0,0,0,0,105.09662,0,4276.2118,19.93400533,351.839749,0,0,0,0,0,0,0,0,0,0,0,0.063594783,6.995459768,60.43461244,3.95160932,15.51461163,0,1241.80619,0.007723273,0,0 +1759,0.002778397,0.095649213,0,0,2.117267431,0,0.024856862,0.010071225,0,0,0,0,0,105.08372,0,4275.5338,20.14146621,351.5077627,0,0,0,0,0,0,0,0,0,0,0,0.064796232,7.045958325,60.44526305,3.882559461,15.57401349,0,1238.693446,0.007723273,0,0 +1760,0.002778491,0.097408883,0,0,2.127804105,0,0.024856862,0.010071225,0,0,0,0,0,105.04022,0,4273.2473,20.41679714,354.4182853,0,0,0,0,0,0,0,0,0,0,0,0.06602038,7.128048286,61.05172479,3.870426966,15.81906393,0,1250.820917,0.007723273,0,0 +1761,0.0030418,0.099200926,0,0,2.137756989,0,0.024856862,0.010071225,0,0,0,0,0,105.09143,0,4275.9395,20.45599017,354.7079679,0,0,0,0,0,0,0,0,0,0,0,0.067267654,7.080969808,60.9842272,3.947785545,15.69191588,0,1256.548122,0.007723273,0,0 +1762,0.003042907,0.101025937,0,0,2.101748109,0,0.024856862,0.010071225,0,0,0,0,0,105.08127,0,4275.4052,20.45168738,349.2496972,0,0,0,0,0,0,8.32E-08,0,0,1.51E-06,0,0.068538493,7.072547337,60.02708933,3.805606722,15.52593531,0,1235.176016,0.007723273,0,0 +1763,0.003044015,0.102884523,0,0,2.107029758,0,0.024856862,0.010071225,0,0,0,0,0,105.09332,0,4276.0386,20.54517934,350.0593349,0,0,0,0,0,0,6.68E-07,0,0,1.24E-05,0,0.06983334,7.067982584,60.12706627,3.846149431,15.52676249,0,1242.431334,0.007723273,0,0 +1764,0.003045122,0.104777302,0,0,2.071549227,0,0.024856862,0.010071225,0,0,0,0,0,105.1104,0,4276.9364,20.26091721,342.0446107,0,0,0,0,0,0,1.27E-06,0,0,2.50E-05,0,0.07115265,6.89874574,58.43835717,3.829003368,14.95869898,0,1212.823098,0.007723273,0,0 +1765,0.003046229,0.106704903,0,0,2.123600022,0,0.024856862,0.010071225,0,0,0,0,0,105.07293,0,4274.9668,20.919155,352.9327258,0,0,0,0,0,0,1.39E-06,0,0,3.03E-05,0,0.072496884,7.112382325,60.62945786,3.878155223,15.67992411,0,1250.725203,0.007723273,0,0 +1766,0.003396267,0.108667966,0,0,2.110459977,0,0.024856862,0.010071225,0,0,0,0,0,105.07758,0,4275.2111,20.8535919,349.380645,0,0,0,0,0,0,1.42E-06,0,0,3.44E-05,0,0.073866514,7.036296531,59.85878463,3.884852898,15.35883081,0,1244.142077,0.007723273,0,0 +1767,0.003397374,0.110667143,0,0,2.112460701,0,0.024856862,0.010071225,0,0,0,0,0,105.08566,0,4275.6359,20.99917946,349.616099,0,0,0,0,0,0,1.46E-06,0,0,3.84E-05,0,0.07526202,7.045382427,59.8910269,3.880476349,15.4005645,0,1243.308056,0.007723273,0,0 +1768,0.003398482,0.1127031,0,0,2.18313204,0,0.024856862,0.010071225,0,0,0,0,0,105.04673,0,4273.5893,21.65945211,362.6536848,0,0,0,0,0,0,1.49E-06,0,0,4.25E-05,0,0.07668389,7.223617821,62.36582555,4.039005154,16.0637302,0,1294.705423,0.007723273,0,0 +1769,0.003399589,0.114776512,0,0,2.137633742,0,0.024856862,0.010071225,0,0,0,0,0,105.0767,0,4275.165,21.49633535,355.0254185,0,0,0,0,0,0,1.53E-06,0,0,4.65E-05,0,0.078132622,7.157863703,60.95040361,3.914619863,15.73509479,0,1273.362221,0.007723273,0,0 +1770,0.003400696,0.116888069,0,0,2.139364739,0,0.024856862,0.010071225,0,0,0,0,0,105.04544,0,4273.5216,21.63439757,355.3605476,0,0,0,0,0,0,1.57E-06,0,0,5.06E-05,0,0.079608724,7.155978284,60.96602721,3.927122991,15.74271509,0,1277.49221,0.007723273,0,0 +1771,0.003768892,0.119038473,0,0,2.100909701,0,0.024856862,0.010071225,0,0,0,0,0,105.07227,0,4274.9318,21.4289211,347.8619883,0,0,0,0,0,0,1.60E-06,0,0,5.47E-05,0,0.081112713,7.069218405,59.42424033,3.843192573,15.32197739,0,1230.128239,0.007723273,0,0 +1772,0.003770005,0.121228438,0,0,2.087077541,0,0.024856862,0.010071225,0,0,0,0,0,105.08887,0,4275.8046,21.39461572,344.6134738,0,0,0,0,0,0,1.64E-06,0,0,5.87E-05,0,0.082645116,7.043230562,58.72495295,3.812980037,15.11418329,0,1217.836348,0.007723273,0,0 +1773,0.003771118,0.123458692,0,0,2.092755603,0,0.024856862,0.010071225,0,0,0,0,0,105.06952,0,4274.7874,21.59523139,345.7768091,0,0,0,0,0,0,1.67E-06,0,0,6.28E-05,0,0.084206469,7.104503735,58.91656885,3.795742519,15.20466379,0,1220.686645,0.007723273,0,0 +1774,0.003772231,0.125729977,0,0,2.154900741,0,0.024856862,0.010071225,0,0,0,0,0,105.0265,0,4272.5262,22.25970773,358.103585,0,0,0,0,0,0,1.71E-06,0,0,6.68E-05,0,0.08579732,7.347701469,61.31335787,3.892106055,15.87559318,0,1266.428616,0.007723273,0,0 +1775,0.003773344,0.128043046,0,0,2.148996597,0,0.024856862,0.010071225,0,0,0,0,0,105.05246,0,4273.8905,22.20096329,355.0471729,0,0,0,0,0,0,1.75E-06,0,0,7.09E-05,0,0.087418226,7.26964482,60.54083046,3.918102925,15.5891357,0,1250.604504,0.007723273,0,0 +1776,0.004161709,0.13039867,0,0,2.112143132,0,0.024856862,0.010071225,0,0,0,0,0,105.03944,0,4273.2061,22.14194213,348.8985525,0,0,0,0,0,0,1.78E-06,0,0,7.49E-05,0,0.089069754,7.261469977,59.3811448,3.777483547,15.37007702,0,1235.260121,0.007723273,0,0 +1777,0.004162822,0.132797629,0,0,2.170244784,0,0.024856862,0.010071225,0,0,0,0,0,105.05273,0,4273.9048,22.56871006,357.545361,0,0,0,0,0,0,1.82E-06,0,0,7.90E-05,0,0.090752483,7.355973763,60.89349007,3.937981414,15.67345753,0,1262.643552,0.007723273,0,0 +1778,0.004163935,0.135240723,0,0,2.198001402,0,0.024856862,0.010071225,0,0,0,0,0,105.04465,0,4273.48,22.85608093,362.7554135,0,0,0,0,0,0,1.85E-06,0,0,8.30E-05,0,0.092467003,7.434606067,61.78348695,4.021077007,15.89945625,0,1282.280293,0.007723273,0,0 +1779,0.004165048,0.137728763,0,0,2.159615777,0,0.024856862,0.010071225,0,0,0,0,0,105.03691,0,4273.0734,22.82063569,355.9261715,0,0,0,0,0,0,1.89E-06,0,0,8.71E-05,0,0.094213914,7.418773457,60.50081488,3.865645204,15.62745786,0,1253.809198,0.007723273,0,0 +1780,0.00416717,0.140262576,0,0,2.189267588,0,0.024856862,0.010071225,0,0,0,0,0,104.98817,0,4270.511,23.24616665,361.6140422,0,0,0,0,0,0,1.92E-06,0,0,9.10E-05,0,0.095993828,7.569429121,61.61859566,3.871147964,16.0183808,0,1274.797709,0.007723273,0,0 +1781,0.004659413,0.142843003,0,0,2.1894412,0,0.024856862,0.010071225,0,0,0,0,0,105.04236,0,4273.3596,23.24965548,360.0900539,0,0,0,0,0,0,1.96E-06,0,0,9.52E-05,0,0.097807369,7.505783353,61.19330647,3.920723923,15.80695227,0,1277.536252,0.007723273,0,0 +1782,0.004660532,0.145470903,0,0,2.160522701,0,0.024856862,0.010071225,0,0,0,0,0,105.03125,0,4272.7759,23.34175812,356.0465546,0,0,0,0,0,0,2.00E-06,0,0,9.92E-05,0,0.099655171,7.519625788,60.48572145,3.793838185,15.71282083,0,1261.050876,0.007723273,0,0 +1783,0.004662661,0.148147149,0,0,2.15072559,0,0.024856862,0.010071225,0,0,0,0,0,105.0436,0,4273.4248,23.37991679,354.2869243,0,0,0,0,0,0,2.03E-06,0,0,1.03E-04,0,0.101537883,7.496232273,60.10171272,3.788738178,15.60726047,0,1258.691216,0.007723273,0,0 +1784,0.00466378,0.150872629,0,0,2.140542212,0,0.024856862,0.010071225,0,0,0,0,0,105.05531,0,4274.0405,23.2940423,350.5694963,0,0,0,0,0,0,2.07E-06,0,0,1.07E-04,0,0.103456163,7.3811564,59.21225989,3.835360348,15.22814126,0,1241.091384,0.007723273,0,0 +1785,0.004666993,0.153648251,0,0,2.165839691,0,0.024856862,0.010071225,0,0,0,0,0,105.02817,0,4272.6136,23.80210554,356.8051254,0,0,0,0,0,0,2.10E-06,0,0,1.11E-04,0,0.105410684,7.538152323,60.49447936,3.821649192,15.73271148,0,1266.56815,0.007723273,0,0 +1786,0.00529538,0.156474937,0,0,2.158683485,0,0.024856862,0.010071225,0,0,0,0,0,105.02684,0,4272.5442,23.831995,354.2058773,0,0,0,0,0,0,2.14E-06,0,0,1.15E-04,0,0.107402131,7.491084254,59.91468241,3.826316215,15.46715712,0,1263.905903,0.007723273,0,0 +1787,0.005297508,0.159353625,0,0,2.185179294,0,0.024856862,0.010071225,0,0,0,0,0,105.03415,0,4272.9283,24.17652818,358.7933683,0,0,0,0,0,0,2.18E-06,0,0,1.19E-04,0,0.1094312,7.55517197,60.75335708,3.885107996,15.71033146,0,1281.331419,0.007723273,0,0 +1788,0.005298627,0.162285272,0,0,2.255223484,0,0.024856862,0.010071225,0,0,0,0,0,104.9922,0,4270.7227,24.85592892,371.3570923,0,0,0,0,0,0,2.21E-06,0,0,1.23E-04,0,0.111498603,7.730934741,63.12433047,4.038519355,16.34335434,0,1326.080725,0.007723273,0,0 +1789,0.005300755,0.165270854,0,0,2.207664632,0,0.024856862,0.010071225,0,0,0,0,0,105.0242,0,4272.405,24.71707284,363.4416446,0,0,0,0,0,0,2.25E-06,0,0,1.28E-04,0,0.113605064,7.663516243,61.63229238,3.911091424,16.00040861,0,1300.935055,0.007723273,0,0 +1790,0.005302883,0.168311362,0,0,2.216436996,0,0.024856862,0.010071225,0,0,0,0,0,104.99139,0,4270.6805,24.94220857,364.8802164,0,0,0,0,0,0,2.28E-06,0,0,1.32E-04,0,0.115751321,7.680254371,61.84599181,3.937203207,16.05674391,0,1304.800481,0.007723273,0,0 +1791,0.005920183,0.171407806,0,0,2.172583556,0,0.024856862,0.010071225,0,0,0,0,0,105.02128,0,4272.2515,24.77843217,356.6583862,0,0,0,0,0,0,2.32E-06,0,0,1.36E-04,0,0.117938125,7.556943543,60.2187392,3.848117366,15.61644988,0,1284.768804,0.007723273,0,0 +1792,0.006098811,0.174561216,0,0,2.161650793,0,0.024856862,0.010071225,0,0,0,0,0,105.04466,0,4273.4807,24.81889294,354.2515376,0,0,0,0,0,0,2.36E-06,0,0,1.40E-04,0,0.120166243,7.499155045,59.70568574,3.852168551,15.44666919,0,1279.936623,0.007723273,0,0 +1793,0.006105082,0.17777264,0,0,2.153273834,0,0.024856862,0.010071225,0,0,0,0,0,105.02605,0,4272.5025,25.03153141,353.3723093,0,0,0,0,0,0,2.39E-06,0,0,1.44E-04,0,0.122436456,7.518120739,59.5849395,3.798134648,15.47797954,0,1276.675891,0.007723273,0,0 +1794,0.006092419,0.181043144,0,0,2.213843116,0,0.024856862,0.010071225,0,0,0,0,0,104.98417,0,4270.301,25.76753778,365.721914,0,0,0,0,0,0,2.43E-06,0,0,1.48E-04,0,0.124749558,7.731535991,62.03822453,3.901984421,16.16525997,0,1323.391544,0.007723273,0,0 +1795,0.006095933,0.184373817,0,0,2.202692273,0,0.024856862,0.010071225,0,0,0,0,0,105.01093,0,4271.7076,25.77334281,362.1921227,0,0,0,0,0,0,2.46E-06,0,0,1.52E-04,0,0.127106359,7.626169221,61.24273214,3.919106621,15.88313195,0,1307.117791,0.007723273,0,0 +1796,0.006396386,0.187765764,0,0,2.153154616,0,0.024856862,0.010071225,0,0,0,0,0,104.99978,0,4271.1214,25.74058407,354.4783029,0,0,0,0,0,0,2.50E-06,0,0,1.56E-04,0,0.129507686,7.581863097,59.86424243,3.749609514,15.6283698,0,1286.414837,0.007723273,0,0 +1797,0.006712627,0.191220113,0,0,2.213475036,0,0.024856862,0.010071225,0,0,0,0,0,105.01623,0,4271.986,26.23006226,363.5482372,0,0,0,0,0,0,2.54E-06,0,0,1.60E-04,0,0.131954379,7.636302582,61.47137695,3.940974102,15.93865305,0,1322.1792,0.007723273,0,0 +1798,0.006990649,0.194738012,0,0,2.234056283,0,0.024856862,0.010070485,0,0,0,0,0,105.0081,0,4271.559,26.54644012,367.6501028,0,0,0,0,0,0,2.57E-06,0,0,1.64E-04,0,0.134447296,7.671017716,62.19763903,4.015700361,16.12667274,0,1344.494311,0.007723273,0,0 +1799,0.007363034,0.198320631,0,0,2.207292165,0,0.024856862,0.010071964,0,0,0,0,0,104.99068,0,4270.6431,26.70648817,363.4860469,0,0,0,0,0,0,2.61E-06,0,0,1.68E-04,0,0.13698731,7.67446285,61.4962302,3.882903388,16.03734279,0,1332.732765,0.007723273,0,0 +1800,0.007853248,0.201969159,0,0,2.215974055,0,0.024856862,0.010071225,0,0,0,0,0,104.95838,0,4268.9449,27.05634308,365.8466368,0,0,0,0,0,0,2.64E-06,0,0,1.72E-04,0,0.13957531,7.740645322,62.00320914,3.867691465,16.2421417,0,1351.401885,0.007723273,0,0 +1801,0.007792363,0.20568481,0,0,2.21940169,0,0.024856862,0.010071225,0,0,0,0,0,105.01099,0,4271.7107,27.12488718,364.9170684,0,0,0,0,0,0,2.68E-06,0,0,1.76E-04,0,0.142212204,7.701186978,61.66564779,3.921843763,16.06373322,0,1346.312669,0.007723273,0,0 +1802,0.010116776,0.209468818,0,0,2.202692661,0,0.024856862,0.010071225,0,0,0,0,0,104.99468,0,4270.8532,27.33978432,362.9627075,0,0,0,0,0,0,2.72E-06,0,0,1.80E-04,0,0.144898914,7.763054085,61.32615659,3.814905719,16.07582361,0,1365.792459,0.007723273,0,0 +1803,0.008763958,0.213322441,0,0,2.180015828,0,0.024856862,0.010071225,0,0,0,0,0,105.0108,0,4271.7009,27.32049985,358.65078,0,0,0,0,0,0,2.75E-06,0,0,1.84E-04,0,0.147636382,7.720863757,60.40434182,3.773697199,15.83103088,0,1340.023262,0.007723273,0,0 +1804,0.00956559,0.21724696,0,0,2.197298087,0,0.024856862,0.010071225,0,0,0,0,0,105.0121,0,4271.7691,27.46474997,359.528696,0,0,0,0,0,0,2.79E-06,0,0,1.88E-04,0,0.150425568,7.68708673,60.36470275,3.871473305,15.67624811,0,1347.990682,0.007723273,0,0 +1805,0.009351564,0.221243678,0,0,2.215042398,0,0.024856862,0.010071225,0,0,0,0,0,104.98963,0,4270.588,27.9507982,364.3037043,0,0,0,0,0,0,2.82E-06,0,0,1.92E-04,0,0.153267447,7.835162209,61.31991146,3.843518327,16.0941548,0,1367.021932,0.007723273,0,0 +1806,0.009786482,0.225313924,0,0,2.222822585,0,0.024856862,0.010071225,0,0,0,0,0,104.98239,0,4270.2074,28.13437245,364.3432293,0,0,0,0,0,0,2.86E-06,0,0,1.96E-04,0,0.156163016,7.843541453,61.22344968,3.877012285,15.95144317,0,1370.297233,0.007723273,0,0 +1807,0.010470139,0.229459052,0,0,2.239871982,0,0.024856862,0.010071225,0,0,0,0,0,104.99423,0,4270.8298,28.45865603,367.2349328,0,0,0,0,0,0,2.90E-06,0,0,2.00E-04,0,0.159113289,7.906227329,61.70646914,3.906741383,16.11756408,0,1389.725529,0.007723273,0,0 +1808,0.009785087,0.233680437,0,0,2.311936484,0,0.024856862,0.010071225,0,0,0,0,0,104.95199,0,4268.6094,29.18524117,380.035272,0,0,0,0,0,0,2.93E-06,0,0,2.04E-04,0,0.162119299,8.095303457,64.08195973,4.070358273,16.7315469,0,1425.575123,0.007723273,0,0 +1809,0.009793704,0.237979484,0,0,2.26744264,0,0.024856862,0.010071225,0,0,0,0,0,104.979,0,4270.0292,29.12865813,372.8486855,0,0,0,0,0,0,2.97E-06,0,0,2.08E-04,0,0.1651821,8.062766978,62.71002213,3.940068496,16.44016599,0,1403.131587,0.007723273,0,0 +1810,0.010412685,0.242357621,0,0,2.279523716,0,0.024856862,0.010071225,0,0,0,0,0,104.93988,0,4267.9729,29.42453242,374.7180119,0,0,0,0,0,0,3.00E-06,0,0,2.12E-04,0,0.168302763,8.107079152,62.97351665,3.9615916,16.52538808,0,1414.194561,0.007723273,0,0 +1811,0.011014901,0.246816304,0,0,2.252530236,0,0.024856862,0.010071225,0,0,0,0,0,104.96903,0,4269.505,29.40578756,369.2694863,0,0,0,0,0,0,3.04E-06,0,0,2.17E-04,0,0.171482384,8.026948341,61.829606,3.9187457,16.18886557,0,1403.686743,0.007723273,0,0 +1812,0.011395912,0.251357013,0,0,2.228006935,0,0.024856862,0.010071225,0,0,0,0,0,104.99029,0,4270.6225,29.4202985,364.5806875,0,0,0,0,0,0,3.07E-06,0,0,2.21E-04,0,0.174722074,7.965169636,60.85746997,3.875988658,15.92905063,0,1394.884132,0.007723273,0,0 +1813,0.011449081,0.255981258,0,0,2.231996859,0,0.024856862,0.010071225,0,0,0,0,0,104.97005,0,4269.5589,29.77847603,365.9138874,0,0,0,0,0,0,3.11E-06,0,0,2.25E-04,0,0.178022969,8.032995952,61.1361302,3.844088557,16.06491504,0,1400.325553,0.007723273,0,0 +1814,0.011703716,0.260690576,0,0,2.291579691,0,0.024856862,0.010071225,0,0,0,0,0,104.93884,0,4267.9182,30.54785186,377.9855417,0,0,0,0,0,0,3.14E-06,0,0,2.29E-04,0,0.181386226,8.255365792,63.49192823,3.946873452,16.71992349,0,1449.11988,0.007723273,0,0 +1815,0.012094117,0.265486531,0,0,2.287324694,0,0.024856862,0.010071225,0,0,0,0,0,104.94955,0,4268.4808,30.64433954,375.5806648,0,0,0,0,0,0,3.18E-06,0,0,2.33E-04,0,0.184813022,8.178894558,62.8715757,3.977998266,16.48749688,0,1442.834604,0.007723273,0,0 +1816,0.013382563,0.270370719,0,0,2.261022,0,0.024856862,0.010071225,0,0,0,0,0,104.93504,0,4267.7184,30.79985622,371.6298228,0,0,0,0,0,0,3.22E-06,0,0,2.37E-04,0,0.188304559,8.188247477,62.14643252,3.866008445,16.39503385,0,1449.517631,0.007723273,0,0 +1817,0.013970106,0.275344761,0,0,2.296180569,0,0.024856862,0.010071225,0,0,0,0,0,104.95336,0,4268.6815,31.19839541,376.4429441,0,0,0,0,0,0,3.25E-06,0,0,2.41E-04,0,0.191862058,8.220825384,62.94153101,3.981202576,16.51722865,0,1472.005827,0.007723273,0,0 +1818,0.014054847,0.280410312,0,0,2.335490105,0,0.024856862,0.010071225,0,0,0,0,0,104.94012,0,4267.9855,31.68760832,383.9142096,0,0,0,0,0,0,3.29E-06,0,0,2.45E-04,0,0.195486767,8.306817108,64.26768049,4.109295846,16.84964888,0,1503.330753,0.007723273,0,0 +1819,0.01412101,0.285569054,0,0,2.304129482,0,0.024856862,0.010071225,0,0,0,0,0,104.92235,0,4267.0511,31.84544135,378.3325838,0,0,0,0,0,0,3.32E-06,0,0,2.49E-04,0,0.199179954,8.302878859,63.25758927,3.96351919,16.66519821,0,1480.397209,0.007723273,0,0 +1820,0.014336733,0.290822702,0,0,2.321048766,0,0.024856862,0.010071225,0,0,0,0,0,104.88909,0,4265.3029,32.33339467,382.4197483,0,0,0,0,0,0,3.36E-06,0,0,2.53E-04,0,0.202942914,8.416077975,64.0766433,3.958562233,16.96356441,0,1500.127423,0.007723273,0,0 +1821,0.014562069,0.296173002,0,0,2.333483777,0,0.024856862,0.010071225,0,0,0,0,0,104.93899,0,4267.9261,32.52138863,382.8975341,0,0,0,0,0,0,3.40E-06,0,0,2.57E-04,0,0.206776965,8.396299171,63.98744909,4.029731628,16.86010032,0,1506.00016,0.007723273,0,0 +1822,0.015133379,0.301621733,0,0,2.302515118,0,0.024856862,0.010071225,0,0,0,0,0,104.92104,0,4266.9822,32.73451052,378.6708004,0,0,0,0,0,0,3.43E-06,0,0,2.61E-04,0,0.21068345,8.447852069,63.22724653,3.871133523,16.79629808,0,1499.477254,0.007723273,0,0 +1823,0.016038149,0.307170704,0,0,2.282471765,0,0.024856862,0.010071225,0,0,0,0,0,104.94096,0,4268.0293,32.75571509,374.3931813,0,0,0,0,0,0,3.47E-06,0,0,2.65E-04,0,0.214663737,8.395261064,62.26076437,3.846052063,16.53271228,0,1499.604752,0.007723273,0,0 +1824,0.016501009,0.31282176,0,0,2.310947811,0,0.024856862,0.010071225,0,0,0,0,0,104.93425,0,4267.6765,33.0519787,377.0407114,0,0,0,0,0,0,3.50E-06,0,0,2.69E-04,0,0.218719221,8.395833943,62.5634338,3.956577313,16.47072526,0,1512.912552,0.007723273,0,0 +1825,0.017222663,0.318576779,0,0,2.322703112,0,0.024856862,0.010071225,0,0,0,0,0,104.91652,0,4266.7449,33.52533882,380.3167498,0,0,0,0,0,0,3.54E-06,0,0,2.73E-04,0,0.222851322,8.516236489,63.18578955,3.919068065,16.80867752,0,1538.203336,0.007723273,0,0 +1826,0.01738223,0.324437675,0,0,2.320968834,0,0.024856862,0.010071225,0,0,0,0,0,104.90841,0,4266.3186,33.7481029,378.8222655,0,0,0,0,0,0,3.57E-06,0,0,2.77E-04,0,0.227061488,8.523620414,62.81594151,3.911604483,16.62077908,0,1531.982813,0.007723273,0,0 +1827,0.018639877,0.330406393,0,0,2.346337782,0,0.024856862,0.010071225,0,0,0,0,0,104.91515,0,4266.6729,34.15505001,382.4773392,0,0,0,0,0,0,3.61E-06,0,0,2.81E-04,0,0.231351194,8.585850324,63.38999011,3.962793591,16.79991923,0,1566.092214,0.007723273,0,0 +1828,0.018824746,0.336484919,0,0,2.420774153,0,0.024856862,0.010071225,0,0,0,0,0,104.87222,0,4264.4159,34.99912851,395.9754325,0,0,0,0,0,0,3.64E-06,0,0,2.85E-04,0,0.235721941,8.801495947,65.90535949,4.116354977,17.4805645,0,1618.020723,0.007723273,0,0 +1829,0.018664196,0.342675273,0,0,2.379376332,0,0.024856862,0.010071225,0,0,0,0,0,104.90025,0,4265.8895,35.01640513,389.1746282,0,0,0,0,0,0,3.68E-06,0,0,2.89E-04,0,0.240175262,8.767229394,64.57289824,4.000350816,17.19408165,0,1597.238302,0.007723273,0,0 +1830,0.024933734,0.348979511,0,0,2.403159831,0,0.024856862,0.010071225,0,0,0,0,0,104.8667,0,4264.1256,35.40215534,392.1065329,0,0,0,0,0,0,3.72E-06,0,0,2.93E-04,0,0.244712716,8.818806446,64.94076179,4.03843029,17.31425157,0,1705.903254,0.007723273,0,0 +1831,0.023660178,0.355399729,0,0,2.361347125,0,0.024856862,0.010071225,0,0,0,0,0,104.89174,0,4265.442,35.37418705,384.2012507,0,0,0,0,0,0,3.75E-06,0,0,2.97E-04,0,0.249335894,8.731507392,63.33682174,3.947409453,16.87772867,0,1661.03313,0.007723273,0,0 +1832,0.023685925,0.36193806,0,0,2.353863299,0,0.024856862,0.010071225,0,0,0,0,0,104.90924,0,4266.362,35.56272349,382.363398,0,0,0,0,0,0,3.79E-06,0,0,3.01E-04,0,0.254046413,8.712430009,62.87089656,3.946175053,16.73898675,0,1660.610583,0.007723273,0,0 +1833,0.024226693,0.368596678,0,0,2.356959381,0,0.024856862,0.010070485,0,0,0,0,0,104.89175,0,4265.4426,35.98083111,383.4537928,0,0,0,0,0,0,3.82E-06,0,0,3.05E-04,0,0.258845925,8.790922957,63.0695837,3.905335594,16.86449692,0,1673.874936,0.007723273,0,0 +1834,0.024702586,0.375377795,0,0,2.412445466,0,0.024856862,0.010071964,0,0,0,0,0,104.854,0,4263.4584,36.76106097,394.1429023,0,0,0,0,0,0,3.86E-06,0,0,3.09E-04,0,0.26373611,9.001420472,65.10499264,3.989061294,17.45428534,0,1721.269347,0.007723273,0,0 +1835,0.025273638,0.382283665,0,0,2.405456375,0,0.024856862,0.010071225,0,0,0,0,0,104.8698,0,4264.2887,36.88278973,390.5551392,0,0,0,0,0,0,3.90E-06,0,0,3.13E-04,0,0.268718682,8.925548286,64.23544317,3.998558037,17.17048679,0,1718.222125,0.007723273,0,0 +1836,0.029221069,0.389316584,0,0,2.404187956,0,0.024856862,0.010071225,0,0,0,0,0,104.84901,0,4263.1961,37.24729235,389.9786644,0,0,0,0,0,0,3.93E-06,0,0,3.17E-04,0,0.273795386,8.993015086,64.08016333,3.917445996,17.23500429,0,1783.083419,0.007723273,0,0 +1837,0.029260399,0.396478888,0,0,2.440210174,0,0.024856862,0.010071225,0,0,0,0,0,104.86946,0,4264.2707,37.69980678,394.7565038,0,0,0,0,0,0,3.97E-06,0,0,3.21E-04,0,0.278968001,9.027059824,64.82242714,4.040217213,17.35383524,0,1798.088197,0.007723273,0,0 +1838,0.030288693,0.403772957,0,0,2.477311746,0,0.024856862,0.010071225,0,0,0,0,0,104.85548,0,4263.5362,38.24210962,401.296187,0,0,0,0,0,0,4.00E-06,0,0,3.25E-04,0,0.284238338,9.122535895,65.94724657,4.142172855,17.64153847,0,1841.543139,0.007723273,0,0 +1839,0.031310557,0.411201217,0,0,2.452638138,0,0.024856862,0.010071225,0,0,0,0,0,104.83788,0,4262.6108,38.51117556,396.9116369,0,0,0,0,0,0,4.04E-06,0,0,3.29E-04,0,0.289608243,9.139608329,65.11131218,4.015311872,17.50517633,0,1843.080824,0.007723273,0,0 +1840,0.033542974,0.418766135,0,0,2.443877522,0,0.024856862,0.010071225,0,0,0,0,0,104.80755,0,4261.0163,38.88776194,395.8809162,0,0,0,0,0,0,4.07E-06,0,0,3.33E-04,0,0.295079598,9.211326299,64.92298176,3.92426914,17.57513248,0,1874.141828,0.007723273,0,0 +1841,0.034601229,0.426470225,0,0,2.490489852,0,0.024856862,0.010071225,0,0,0,0,0,104.84789,0,4263.137,39.38162317,402.3727418,0,0,0,0,0,0,4.11E-06,0,0,3.37E-04,0,0.30065432,9.249453202,65.94544518,4.089445548,17.74554357,0,1916.264207,0.007723273,0,0 +1842,0.03663998,0.434316049,0,0,2.449170469,0,0.024856862,0.010070485,0,0,0,0,0,104.84034,0,4262.7403,39.61872888,396.9951221,0,0,0,0,0,0,4.14E-06,0,0,3.41E-04,0,0.30633436,9.261381852,64.92167359,3.936168061,17.59096172,0,1931.462508,0.007723273,0,0 +1843,0.037450386,0.442306214,0,0,2.411136271,0,0.024856862,0.010071964,0,0,0,0,0,104.85726,0,4263.6297,39.65326382,389.7367809,0,0,0,0,0,0,4.18E-06,0,0,3.45E-04,0,0.31212171,9.185852612,63.42406091,3.846066212,17.21821832,0,1929.660398,0.007723273,0,0 +1844,0.039846973,0.450443374,0,0,2.443825896,0,0.024856862,0.010071225,0,0,0,0,0,104.85117,0,4263.3094,40.04426499,392.7074417,0,0,0,0,0,0,4.22E-06,0,0,3.49E-04,0,0.318018395,9.178913526,63.7624543,3.965309781,17.1801219,0,1991.445647,0.007723273,0,0 +1845,0.043792129,0.458730235,0,0,2.471371875,0,0.024856862,0.010071225,0,0,0,0,0,104.83257,0,4262.3319,40.66967667,397.850056,0,0,0,0,0,0,4.25E-06,0,0,3.53E-04,0,0.324026483,9.307905911,64.68556723,3.957876345,17.5993633,0,2080.381092,0.007723273,0,0 +1846,0.044197374,0.46716955,0,0,2.471198742,0,0.024856862,0.010071225,0,0,0,0,0,104.82423,0,4261.8933,40.97519975,395.9082622,0,0,0,0,0,0,4.29E-06,0,0,3.57E-04,0,0.330148076,9.302498358,64.24405153,3.94954154,17.39887857,0,2072.290434,0.007723273,0,0 +1847,0.047464619,0.475764124,0,0,2.521115228,0,0.024856862,0.010071225,0,0,0,0,0,104.82758,0,4262.0693,41.61647168,402.9851575,0,0,0,0,0,0,4.32E-06,0,0,3.61E-04,0,0.336385321,9.401962019,65.44362075,4.0405661,17.76051419,0,2154.230603,0.007723273,0,0 +1848,0.047117807,0.484516814,0,0,2.5773718,1.49E-05,0.024856862,0.010070485,0,0,0,0,0,104.78829,0,4260.004,42.44947063,413.5582929,0,0,0,0,0,0,4.36E-06,0,0,3.65E-04,0,0.342740401,9.573238567,67.39824375,4.1550565,18.30069373,0,2204.416735,0.007723273,0,0 +1849,0.048851442,0.493430528,0,0,2.552394089,1.20E-04,0.024856862,0.010071964,0,0,0,0,0,104.81678,0,4261.5016,42.63396461,408.9399341,0,0,0,0,0,0,4.39E-06,0,0,3.69E-04,0,0.349215542,9.543358834,66.42707154,4.087020956,18.07478627,0,2224.89572,0.007723273,0,0 +1850,0.051384895,0.502508228,0,0,2.571124479,2.25E-04,0.024856862,0.010071225,0,0,0,0,0,104.93295,0,4267.6083,43.14236365,411.4628743,0,0,0,0,0,0,4.44E-06,0,0,3.74E-04,0,0.355813014,9.604162557,66.78304875,4.096904208,18.22682479,0,2275.776711,0.007723273,0,0 +1851,0.051562308,0.494656367,0,0,2.526692589,2.41E-04,0.024856862,0.010071225,0,0,0,0,0,104.96457,0,4269.2706,43.15191371,402.2448153,0,0,0,0,0,0,4.48E-06,0,0,3.78E-04,0,0.363793441,9.478471328,64.95004659,4.010397678,17.72630049,0,2256.815147,0.007723273,0,0 +1852,0.05364238,0.550685869,0,0,2.50763416,2.42E-04,0.024856862,0.010071225,0,0,0,0,0,104.98199,0,4270.1861,43.34412933,397.49852,0,0,0,0,0,0,4.51E-06,0,0,3.83E-04,0,0.372424224,9.424520247,63.95789986,3.958451611,17.47926155,0,2277.634405,0.007723273,0,0 +1853,0.055952349,0.548631086,0,0,2.527811743,2.43E-04,0.024856862,0.010071225,0,0,0,0,0,104.9693,0,4269.5191,43.88435963,400.3388041,0,0,0,0,0,0,4.55E-06,0,0,3.87E-04,0,0.380109709,9.493187126,64.44555418,3.968326235,17.65848988,0,2326.420616,0.007723273,0,0 +1854,0.065895655,0.546739774,0,0,2.610048543,2.44E-04,0.024856862,0.010071225,0,0,0,0,0,104.9226,0,4267.0641,44.80907906,413.3991315,0,0,0,0,0,0,4.58E-06,0,0,3.90E-04,0,0.388118038,9.708926054,66.79469522,4.086374133,18.34043133,0,2535.158195,0.007723273,0,0 +1855,0.066560595,0.543758287,0,0,2.593264313,2.45E-04,0.024856862,0.010070485,0,0,0,0,0,104.95064,0,4268.5385,44.9570539,408.1104539,0,0,0,0,0,0,4.62E-06,0,0,3.95E-04,0,0.395154931,9.60821845,65.65156398,4.071657216,17.9916486,0,2531.882071,0.007723273,0,0 +1856,0.071195717,0.549725266,0,0,2.573430007,2.47E-04,0.024856862,0.010071964,0,0,0,0,0,104.92886,0,4267.3934,45.32147323,404.8549167,0,0,0,0,0,0,4.65E-06,0,0,3.98E-04,0,0.401213616,9.648967408,65.0425347,3.941501863,17.95411805,0,2598.32335,0.007723273,0,0 +1857,0.071893947,0.555060913,0,0,2.636452577,2.49E-04,0.024856862,0.010071225,0,0,0,0,0,104.94976,0,4268.4922,46.01300694,414.6731918,0,0,0,0,0,0,4.69E-06,0,0,4.03E-04,0,0.40752619,9.717987449,66.72779877,4.159141007,18.29156565,0,2646.996287,0.007723273,0,0 +1858,0.07302816,0.55973691,0,0,2.660122642,2.51E-04,0.024856862,0.010071225,0,0,0,0,0,104.93987,0,4267.9722,46.54057729,419.0140236,0,0,0,0,0,0,4.73E-06,0,0,4.07E-04,0,0.412517456,9.773872717,67.47060376,4.240872485,18.4792763,0,2684.853418,0.007723273,0,0 +1859,0.077852113,0.567385369,0,0,2.64820325,2.53E-04,0.024856862,0.010071225,0,0,0,0,0,104.91443,0,4266.635,46.94962615,416.2997485,0,0,0,0,0,0,4.76E-06,0,0,4.10E-04,0,0.416997408,9.815633788,66.95694734,4.119710729,18.44950598,0,2765.351504,0.007723273,0,0 +1860,0.08580579,0.57190571,0,0,2.648404731,2.55E-04,0.024856862,0.010810676,0,0,0,0,0,104.89112,0,4265.4096,47.37614023,416.0639966,0,0,0,0,0,0,4.79E-06,0,0,4.14E-04,0,0.420752578,9.868462594,66.84953493,4.060976263,18.520468,0,2898.377784,0.007723273,0,0 +1861,0.090437572,0.583095346,0,0,2.670268663,2.57E-04,0.024856862,0.010810691,0,0,0,0,0,104.94268,0,4268.1198,48.2346867,417.2441372,0,0,0,0,0,0,4.83E-06,0,0,4.19E-04,0,0.42335986,9.857135646,66.88575551,4.161212988,18.43711983,0,2971.278843,0.007723273,0,0 +1862,0.091865591,0.522956563,0,0,2.648564983,2.60E-04,0.024856862,0.010071254,0,0,0,0,0,104.93302,0,4267.612,49.13056212,414.1628066,0,0,0,0,0,0,4.87E-06,0,0,4.23E-04,0,0.425968395,9.918881972,66.35896016,4.042449359,18.41589321,0,2976.388043,0.007723273,0,0 +1863,0.097488554,0.523134297,0,0,2.629269514,2.62E-04,0.024856862,0.010071254,0,0,0,0,0,104.9509,0,4268.552,49.71022253,408.1224194,0,0,0,0,0,0,4.91E-06,0,0,4.27E-04,0,0.428432683,9.868665854,65.0096354,3.971519356,18.09141101,0,3064.446907,0.007723273,0,0 +1864,0.104725139,0.523481383,0,0,2.667755634,2.65E-04,0.024856862,0.010071254,0,0,0,0,0,104.94467,0,4268.2247,50.66032473,411.3310643,0,0,0,0,0,0,4.94E-06,0,0,4.31E-04,0,0.431014196,9.887134077,65.39906664,4.087458726,18.0938173,0,3193.218259,0.007723273,0,0 +1865,0.110936319,0.524250384,0,0,2.720201066,2.68E-04,0.024856862,0.010810706,0,0,0,0,0,104.93017,0,4267.4623,51.9800751,420.489005,0,0,0,0,0,0,4.98E-06,0,0,4.35E-04,0,0.433438772,10.07353478,67.10347351,4.157661467,18.66656838,0,3327.080176,0.007723273,0,0 +1866,0.114738508,0.524386363,0,0,2.710298337,2.71E-04,0.024856862,0.01081072,0,0,0,0,0,104.92398,0,4267.1368,52.74699293,417.1011849,0,0,0,0,0,0,5.01E-06,0,0,4.39E-04,0,0.435744776,10.06454912,66.37528156,4.133671178,18.39468019,0,3388.258078,0.007723273,0,0 +1867,0.12258204,0.522876455,0,0,2.761022671,2.74E-04,0.024856862,0.010070544,0,0,0,0,0,104.93094,0,4267.5026,53.94102178,424.2969753,0,0,0,0,0,0,5.05E-06,0,0,4.43E-04,0,0.438210649,10.1891331,67.66026449,4.231180961,18.76835617,0,3565.435535,0.007723273,0,0 +1868,0.125609442,0.521415398,0,0,2.825140562,2.77E-04,0.024856862,0.010072023,0,0,0,0,0,104.89186,0,4265.4483,55.28767356,434.9302283,0,0,0,0,0,0,5.08E-06,0,0,4.47E-04,0,0.441434256,10.37220092,69.64729381,4.363304735,19.30124757,0,3668.308732,0.007723273,0,0 +1869,0.133291522,0.519770898,0,0,2.785004317,2.81E-04,0.024856862,0.010810735,0,0,0,0,0,104.93014,0,4267.4609,55.83359728,426.4036167,0,0,0,0,0,0,5.12E-06,0,0,4.51E-04,0,0.443908266,10.31106127,67.92949559,4.245329954,18.88882504,0,3791.462745,0.007723273,0,0 +1870,0.136674384,0.51867186,0,0,2.831200782,2.84E-04,0.024856862,0.01081075,0,0,0,0,0,104.89317,0,4265.5174,56.99659231,433.2287624,0,0,0,0,0,0,5.15E-06,0,0,4.55E-04,0,0.446639961,10.44102397,69.12187694,4.32346865,19.25812075,0,3887.529335,0.007723273,0,0 +1871,0.145249161,0.538815215,0,0,2.797830347,2.88E-04,0.024856862,0.010071314,0,0,0,0,0,104.92871,0,4267.3856,57.57401422,425.1606513,0,0,0,0,0,0,5.19E-06,0,0,4.59E-04,0,0.454335934,10.3694977,67.42862358,4.269404037,18.76177377,0,4016.032279,0.007723273,0,0 +1872,0.160346513,0.624237802,0,0,2.771292694,2.92E-04,0.024856862,0.010810765,0,0,0,0,0,104.95075,0,4268.5441,58.18710545,417.7442734,0,0,0,0,0,0,5.23E-06,0,0,4.63E-04,0,0.470862622,10.33038424,65.84553711,4.178709817,18.36534165,0,4250.256916,0.007723273,0,0 +1873,0.170095482,0.635197776,0,0,2.841633848,2.96E-04,0.024856862,0.01081078,0,0,0,0,0,104.93223,0,4267.5705,59.62016165,429.280289,0,0,0,0,0,0,5.26E-06,0,0,4.67E-04,0,0.49389425,10.56453512,67.99437045,4.309987324,18.9372989,0,4473.449628,0.007723273,0,0 +1874,0.161012643,0.642458922,0,0,2.86805891,3.00E-04,0.024856862,0.010810794,0,0,0,0,0,104.88493,0,4265.0843,60.88850035,435.80418,0,0,0,0,0,0,5.30E-06,0,0,4.71E-04,0,0.521735812,10.75161101,69.34908007,4.369596918,19.30481072,0,4382.176552,0.007723273,0,0 +1875,0.173259068,0.650321509,0,0,2.833489105,3.05E-04,0.024856862,0.010810809,0,0,0,0,0,104.93101,0,4267.5065,61.4471703,426.8934955,0,0,0,0,0,0,5.33E-06,0,0,4.75E-04,0,0.552163614,10.66354523,67.4820886,4.311546236,18.75387609,0,4552.510356,0.007723273,0,0 +1876,0.175938232,0.65804039,0,0,2.843125267,3.09E-04,0.024856862,0.010810824,0,0,0,0,0,104.90175,0,4265.968,62.60294811,429.4805477,0,0,0,0,0,0,5.37E-06,0,0,4.79E-04,0,0.58288316,10.83189303,68.07266489,4.273649915,19.00214066,0,4640.322706,0.007723273,0,0 +1877,0.179825348,0.664694086,0,0,2.881579173,3.14E-04,0.024856862,0.010810839,0,0,0,0,0,104.92824,0,4267.3608,63.64524259,434.060346,0,0,0,0,0,0,5.41E-06,0,0,4.83E-04,0,0.612226706,10.8970216,68.77838073,4.413505724,19.0890591,0,4762.604755,0.007723273,0,0 +1878,0.180776983,0.671585762,0,0,2.905036494,3.19E-04,0.024856862,0.010810853,0,0,0,0,0,104.92472,0,4267.1759,64.71120383,437.9599498,0,0,0,0,0,0,5.44E-06,0,0,4.87E-04,0,0.637718424,10.99894534,69.46979574,4.503130841,19.22817131,0,4806.316495,0.007723273,0,0 +1879,0.193175438,0.678615294,0,0,2.92925864,3.23E-04,0.024856862,0.010810868,0,0,0,0,0,104.88028,0,4264.8396,65.90279841,440.8517591,0,0,0,0,0,0,5.47E-06,0,0,4.91E-04,0,0.658926777,11.18150569,70.08572002,4.447158396,19.48731539,0,5054.634873,0.007723273,0,0 +1880,0.219340005,0.684857424,0,0,2.921172062,3.29E-04,0.024856862,0.010810144,0,0,0,0,0,104.88174,0,4264.9162,66.6649843,437.3657275,0,0,0,0,0,0,5.51E-06,0,0,4.95E-04,0,0.672777776,11.21057035,69.18788119,4.386751757,19.32682128,0,5476.691841,0.007723273,0,0 +1881,0.22522318,0.722626203,0,0,2.962877226,3.34E-04,0.024856862,0.011551088,0,0,0,0,0,104.92914,0,4267.4079,67.70670095,440.9737248,0,0,0,0,0,0,5.55E-06,0,0,4.99E-04,0,0.680636704,11.27474846,69.70896889,4.531822011,19.32716624,0,5655.562653,0.007723273,0,0 +1882,0.236948997,0.674378608,0,0,2.944345851,3.39E-04,0.024856862,0.011550379,0,0,0,0,0,104.92759,0,4267.3266,68.57787524,436.0786301,0,0,0,0,0,0,5.59E-06,0,0,5.04E-04,0,0.689255681,11.34322096,68.75016749,4.409841205,19.15816229,0,5878.580768,0.007723273,0,0 +1883,0.250894677,0.681454028,0,0,2.918084088,3.45E-04,0.024856862,0.010810957,0,0,0,0,0,104.95902,0,4268.979,69.1859791,428.2212034,0,0,0,0,0,0,5.62E-06,0,0,5.08E-04,0,0.695872552,11.30107278,67.06254476,4.344707595,18.70936137,0,6136.750815,0.007723273,0,0 +1884,0.252849902,0.684683542,0,0,2.97815874,3.50E-04,0.024856862,0.010810972,0,0,0,0,0,104.93535,0,4267.7345,70.48060515,436.5183492,0,0,0,0,0,0,5.66E-06,0,0,5.12E-04,0,0.70169045,11.46377857,68.59402326,4.507763748,19.00988998,0,6243.347605,0.007723273,0,0 +1885,0.254442991,0.690863781,0,0,2.987658653,3.56E-04,0.024856862,0.011550438,0,0,0,0,0,104.93798,0,4267.8727,71.60546241,438.1415385,0,0,0,0,0,0,5.69E-06,0,0,5.16E-04,0,0.707890871,11.60315357,68.94977818,4.492846371,19.20686906,0,6294.938313,0.007723273,0,0 +1886,0.258326127,0.691934912,0,0,3.000148376,3.62E-04,0.024856862,0.011550467,0,0,0,0,0,104.9357,0,4267.7531,72.58254388,437.7333269,0,0,0,0,0,0,5.73E-06,0,0,5.20E-04,0,0.712632779,11.67579747,68.86926284,4.534738954,19.06781958,0,6353.027294,0.007723273,0,0 +1887,0.270973326,0.691885463,0,0,3.044590075,3.68E-04,0.024856862,0.011550497,0,0,0,0,0,104.94903,0,4268.4538,73.77743063,443.1077381,0,0,0,0,0,0,5.77E-06,0,0,5.24E-04,0,0.71821666,11.82565523,69.79403942,4.618994874,19.32845364,0,6605.766965,0.007723273,0,0 +1888,0.299024069,0.691539784,0,0,3.123484052,3.74E-04,0.024856862,0.011550526,0,0,0,0,0,104.91459,0,4266.6433,75.11035553,452.502308,0,0,0,0,0,0,5.80E-06,0,0,5.28E-04,0,0.724224235,12.04162329,71.42723744,4.741896917,19.78574643,0,7182.264809,0.007723273,0,0 +1889,0.29939589,0.691049208,0,0,3.104668338,3.81E-04,0.024856862,0.011550556,0,0,0,0,0,104.95877,0,4268.9657,75.92960019,448.6908696,0,0,0,0,0,0,5.84E-06,0,0,5.32E-04,0,0.730764112,12.07532791,70.65718772,4.727164288,19.55277705,0,7178.592239,0.007723273,0,0 +1890,0.32528597,0.68776294,0,0,3.159194949,3.87E-04,0.024856862,0.011550586,0,0,0,0,0,104.9317,0,4267.5425,77.07862319,453.8990323,0,0,0,0,0,0,5.87E-06,0,0,5.36E-04,0,0.755661554,12.22188071,71.47659717,4.807916688,19.77806486,0,7728.431301,0.007723273,0,0 +1891,0.340453909,0.684411407,0,0,3.125180696,3.94E-04,0.024856862,0.011550615,0,0,0,0,0,104.97344,0,4269.7366,77.68229292,444.3827318,0,0,0,0,0,0,5.91E-06,0,0,5.40E-04,0,0.766996007,12.1596402,69.53172191,4.743306066,19.19967303,0,8025.900173,0.007723273,0,0 +1892,0.342946092,0.69893132,0,0,3.110528365,4.01E-04,0.024856862,0.011550645,0,0,0,0,0,104.99082,0,4270.6504,78.54558089,439.808659,0,0,0,0,0,0,5.95E-06,0,0,5.45E-04,0,0.778272468,12.19914652,68.66391959,4.695682305,18.94952176,0,8166.143155,0.007723273,0,0 +1893,0.33787039,0.699713125,0,0,3.125430895,4.08E-04,0.024856862,0.012290126,0,0,0,0,0,104.97994,0,4270.0783,79.81501329,443.3506558,0,0,0,0,0,0,5.99E-06,0,0,5.49E-04,0,0.789729823,12.37945386,69.48705802,4.715239733,19.1784562,0,8120.644735,0.007723273,0,0 +1894,0.351124504,0.715581396,0,0,3.205110618,4.15E-04,0.024856862,0.01229017,0,0,0,0,0,104.93101,0,4267.5063,81.38345626,456.6960325,0,0,0,0,0,0,6.02E-06,0,0,5.52E-04,0,0.802004637,12.66238559,71.90804381,4.888948538,19.83612848,0,8411.388473,0.007723273,0,0 +1895,0.371712037,0.720945096,0,0,3.216163845,4.22E-04,0.024856862,0.011550763,0,0,0,0,0,104.96751,0,4269.4251,82.23116014,453.551885,0,0,0,0,0,0,6.06E-06,0,0,5.57E-04,0,0.812887633,12.67244423,71.15178658,4.919171254,19.52250048,0,8846.66701,0.007723273,0,0 +1896,0.383674818,0.723440788,0,0,3.170768747,4.30E-04,0.024856862,0.012290244,0,0,0,0,0,104.96751,0,4269.4252,83.00005426,444.0944278,0,0,0,0,0,0,6.09E-06,0,0,5.61E-04,0,0.824102858,12.72059369,69.42267706,4.733994615,19.17728772,0,9089.598433,0.007723273,0,0 +1897,0.401981164,0.725878271,0,0,3.268702112,4.37E-04,0.024856862,0.012290288,0,0,0,0,0,104.99693,0,4270.9718,84.39253635,456.4122055,0,0,0,0,0,0,6.13E-06,0,0,5.65E-04,0,0.834637127,12.8902171,71.5467325,5.026760132,19.58218288,0,9520.393854,0.007723273,0,0 +1898,0.42330421,0.72837657,0,0,3.296870259,4.45E-04,0.02485618,0.012290333,0,0,0,0,0,105.01512,0,4271.9281,85.36127162,456.6037674,0,0,0,0,0,0,6.17E-06,0,0,5.69E-04,0,0.844305316,12.95906823,71.45665952,5.098029535,19.50168111,0,10010.09583,0.007723236,0,0 +1899,0.463317192,0.728556158,0,0,3.355831345,4.86E-04,0.024857703,0.012290377,0,0,0,0,0,104.97653,0,4269.8993,86.70543387,462.1035994,0,0,0,0,0,0,6.20E-06,0,0,5.73E-04,0,0.853783366,13.20706844,72.46072256,5.094979384,19.86870993,0,10838.11345,0.007723233,0,0 +1900,0.488155862,0.73057236,0,0,3.361821037,0.002392668,0.024856437,0.028558348,0,0,0,0,0,104.98481,0,4270.3344,87.61328845,459.5444669,0,0,0,0,0,0,6.24E-06,0,0,5.77E-04,0,0.863169654,13.27666955,71.90656631,5.089168388,19.75078793,0,11348.7275,0.007723268,0,0 +1901,0.504485719,0.796906313,0,0,3.382952935,0.004820097,0.024857442,0.047784449,0,0,0,0,0,105.04131,0,4273.3046,88.39116711,457.6168305,0,0,0,0,0,0,6.28E-06,0,0,5.82E-04,0,0.871405959,13.3014099,71.63263161,5.202144138,19.48762217,0,11775.2552,0.007723268,0,0 +1902,0.519345117,0.800278636,0,0,3.38154147,0.005778122,0.024856062,0.050743008,0,0,0,0,0,105.04898,0,4273.708,89.26282464,455.0261768,0,0,0,0,0,0,6.32E-06,0,0,5.86E-04,0,0.881215447,13.41248803,71.24149846,5.179688037,19.3580615,0,12100.54877,0.007723268,0,0 +1903,0.566454621,0.829571146,0,0,3.389386332,0.006957613,0.024857979,0.05591998,0,0,0,0,0,105.09555,0,4276.1561,89.89074057,449.9625304,0,0,0,0,0,0,6.36E-06,0,0,5.90E-04,0,0.890660734,13.43752052,70.25376393,5.190103458,19.03059788,0,13044.15816,0.007723268,0,0 +1904,0.575152133,0.856100074,0,0,3.4640583,0.009436339,0.024855289,0.068491568,0,0,0,0,0,105.07939,0,4275.3063,91.35674943,462.621765,0,0,0,0,0,0,6.39E-06,0,0,5.94E-04,0,0.900998672,13.7314717,72.88437625,5.400226563,19.65611973,0,13274.43719,0.007723268,0,0 +1905,0.612296247,0.883090418,0,0,3.525334738,0.013412831,0.024859105,0.087718467,0,0,0,0,0,105.08907,0,4275.8152,92.40132432,467.4401288,0,0,0,0,0,0,6.43E-06,0,0,5.99E-04,0,0.911796751,13.85510547,73.70973522,5.570897784,19.75296716,0,14100.97838,0.007723268,0,0 +1906,0.644276357,0.913945895,0,0,3.54932448,0.018196454,0.024853655,0.11138246,0,0,0,0,0,105.10645,0,4276.7286,93.24998316,466.4356479,0,0,0,0,0,0,6.47E-06,0,0,6.03E-04,0,0.922864309,13.95964537,73.46173851,5.607842107,19.60693136,0,14766.45012,0.007723268,0,0 +1907,0.726915977,0.922997028,0,0,3.674457368,0.016966195,0.025812945,0.10398923,0,0,0,0,0,105.14627,0,4278.822,94.56080194,480.3174564,0,0,0,0,0,0,6.51E-06,0,0,6.07E-04,0,0.933557019,14.21677499,76.00444514,5.92575152,20.14449075,0,16264.98721,0.007723268,0,0 +1908,0.703232591,0.932378464,0,0,3.67587664,0.021404879,0.029231937,0.12765503,0,0,0,0,0,105.12414,0,4277.6586,95.71237193,482.582634,0,0,0,0,0,0,6.54E-06,0,0,6.11E-04,0,0.943978146,14.40742286,76.856238,5.975251674,20.34218955,0,15590.71312,0.007723268,0,0 +1909,0.7293531,0.939463987,0,0,3.690048662,0.036714367,0.765086,0.21121463,0,0,0,0,0,105.16533,0,4279.824,96.4666946,480.6894688,0,0,0,0,0,0,6.58E-06,0,0,6.16E-04,0,0.954146693,14.46573428,76.4408771,6.041715332,20.10967131,0,16371.00547,0.007723268,0,0 +1910,0.765726395,0.945592087,0,0,3.767608107,0.042342327,1.0366888,0.24301505,0,0,0,0,0,105.14442,0,4278.7248,97.77187103,491.4713622,0,0,0,0,0,0,6.62E-06,0,0,6.20E-04,0,0.964867509,14.73060447,78.48124343,6.225241543,20.6023284,0,17123.07052,0.007723268,0,0 +1911,0.781014654,0.887403675,0,0,3.725917532,0.047217079,0.55672031,0.27037941,0,0,0,0,0,105.20214,0,4281.7592,98.42938116,482.3736484,0,0,0,0,0,0,6.66E-06,0,0,6.24E-04,0,0.976172007,14.67937454,76.73370569,6.205453711,20.00760743,0,17244.18549,0.007723268,0,0 +1912,0.819966191,0.85083987,0,0,3.709100468,0.055977137,1.3372385,0.31844894,0,0,0,0,0,105.23472,0,4283.4718,99.26614632,477.9889215,0,0,0,0,0,0,6.70E-06,0,0,6.29E-04,0,0.99242033,14.7136648,75.83160819,6.219463911,19.68089243,0,17989.19691,0.007723268,0,0 +1913,0.88953397,0.82034848,0,0,3.787939036,0.05934571,2.7874772,0.33694139,0,0,0,0,0,105.25437,0,4284.5046,100.6125584,488.2676035,0,0,0,0,0,0,6.74E-06,0,0,6.33E-04,0,1.011440097,14.92180765,77.5799616,6.45387962,20.00732869,0,19072.75319,0.007723268,0,0 +1914,0.811491369,0.809204505,0,0,3.764418792,0.064801984,4.5655912,0.36726542,0,0,0,0,0,105.19867,0,4281.5767,102.2840587,494.4978826,0,0,0,0,0,0,6.77E-06,0,0,6.36E-04,0,1.032129514,15.24149746,79.77807343,6.499176733,20.59248109,0,17594.43406,0.007723268,0,0 +1915,0.802991659,0.797401958,0,0,3.722337783,0.084000629,6.2098372,0.47153519,0,0,0,0,0,105.2716,0,4285.4105,103.0579197,484.2476849,0,0,0,0,0,0,6.81E-06,0,0,6.41E-04,0,1.054619583,15.23213103,78.35040062,6.482772073,20.06142458,0,17573.11604,0.007723268,0,0 +1916,0.86533079,0.799710226,0,0,3.744207069,0.10465075,5.9968917,0.58467971,0,0,0,0,0,105.29863,0,4286.831,104.0889435,482.954266,0,0,0,0,0,0,6.85E-06,0,0,6.46E-04,0,1.077791382,15.34284718,78.27985155,6.601680858,19.90829861,0,19065.48428,0.007723268,0,0 +1917,0.896621585,0.802745574,0,0,3.826396856,0.11034348,5.1585271,0.61870744,0,0,0,0,0,105.37275,0,4290.7275,105.4397415,492.9600448,0,0,0,0,0,0,6.89E-06,0,0,6.51E-04,0,1.100255613,15.500365,80.45481807,7.003710361,20.17756104,0,19906.99893,0.007723268,0,0 +1918,0.887395559,0.80603585,0,0,3.83059738,0.10461425,4.2721672,0.58914082,0,0,0,0,0,105.37311,0,4290.7462,106.7459316,496.2420731,0,0,0,0,0,0,6.93E-06,0,0,6.55E-04,0,1.121226709,15.70439103,81.61294814,7.118191256,20.36895158,0,19743.24497,0.007723268,0,0 +1919,0.780860402,0.811159148,0,0,3.722641135,0.10155164,3.196035,0.57214502,0,0,0,0,0,105.33647,0,4288.8202,108.095107,490.9794171,0,0,0,0,0,0,6.96E-06,0,0,6.59E-04,0,1.140233478,15.91565271,81.67724386,6.926922673,20.36863821,0,16994.78687,0.007723268,0,0 +1920,0.903060101,0.813518455,0,0,3.813010121,0.071874804,4.0059497,0.41169313,0,0,0,0,0,105.40157,0,4292.2427,109.1336385,498.8745999,0,0,0,0,0,0,7.01E-06,0,0,6.64E-04,0,1.157633765,16.03665614,82.96992111,7.318815146,20.4023951,0,18802.69892,0.007723268,0,0 +1921,0.793835864,0.861299333,0,0,3.661222702,0.05599481,6.3575755,0.32444592,0,0,0,0,0,105.42979,0,4293.7261,109.809348,486.6136242,0,0,0,0,0,0,7.05E-06,0,0,6.68E-04,0,1.173417685,16.0101613,81.18725519,7.146950074,19.84610877,0,16049.70593,0.007723268,0,0 +1922,0.843896663,0.853369204,0,0,3.658333723,0.10093674,7.5196689,0.56921203,0,0,0,0,0,105.47367,0,4296.0327,110.4858104,484.8273418,0,0,0,0,0,0,7.09E-06,0,0,6.73E-04,0,1.188779372,16.07300912,80.53069431,7.252038815,19.4742784,0,16950.896,0.007723268,0,0 +1923,0.959559001,0.86148441,0,0,3.88124621,0.13753371,8.1995609,0.77479139,0,0,0,0,0,105.54539,0,4299.8026,112.2535641,514.2343951,0,0,0,0,0,0,7.13E-06,0,0,6.78E-04,0,1.205120978,16.4693053,86.27583424,8.013836332,20.41782521,0,19723.67202,0.007723268,0,0 +1924,0.970359441,0.867663331,0,0,3.774809016,0.14595489,10.064032,0.82730698,0,0,0,0,0,105.55899,0,4300.5175,112.633506,499.0974144,0,0,0,0,0,0,7.17E-06,0,0,6.82E-04,0,1.222219042,16.41564777,83.21123114,7.790296572,19.77882376,0,19521.89407,0.007723268,0,0 +1925,0.983699121,0.870847171,0,0,3.790606982,0.15281139,9.887985,0.86947278,0,0,0,0,0,105.60265,0,4302.8128,113.6704269,502.6957688,0,0,0,0,0,0,7.21E-06,0,0,6.87E-04,0,1.237791101,16.84168156,84.06174423,7.983263812,19.75345484,0,19738.88984,0.007723268,0,0 +1926,0.971193664,0.875288161,0,0,3.724383638,0.16877181,10.020584,0.96266008,0,0,0,0,0,105.65209,0,4305.4116,114.5456303,499.0418204,0,0,0,0,0,0,7.25E-06,0,0,6.92E-04,0,1.252612106,17.14732508,84.16877083,8.057166102,19.57302011,0,19808.91323,0.007723268,0,0 +1927,1.071982298,0.914815243,0,0,3.850357382,0.19366311,13.691728,1.1076116,0,0,0,0,0,105.65063,0,4305.3352,115.74748,515.0910884,0,0,0,0,0,0,7.29E-06,0.004945027,0,6.96E-04,0,1.266765284,17.43232174,86.52753525,8.499773807,19.87550986,0,21139.78229,0.007723268,0,0 +1928,1.076174298,0.918261907,0,0,3.828134932,0.2132805,16.914307,1.2252077,0.020814729,0,0,0,0,105.59392,0,4302.3537,116.7958666,515.8400889,0,0,0,0,0,0,7.32E-06,0.030139896,0,6.99E-04,0,1.279785085,17.62700285,87.11586337,8.569023695,19.91593076,0,21065.04746,0.007723269,0,0 +1929,1.156951387,0.945536477,0,0,3.890215994,0.20802541,19.38339,1.2037865,0.33502494,0,0,0,0,105.60372,0,4297.9849,118.0199977,527.0535755,0,0,0,0,0,0,7.35E-06,0.003329301,0,7.02E-04,0,1.290827582,17.86727278,89.37670247,8.894481948,20.27497394,0,22402.21952,0.007723266,0,0 +1930,1.072886478,1.022800884,0,0,3.907622806,0.17035764,20.571834,0.99750344,1.1701026,0,0,0,0,105.91829,0,4287.8382,119.6701788,535.0349028,0,0,0,0,0,0,7.36E-06,-0.026051043,0,7.03E-04,0,1.300370355,18.10997615,91.59573863,8.841770878,20.95238859,0,20792.33986,0.007723273,0,0 +1931,0.968671726,1.033130291,0,0,3.699193086,0.11326202,21.232329,0.6766021,1.6600329,0,0,0,0,106.6887,0,4282.6938,119.9075078,504.8981345,0,0,0,0,0,0,7.38E-06,-0.003829208,0,7.06E-04,0,1.307318192,17.9582942,86.48531867,8.206316153,19.78298346,0,18348.146,0.007723259,0,0 +1932,0.880274393,0.934985061,0,0,3.701120519,0.085847633,23.837144,0.51911084,1.6167368,0,0,0,0,107.41813,0,4276.7559,121.4219873,510.1823315,0,0,0.005764349,0,0,0,7.40E-06,7.43E-04,0,7.08E-04,0,1.314106352,18.10001304,87.90725373,8.142484302,20.16181555,0,16151.1052,0.007723289,0,0 +1933,0.923452608,0.931801343,0,0,3.673991696,0.1016274,28.120028,0.61081444,1.6336582,0,0,0,0,108.09758,0,4271.2585,122.3437659,508.1160121,0,0,0.14482802,0,0,0,7.43E-06,8.08E-04,0,7.11E-04,0,1.319777787,18.14058312,87.73926442,8.102332977,20.01961331,0,16995.04081,0.007723222,0,0 +1934,1.000687974,0.920029755,0,0,3.817622407,0.15202423,34.519287,0.91252255,1.6505883,0,0,0,0,108.91202,0,4272.3774,123.9532999,528.033166,0,0,0.60639434,0,0,0,7.47E-06,8.78E-04,0,7.15E-04,0,1.326062979,18.32411359,91.49703968,8.603675585,20.70261784,0,18679.91277,0.007723374,0,0 +1935,1.050596869,0.918684315,0,0,3.826763235,0.22028466,40.132859,1.3303298,1.6675173,0,0,0,0,109.70014,0,4272.1486,124.8946044,529.4409406,0,0,0.97427321,0,0,0,7.50E-06,9.54E-04,0,7.19E-04,0,1.33245233,18.31731965,91.90214074,8.779424673,20.54319704,0,20077.94332,0.007723023,0,0 +1936,1.150366722,0.927069389,0,0,3.972008023,0.28820401,42.33712,1.7570203,1.6844464,0,0,0,0,110.56758,0,4275.9063,126.4647048,550.0398549,0,0,1.0455299,0,0,0,7.55E-06,0.001037276,0,7.24E-04,0,1.338689989,18.65286964,95.83484543,9.362043925,21.16418654,0,21597.57179,0.007723846,0,0 +1937,1.231103105,0.904516492,0,0,3.977215074,0.34372195,44.188471,2.1186454,1.7013755,0.006390022,0,0,0,111.3625,0,4275.9946,127.1823371,550.6109419,0,0,1.1131878,0,0,0,7.58E-06,0.001127477,0,7.28E-04,0,1.346525353,18.735883,95.84567433,9.575630542,20.85060471,0,23231.71203,0.00772185,0,0 +1938,1.161421971,0.907321542,0,0,3.879546431,0.39883954,49.06474,2.4891541,1.7183047,0.1328808,0,0,0,112.0603,0,4271.2734,127.905393,535.4268485,0,0,1.185033,0,0,0,7.61E-06,0.001225424,0,7.31E-04,0,1.355126677,18.72062801,93.23706062,9.133612085,20.283818,0,21542.97587,0.007728553,0,0 +1939,1.232613704,0.905880028,0,0,4.010820601,0.43390074,56.683054,2.745053,1.7352338,0.68779311,0,0,0,112.8293,0,4270.1197,129.5013568,554.5379171,0,0,1.2571398,0,0,0,7.64E-06,0.001332062,0,7.35E-04,0,1.366829172,18.98792969,97.34535423,9.632984019,21.02085333,0,23010.26881,0.11813875,0,0 +1940,1.332494478,0.893463629,0,0,4.026253626,0.50172554,67.980741,3.2190952,1.7521629,1.4928916,0,0,0,113.75015,0,4276.3916,130.1349943,550.4654056,0,0,1.3304594,0,0,0,7.69E-06,0.001448183,0,7.41E-04,0,1.379589207,18.93380648,96.49612887,9.961368881,20.56627575,0,25159.07412,0.21814961,0,0 +1941,1.35733239,0.876081403,0,0,4.050294267,0.64957282,81.740279,4.2240743,1.769092,2.2339929,0,0,0,114.54353,0,4282.9257,132.2180939,552.9500651,0,0,1.4028748,0,0,0,7.73E-06,0.00157415,0,7.45E-04,0,1.427063176,19.03403078,97.09407345,10.19371174,20.46203137,0,26113.9497,0.1951164,0,0 +1942,1.359049319,0.897314522,0,0,4.114193284,0.84353078,95.021136,5.585489,1.7860212,2.976471,0,0,0.19841173,115.26991,0,4303.7401,134.7060241,560.1841861,0,0,1.4745564,0,0,0,7.76E-06,0.001710955,0,7.48E-04,0,1.529818545,19.21018323,98.65719695,10.34548378,21.01419377,0,26702.04279,0.16898031,0,0 +1943,1.402945825,0.892124843,0,0,4.114085782,0.80476688,89.521615,5.4576739,1.8029502,3.7199961,0,0.056451758,4.3053247,116.04761,0,4331.4951,136.6296869,561.0185503,0,0,1.5467027,0,0,0,7.79E-06,0.001859737,0,7.52E-04,0,1.677793207,19.22648995,99.48634644,10.64406286,20.76469901,0,27110.34859,0.14684461,0,0 +1944,1.387913119,0.898318952,0,0,4.111269896,0.41764093,72.694302,2.9606569,1.8198794,4.4638059,0,0.97266311,16.545617,116.85265,0,4354.745,138.9310562,569.4275578,0,0,1.6191675,0,0,0,7.83E-06,0.002021507,0,7.56E-04,0,1.853743997,19.45467137,102.0083052,10.97214997,20.91812228,0,26578.15151,0.11439264,0,0 +1945,1.180916482,0.898822172,0,0,3.970406317,0.20111842,68.369262,1.5076942,1.8368084,5.2077233,0,3.4593405,24.846154,117.6118,0,4376.5008,141.022964,562.3881403,0,0,1.69101,0,0,0,7.86E-06,0.002197258,0,7.60E-04,0,2.046836624,19.53099873,102.3868629,10.81105837,20.63041519,0,23414.92286,0.080798572,0,0 +1946,1.294211066,0.982947007,0,0,3.971696435,0.27970458,74.717234,2.0726649,1.8537378,5.9856104,0,4.9404679,24.839378,118.39896,0,4399.6117,142.7064022,555.289963,0,0,1.7631908,0,0,0,7.89E-06,0.002388349,0,7.64E-04,0,2.242235208,19.68948842,102.6581835,10.80993836,20.3059335,0,23137.29124,0.064300427,0,0 +1947,1.449894938,1.013635265,0,0,4.004289599,0.34838359,84.081746,2.6369074,1.8706665,6.4443541,0,4.8390374,24.982371,119.2973,0,4428.0553,144.7944965,563.4037754,0,0,1.8372679,0,0,0,7.94E-06,0.002596315,0,7.69E-04,0,2.428654505,19.91609513,104.1573676,11.48967842,20.19099947,0.003372839,25978.58013,0.046731228,0,0 +1948,1.541746758,1.021788966,0,0,4.123520873,0.33316898,90.670686,2.6243892,1.8875961,6.6649072,0,4.8563661,24.987103,120.08364,0,4451.0369,147.2720295,586.53608,0,0,1.966277,0,0,0,7.98E-06,0.003327672,0,7.73E-04,0,2.589644896,20.34906056,108.0964174,12.19576499,20.65035706,0.023611977,27162.31675,0.020169381,0,0 +1949,1.51503408,1.032229109,0,0,4.095746551,0.31424196,91.962416,2.5926444,1.8955033,7.1640705,0,5.561141,27.295461,120.70601,0,4466.7618,150.2157149,588.4410387,0,0,1.6426278,0,0,0,7.99E-06,0.02463759,0,7.75E-04,0,2.714013981,20.9091959,109.1544258,11.86397123,21.08117938,0.063741035,26198.85137,-0.001578436,0,0 +1950,1.695680787,1.04543439,0,0,4.331260791,0.32876887,78.580053,2.8441101,1.9897329,7.4706053,0,8.1460574,32.673745,121.62274,0,4499.2896,152.2010084,619.9439709,0,0,1.0661465,0,0,0,8.05E-06,0.10531435,0,7.81E-04,0,2.786823806,21.60140457,113.8598472,13.13214183,22.10581056,0.16053368,29148.54682,2.43E-04,0,0 +1951,1.817356704,1.263788462,0,0,4.212336067,0.33222262,70.47669,3.0430784,2.1685287,7.5542237,0,12.050138,36.815853,122.51807,0.014330518,4529.1876,155.2719352,593.1994506,0,0,1.0527789,0,0,0,8.09E-06,0.2343219,0,7.85E-04,0,2.830792646,21.71096706,109.0909544,13.15219389,20.39818818,0.23983988,30378.93497,0.001166432,0,0 +1952,1.85187593,1.291508658,0,0,4.278249967,0.32854487,76.508762,3.2228257,2.4120426,7.6734014,0,16.078842,40.441283,123.26435,0.21725302,4558.7052,160.5733576,606.95634,0,0,1.4414744,0,0,0,8.10E-06,0.3628351,0,7.87E-04,0,2.873469224,22.39378605,112.6182109,13.48661504,20.95793435,0.24565292,30772.87938,-0.002030065,0,0 +1953,1.905887196,1.288662579,0,0,4.400134891,0.31999622,81.681224,3.3863087,2.8478934,7.7034458,0,20.201055,45.581432,124.06078,1.3575508,4600.7084,165.6818323,623.9750548,0,0,2.100408,0,0,0,8.12E-06,0.48047903,0,7.90E-04,0,2.918473221,23.08627653,116.7765378,14.05062035,21.60093971,0.24572915,31392.44296,-2.28E-04,0,0 +1954,1.955325831,1.342683244,0,0,4.475107773,0.29457384,86.86347,3.4048632,3.2763156,7.760213,0,25.212381,51.892411,124.75392,3.6198833,4629.2231,170.3710079,628.9096635,0,0,2.8888848,0,0,0,8.14E-06,0.59576061,0,7.91E-04,0,2.965305231,23.5182693,118.7896929,14.35262782,21.65473895,0.24580572,31601.64062,-0.004070821,0,0 +1955,2.138786817,1.387820683,0,0,4.585745112,0.26311875,91.980019,3.3346824,3.6788015,7.6370702,0,30.727319,59.871881,125.74327,6.4848679,4666.3367,174.7404471,641.3267253,0,0,3.5564777,0,0,0,8.18E-06,0.70910415,0,7.96E-04,0,3.016004168,23.78869162,122.5425815,15.35988489,21.61194057,0.24588273,34555.40272,0.001049355,0,0 +1956,2.291039468,1.446283643,0,0,4.844401489,0.22075982,97.008491,3.0796375,4.2759912,7.5430316,0,33.546756,66.950489,126.58168,9.1561662,4699.2729,180.6711175,673.806229,0,0,4.5322658,0,0,0,8.21E-06,0.82044371,0,8.00E-04,0,3.06769313,24.39548109,129.82302,16.40773077,22.72448276,0.24595899,37118.77109,0.006640162,0,0 +1957,2.384773,1.477494579,0,0,5.084522572,0.18587639,102.11597,2.8571248,4.9612019,7.3765313,0,32.871446,72.204141,127.41838,11.488509,4733.2024,186.0555677,695.9496131,0,0,5.9875108,0,0,0,8.25E-06,0.92977447,0,8.03E-04,0,3.122765936,25.10938271,135.5915206,17.20228851,23.82634945,0.24603635,38873.75431,0.004342369,0,0 +1958,2.467095469,1.528597347,0,0,5.060488043,0.17928487,107.206,2.9954591,5.6330503,6.9087313,0,34.746284,80.925329,128.42262,14.781202,4771.3965,188.3855399,661.2854858,0,0,7.120204,0,0,0,8.29E-06,1.0371306,0,8.08E-04,0,3.184188319,25.26871426,129.2085836,17.04310474,22.2466504,0.2461131,39341.99136,0.002605294,1.53E-05,1.55E-04 +1959,2.603672914,1.473668289,0,0,5.186762349,0.18081021,112.29185,3.2476716,6.3880226,6.8760458,0,43.506257,93.983467,129.47587,18.063698,4808.726,192.6867573,665.4367222,0,0,8.0253807,0,0,0,8.33E-06,1.1424694,0,8.12E-04,0,3.250322629,25.78456832,131.2104974,17.51526633,22.13695045,0.30755864,41319.47351,8.68E-04,1.22E-04,0.001246036 +1960,2.728446849,1.461519532,0,0,5.288213084,0.17259465,117.2597,3.3209398,7.3201718,7.2392631,0,56.281481,107.5417,130.53321,21.750437,4847.0424,197.2611005,668.565663,0,0,9.5885732,0,0,0,8.37E-06,1.2458107,0,8.17E-04,0,3.323928526,26.12794679,133.3368149,18.13798676,22.06866314,0.4304021,42970.73471,-8.68E-04,2.31E-04,0.002375087 +1961,2.75210185,1.531158202,0,0,5.280187775,0.16861102,121.58986,3.4304351,8.4287849,7.4514735,0.001861801,70.618557,123.80387,131.26152,27.278298,4864.0212,205.1383413,701.0053453,0,0,11.884386,0,0,0,8.37E-06,1.346892,0,8.17E-04,0,3.545375735,26.8897385,143.5652635,18.73899699,23.37357314,0.55328481,48370.7476,-0.002605324,2.49E-04,0.003546415 +1962,2.868392579,1.520724684,0,0,5.268371109,0.17112099,125.71015,3.6249821,9.6127678,7.5805279,0.045181371,86.214551,144.89716,132.4011,32.049021,4895.6486,207.2122992,678.8492234,0,0,14.500089,0,0,0,8.41E-06,1.4460951,0,8.21E-04,0,3.678783292,27.3913443,140.105892,19.33292939,22.55009464,0.61483924,49373.46267,-0.004342521,2.53E-04,0.004920676 +1963,3.036186161,1.527209311,0,0,5.437875743,0.18314033,128.88013,3.9881367,10.949721,7.9110854,0.24720738,101.83231,167.67883,132.99126,37.52532,4904.2354,216.1922656,741.3196016,0,0,17.280228,0,0,0,8.39E-06,1.5429261,0,8.19E-04,0,3.803776307,28.74464761,156.130954,20.52084737,24.60921093,0.55366285,50918.54792,-0.007869931,3.52E-04,0.005972759 +1964,3.193585727,1.518253087,0,0,5.259909465,0.20130699,129.76929,4.4326257,12.657214,8.4778946,0.46848862,116.30072,189.8766,134.07707,49.914046,4933.087,216.556163,689.11146,0,0,20.771971,0,0,0,8.44E-06,1.6379776,0,8.24E-04,0,3.945754292,28.60741633,146.4547756,21.25062666,22.37762398,0.49245891,52831.63767,-7.60E-04,0.001030371,0.033580017 +1965,3.342046615,1.549410355,0,0,5.270010253,0.2250418,129.69213,4.9089192,14.528257,9.0358315,0.58010695,130.83984,213.3919,135.19804,70.507935,4953.0596,222.6664157,709.3122963,0,0,25.0603,0,0,0,8.46E-06,1.7308461,0,8.27E-04,0,4.115195266,29.97215368,153.4053912,22.08301054,22.64997293,0.4926084,54063.80178,0.015948649,0.002140689,0.11324642 +1966,3.50172055,1.551765281,0,0,5.285174796,0.26721734,129.70542,5.6248074,16.547774,9.5008952,0.77191369,147.99606,240.15802,136.46754,94.258765,4976.4474,226.3106958,710.9414665,0,0,30.477075,0,0,0,8.51E-06,1.8217969,0,8.32E-04,0,4.311197356,31.55306755,156.4949809,22.8477914,22.43429714,0.61550021,55269.31676,0.069786165,0.003103097,0.20275693 +1967,3.625966014,1.595865386,0,0,5.390458849,0.32052973,129.68847,6.3547572,18.918172,9.9208119,1.0373,169.42177,269.58286,137.66763,116.32544,4995.4184,232.3331465,746.2098209,0,0,36.036945,1.25E-05,0,6.90E-05,8.54E-06,1.9105949,0,8.37E-04,0,4.481777635,33.16777605,164.7753162,24.19623738,23.58529354,0.7384486,54762.8971,0.24404072,0.003754249,0.26151045 +1968,3.834595266,1.546993091,0,0,5.370373092,0.40423022,129.73308,7.3324415,21.713594,10.295172,1.3673824,195.13757,299.71437,139.24379,133.08156,5029.5667,235.3354027,740.4824182,0,0.009237978,40.359034,8.80E-05,0,4.86E-04,8.63E-06,1.9976935,0,8.46E-04,0,4.618299686,34.38157284,165.0957088,25.41081254,22.82579691,0.67731523,56868.37887,0.44305972,0.005543179,0.29037411 +1969,4.061567727,1.543708902,0,0,5.404091613,0.5206411,129.76058,8.4831718,24.938178,10.638634,1.7120901,220.72612,327.55328,140.05867,146.61896,5026.2804,239.1848516,747.0297315,0,0.18322115,44.144508,9.37E-05,0,5.04E-04,0.009824818,2.0817369,0,8.45E-04,0,4.732615323,34.96181251,169.6815713,26.06506901,22.10048951,0.67751619,58467.8108,0.55613635,0.03648951,0.30862539 +1970,4.323514044,1.531929069,0,0,5.549708797,0.6581692,129.69302,9.5318801,28.576904,11.00827,1.8909658,245.38621,354.60102,141.52757,173.56366,5048.3132,244.4183955,781.0375523,0,0.60795801,49.037394,2.47E-05,0,1.09E-04,0.036330653,2.1644992,0,8.52E-04,0,4.714190308,37.46957853,179.6859547,27.82408407,22.78022432,0.80047128,61529.77979,0.64373178,0.11813403,0.34789664 +1971,4.510244869,1.405554242,0,0,5.703748992,0.82992065,129.60227,10.711494,32.729139,11.452529,2.1402118,276.44309,387.53989,143.1196,217.72405,5067.5026,249.2895331,796.2029425,0,0.8564576,55.790888,1.33E-05,0,4.26E-05,0.064586906,2.2451174,0,8.59E-04,0,4.663522046,38.13342516,183.5355579,28.61726398,23.19511601,0.86210262,61716.79563,0.78786166,0.2232129,0.40686343 +1972,4.706494312,1.326937135,0,0,5.971153375,1.0559029,129.65777,12.24311,37.465523,11.97792,2.5517628,314.22879,427.68026,144.52172,267.60333,5079.1924,257.2102054,868.4735708,0,0.87667663,61.456633,1.35E-05,0,4.30E-05,0.082580189,2.3233295,0,8.64E-04,0,4.93074212,39.56446297,196.6655247,30.23622151,25.52743454,0.86237286,63465.10424,1.0951867,0.31882408,0.4721474 +1973,4.975651786,1.318385656,0,0,5.895831576,1.330787,129.79157,14.085332,42.979262,12.585161,2.92937,338.0693,454.71123,146.54158,301.85553,5118.3195,260.294725,826.0293132,0,0.82240702,65.420113,1.38E-05,0,5.50E-05,0.090214925,2.4006492,0,8.77E-04,0,5.050826137,39.95714271,186.5259319,31.24009688,23.45564811,0.92401065,66317.71189,1.5930673,0.39726303,0.54390644 +1974,4.948149198,1.290549,0,0,5.971643938,1.4191691,129.76026,14.311146,49.247959,13.447442,3.5184015,340.6055,453.22872,147.80664,327.35544,5113.8208,261.8082771,824.6214022,0,0.76119143,71.666995,1.40E-05,0,0.052416219,0.087063163,2.474116,0,8.78E-04,0,5.034419125,40.69211664,183.6005251,31.07740605,23.59962462,1.0394718,65371.62667,2.1806547,0.67241083,0.65809554 +1975,4.9286224,1.303204964,0,0,5.998431374,1.4004084,129.65616,14.321042,57.565811,14.538442,4.2176868,337.71465,440.16522,148.91662,384.99818,5104.4298,263.0585486,816.9194859,0,0.80304672,79.153904,1.42E-05,0,0.19213674,0.072875586,2.545125,0,8.78E-04,0,5.206812767,41.4767259,177.5130673,30.76637271,23.12965379,1.1646458,64182.76882,2.8018363,1.2682709,0.8287437 +1976,5.194661022,1.320205358,0,0,6.237496532,1.5554771,129.63321,16.011714,57.24638,15.386466,4.743647,329.27602,426.10768,150.23158,475.43135,5104.2152,269.9482097,856.0634915,0,0.82394648,92.664426,1.44E-05,0,0.33759564,0.047412585,2.614347,0,8.80E-04,0,5.352361697,42.52135697,186.2474273,32.28663209,24.40571792,1.4235416,67153.40876,3.4107057,1.8435573,0.98712807 +1977,5.36442864,1.352097971,0,0,6.353178768,1.692355,129.63647,16.762577,55.875241,15.71703,5.1782548,306.11158,404.2283,152.04264,533.0325,5117.6518,274.0301524,868.4313097,0,0.93269902,109.06413,2.14E-06,0,0.42456315,0.022180513,3.5323931,0,8.87E-04,0,5.499463795,43.27485688,189.2255323,33.05929028,24.38724427,2.1583469,67777.19082,3.8826089,2.1420878,1.0852977 +1978,5.581802903,1.2993019,0,0,6.579044818,1.7691766,130.48849,16.898235,72.245349,15.529417,5.5214166,278.45958,383.9896,153.91731,529.79652,5132.0601,276.3333545,897.4051484,0,1.277913,112.78031,-6.25E-05,0,0.45249588,-0.059867027,4.661461,0,8.95E-04,0,5.625120896,44.24089207,192.9347955,34.2691933,25.01974419,2.8286901,68023.04188,4.2701212,2.1599238,1.1209157 +1979,5.73073214,1.252317648,0,0,6.677231649,1.9203395,128.37989,17.898313,94.634628,14.991238,6.1020639,271.13342,394.80033,155.58904,518.50501,5138.651,281.6000656,900.4664227,0,1.7595655,113.22088,-2.04E-06,0,0.42017076,-0.17766763,5.0937882,0,9.00E-04,0,5.807081799,45.13478108,196.0169029,35.01398718,25.21247986,2.8296177,69119.86371,4.6513697,2.0579417,1.1328091 +1980,5.650947967,1.244135794,0,0,6.618387125,1.9633226,125.08456,17.664267,120.23426,14.760861,7.2362595,276.09356,398.43779,157.04196,513.02719,5131.8984,283.3464702,890.5114952,0,2.0330453,118.29604,7.94E-05,0,0.35605477,-0.12485274,5.1732709,0,9.02E-04,8.17E-05,5.872959052,45.97852705,194.391242,34.76440147,25.23254566,2.8304823,68783.84557,5.1129913,2.1545661,1.1562096 +1981,5.539335981,1.252813549,0,0,6.57778223,1.7391266,126.52811,16.187192,128.45086,13.920115,8.6372447,271.00597,403.07178,158.51506,516.86109,5123.4643,279.7894207,875.7816094,0,1.96562,122.37567,1.71E-05,0,0.32601335,0.11779446,4.4274361,0,9.03E-04,6.97E-04,5.805407446,46.37436562,189.1686139,34.11541673,24.87329597,2.9541119,66688.82722,6.0090215,2.4863888,1.1742814 +1982,5.477249508,1.258145478,0,0,6.915258578,1.6205522,129.38621,15.97381,128.57689,13.885459,9.2748324,277.72577,391.79861,159.18065,532.93449,5083.3728,287.6693154,967.4292983,0,1.6573364,125.26367,-8.23E-05,0,0.33083911,0.22216908,3.5575865,0,8.94E-04,0.001578501,6.043062728,47.66689068,206.8844648,34.15609141,28.27220571,2.9550432,65532.30175,6.4693449,3.0131287,1.352411 +1983,5.483062193,1.433024176,0,0,6.625402214,1.8456854,130.75989,16.384525,150.74703,15.564841,9.057039,353.29433,385.70972,160.09109,547.19948,5047.3484,281.6176584,862.0214943,0,1.3378778,129.4055,-2.71E-05,0,0.33559498,0.09748991,3.8040369,0,8.87E-04,0.002017846,6.06583408,47.6454021,183.8358223,33.28512898,24.45951343,3.2014371,64552.41617,6.0034055,3.8198142,1.378774 +1984,5.619005091,1.461224853,0,0,6.815018955,1.954181,134.9934,14.927399,167.86607,17.177696,10.537606,352.61795,438.30954,162.15076,546.6524,5054.1956,285.0030452,889.7020107,0,1.2391705,137.14097,8.66E-05,0,0.48356263,0.027417786,4.8805395,0,8.93E-04,0.004307161,5.996375963,48.69349353,189.3335257,34.32486538,25.32627636,3.570683,65309.89915,6.3412338,4.7987259,1.1329507 +1985,5.678895003,1.499743779,0,0,6.922761989,1.930951,138.44665,13.863624,191.20489,18.042992,12.093107,321.80334,487.46531,164.43684,559.24581,5072.7864,285.6752697,906.9368199,0,1.4290266,148.48134,2.16E-04,0,0.56320674,0.085787554,5.2553933,0,9.02E-04,0.012966035,5.996554239,49.41563613,190.4568857,34.8615092,25.83243998,3.6945657,65474.08715,7.6862714,5.5359652,1.1864916 +1986,5.784334368,1.530113569,0,0,7.013703662,2.0447892,134.66824,14.595216,226.48099,17.343175,11.156209,363.19165,561.19711,166.53505,605.54478,5079.9439,290.8084488,914.5218093,0,2.1480617,163.26271,2.16E-04,6.84E-04,0.57273931,0.044305139,5.6896951,0,9.08E-04,0.028102657,6.123193923,50.21167874,195.6652235,35.24652923,25.91211685,3.9411958,65479.27148,8.6199267,5.6626388,1.453026 +1987,5.942054872,1.515689335,0,0,7.200139154,2.1868179,140.05915,15.122737,234.71551,15.986362,11.176584,377.17492,543.59326,168.70781,636.85035,5087.8651,295.0485147,952.0611492,0.001157823,3.2631248,177.25124,5.82E-05,0.004878587,0.79616882,-0.099665792,6.5386064,0,9.14E-04,0.044783508,6.350228642,51.33101366,203.5851701,36.43815818,27.25186717,4.3106697,66721.094,9.1692428,5.2412687,1.7364871 +1988,6.133362797,1.515094775,0,0,7.39663506,2.2384091,134.89421,15.295333,225.34631,14.052169,12.063592,324.40759,433.01446,171.54521,645.54402,5119.7697,298.6854951,950.4151874,0.34924766,5.2661192,185.3279,0.021115007,0.06849384,0.88192316,-0.073662439,6.6278139,0,9.28E-04,0.060567348,6.188309996,51.72677742,203.5322276,37.79778929,27.18506613,4.6802608,67287.4839,10.094657,4.7030971,1.770198 +1989,6.211121149,1.53212989,0,0,7.320233668,2.2075539,105.50252,15.212081,212.83728,10.119863,11.292045,246.46809,357.7641,174.22363,713.52261,5139.3872,302.1641744,930.8467755,0.72136249,10.730464,189.56819,0.31476996,0.67304705,0.82629641,0.054397397,6.6572182,0,0.006065534,0.076147787,6.264529715,52.06403696,200.3165052,38.13825088,26.33140677,5.0499664,67312.93275,10.904862,4.3864096,1.6702493 +1990,6.186811699,1.445096887,0,0,7.508271532,2.1076967,86.426532,14.407865,176.8456,7.0905085,10.591201,208.25652,333.97703,176.36773,658.40311,5137.248,305.2725547,940.5626313,1.5203264,17.768055,192.30881,0.96053501,1.7208698,0.69729352,0.18589003,6.6838429,0,0.02696988,0.091767095,6.277152283,52.52170068,203.021231,38.25721546,27.36536835,5.1743108,67094.07179,10.051338,4.2741531,1.7373255 +1991,6.190131152,1.63686011,0,0,8.011536269,1.982897,85.142226,12.924815,120.64491,6.9542228,10.775591,159.81289,286.27307,177.30503,474.47964,5089.9323,318.7311921,1129.983883,6.9394223,22.06288,185.52075,1.727734,2.7251313,0.70613627,0.24819351,7.0572566,0,0.058141591,0.10715402,6.344945592,54.26130892,244.4286341,39.69249193,34.39493833,5.29866,66472.31502,9.6580528,4.1585749,1.6735462 +1992,6.145912973,1.683057085,0,0,7.364888993,1.9500444,85.437279,11.907588,74.361852,5.3089984,10.120439,106.91739,227.43518,179.3441,361.04368,5056.1355,299.4017955,913.3754186,22.26499,24.233416,194.061,2.4767485,4.0250116,1.0018637,0.18194194,7.9102615,0,0.088755914,0.12273589,6.358476439,52.37759099,198.238473,38.71717596,26.64897689,5.4230636,64223.92565,10.784362,3.8127392,1.4631107 +1993,6.193394815,1.54672743,0,0,7.531122847,1.9984803,84.458339,11.381334,50.567396,3.463778,8.6771649,84.3251,231.9618,179.76429,256.33383,5078.4684,299.4425141,941.8816353,34.33223,22.551362,208.33854,3.0949997,11.967198,1.5166355,0.157163,8.3534838,0,0.1188094,0.13825367,6.310752017,52.78275226,203.7757832,39.74372709,28.11499626,5.424762,63195.55052,11.612337,3.3180441,1.2514505 +1994,6.240067755,1.503716685,0,0,7.895732734,2.1430557,86.05046,11.006658,37.565451,4.6095776,8.163643,85.893495,238.58315,178.03958,159.08791,5003.2837,310.2518368,1060.282744,45.287421,24.423112,237.88968,3.5515518,24.558229,2.3253155,0.20390529,8.737968,0,0.14808425,0.15358509,6.441827,54.21042307,231.0503543,40.27137016,33.14335063,5.5491826,61820.50124,11.303115,2.9604627,1.1962062 +1995,6.377386454,1.486080505,0,0,7.813189501,2.3880707,80.480245,10.682998,23.473127,5.7076242,7.6747577,86.264975,210.72453,180.13151,95.783763,5016.3948,305.4095889,955.0363062,51.095458,27.59918,230.3453,3.8771223,36.211193,3.4395305,0.29614801,9.315257,0,0.17780027,0.16982122,6.504076136,53.41671788,206.4742485,40.45040793,29.71540754,5.6736625,60635.50707,11.011358,2.8923304,1.0842597 +1996,6.511379279,1.470193985,0,0,7.686339551,2.6638414,75.256035,10.505743,13.005309,4.6522227,5.5242189,85.278741,170.78176,183.444,59.514335,5297.7083,307.2912075,930.0218807,53.568363,26.00128,224.86947,4.0579149,48.538296,4.5014521,0.39044285,9.7707047,0,0.20547879,0.23841137,6.542220103,53.42127729,200.8724208,40.45019229,28.71419152,5.5527008,59650.01603,10.510994,2.8654227,0.84755661 +1997,6.574573879,2.18331399,0,0,8.269788743,2.8728437,75.489912,10.417958,10.398164,3.7691062,3.4559389,86.341446,160.63531,180.149,29.550907,5288.9251,331.2889198,1204.992305,55.763481,29.370536,240.5221,4.6266327,58.758537,5.5717023,0.427562,9.7952259,4.96E-05,0.25820595,0.31501343,6.740456045,56.11803189,264.6751503,41.89315592,38.34138232,5.7834259,59868.27682,9.8242768,2.8566852,0.76826308 +1998,6.590459871,1.541245282,0,0,8.412226876,2.9899069,72.916263,10.335348,12.992477,3.9615346,2.9318362,86.348141,156.67666,176.1082,23.412636,5175.5355,315.3326212,1085.430599,55.956781,28.471196,234.46613,6.9049469,70.049792,6.8917397,0.54029666,10.02529,3.58E-04,0.60512272,0.38665542,6.446521521,56.58934432,232.3180182,42.33468434,37.8122783,5.6031107,58604.36759,10.323837,2.701239,0.76943857 +1999,6.661329053,1.303430472,0,0,7.698162125,2.9607505,72.96355,10.216505,14.054175,3.9749853,3.1538842,82.703538,140.42544,168.37661,18.420173,5112.4264,309.4083709,940.700678,58.338707,25.741051,252.31636,8.6848445,91.978363,7.9486502,0.7424207,10.07373,0.003108151,1.0699013,0.49435229,6.281150807,54.7693723,205.1118782,40.94720104,30.44917133,5.1676463,55523.54474,10.262658,2.1509855,0.7706312 +2000,6.893167303,1.201338049,0,0,7.457347232,2.8153943,72.651408,9.9231457,9.4043884,3.9867142,2.3476518,76.330076,122.76605,165.25876,19.471227,5074.2696,310.1868098,886.5647302,56.341686,25.730152,263.60627,10.640667,99.657424,8.5987563,0.86319988,9.2978389,0.034006926,1.411492,0.57423278,6.112229814,54.50959652,195.3241582,41.26362178,27.9819784,5.2735332,55661.00151,9.4801348,1.9694412,0.77151922 +2001,6.957086928,0.961802096,0,0,7.591758769,3.0480682,70.656969,10.593275,5.9590471,3.2771364,1.1600545,68.271466,111.64066,165.599,19.806901,5094.2258,312.8963787,881.6703956,56.368781,24.490463,261.60586,11.075295,96.243251,9.8521252,0.94275566,8.9840003,0.80619906,1.6540309,0.63867332,6.188009183,54.70989639,196.1877828,41.37717554,27.87799844,5.3282102,56049.16643,8.8337936,2.3248261,0.74608572 +2002,7.097947295,1.070652511,0,0,8.046474187,3.4534372,70.456674,11.982167,3.1513602,2.420559,0.95011524,63.484809,101.90454,161.14055,12.302716,5096.5932,322.2788312,970.7244172,50.843174,25.156097,270.32175,12.214474,102.73275,11.617585,1.2107813,9.7208997,2.9170651,2.8037817,0.73327062,6.359556248,57.07665954,218.4604141,41.89878327,33.80824329,5.4976481,55687.52236,8.3685909,2.2797577,0.67660085 +2003,7.424688348,0.901041903,0,0,8.241697598,3.16329,69.839024,12.579882,5.7693016,1.7336337,0.74505988,62.277955,97.844828,158.92828,10.122917,5113.7538,328.1242242,944.7470786,44.441172,25.070909,287.30923,15.640539,117.40605,13.114832,1.560512,11.005369,5.226518,4.7856897,0.85366012,6.428305305,57.69037488,214.4033914,42.68216556,34.36218135,5.5417194,57641.7237,8.0831154,2.0262772,0.60195554 +2004,7.812644316,1.038213168,0,0,8.542465507,2.2029533,66.998563,12.194883,9.216749,1.4729969,0.75667708,60.966802,87.654103,156.21655,9.7469995,5141.4447,338.9417722,945.5469501,49.135801,28.554887,307.57676,15.758879,125.65071,13.097501,2.0510461,12.712613,6.6512131,5.4873038,0.97410928,6.590470047,58.11358477,216.6872834,44.5568559,32.33033041,5.6480085,60340.85189,7.5267646,2.1192661,0.55294607 +2005,8.093491316,1.025657164,0,0,8.840128386,1.9480504,63.195607,11.060838,4.6297025,1.8139658,0.58070615,60.331179,71.956593,154.12291,7.5405195,5209.9819,346.3955546,950.5924444,53.955471,33.447493,329.52471,16.143675,126.49199,12.434284,2.365528,14.626529,7.0791974,6.3606922,1.0845927,6.693579484,58.88341048,218.7880648,45.62238086,32.72399071,6.2799143,62587.82672,6.9433284,1.8947828,0.46971744 +2006,8.35813441,1.092642828,0,0,8.92564815,2.045423,60.048081,10.21735,0.6450641,1.7510311,0.58710647,63.037203,65.575271,152.41471,9.3190485,5272.2746,356.4696896,986.1510089,51.911598,36.489809,346.30497,19.891066,133.41048,14.118518,2.3531588,12.639849,6.8754044,8.3862482,1.1852524,6.875606953,60.37974253,229.8954395,46.63913374,34.3551466,6.9409178,63046.34515,6.3118449,1.5902358,0.43579597 +2007,8.681148087,0.966211967,0,0,9.284494092,1.7666158,57.257154,9.3272415,4.5089203,1.5545493,0.78280059,64.737513,61.623755,147.28895,9.6981304,5250.6823,355.0225755,945.8695944,49.953532,37.109679,357.26506,26.595246,127.25708,16.399738,2.4154053,9.3262891,6.6980995,8.4029745,1.2649376,6.596141361,60.96582609,219.7058707,48.13085999,33.27729799,6.9754073,62641.3592,5.7707437,1.7021554,0.59162888 +2008,8.733139806,0.668337987,0,0,9.091850914,1.746034,56.837697,9.0353429,8.3395339,1.9164483,0.45696793,63.060877,57.108479,144.47281,6.337645,5191.6855,360.4917105,912.5104843,54.881457,33.091627,362.72449,30.815622,138.28669,17.544095,2.6196596,8.8123411,7.076053,10.669375,1.3164863,6.638276368,61.31644175,214.695495,48.0350761,31.61901151,6.8835341,61275.77058,5.5737514,1.6171325,0.63840472 +2009,8.584990107,0.754863283,0,0,9.109514002,1.7995507,55.355253,9.6854874,5.7877004,1.6755174,0.3835494,60.065148,54.788238,144.24254,3.7694324,5145.2658,364.2003634,917.7292309,61.506343,32.081369,366.5558,33.926872,160.10848,21.142804,2.9666725,9.9336003,7.8522494,16.223306,1.4335012,6.712782947,61.3779593,218.7581143,46.48309573,31.77247637,7.159861,58721.16171,5.2570896,1.7272846,0.47723148 +2010,8.975543684,0.885110055,0,0,9.665129376,1.7742176,56.090865,10.48947,4.4070317,1.4644148,0.65896445,58.86009,52.271203,142.6745,2.4614781,5179.9719,370.8962528,953.2286303,65.209531,29.851794,361.74691,35.069515,165.044,20.460881,3.1827017,11.247607,8.7778712,15.914528,1.3375544,6.708375368,62.44447212,224.6021121,47.31829704,34.61053251,7.2759031,58249.45527,4.8975548,1.8511656,0.39655186 +2011,9.25596626,0.91365454,0,0,9.478876566,1.8467555,57.565927,11.056837,4.6237938,2.0468287,0.85601742,62.415615,52.120722,140.42156,3.0036158,5252.9333,372.6576832,906.7673675,67.690592,28.645628,366.94427,43.330418,190.47655,22.158614,3.410604,12.498165,9.4654578,20.415233,1.1291345,6.648935415,62.39874927,218.628754,48.49222156,32.51825927,7.4656928,58834.52202,4.3361773,2.096153,0.39105944 +2012,9.386649745,0.970689078,0,0,9.705285171,1.794986,59.464919,9.6609456,5.4529267,2.0520518,0.7168607,70.235225,53.35878,136.71475,3.0096674,5232.3317,380.8097666,949.6022184,63.311547,25.468261,356.29002,45.81505,205.00564,21.423,3.2771162,12.591587,9.054248,24.0671,0.98551995,6.742796632,63.84845417,229.1069362,48.17674509,35.82690196,7.7062836,57925.01408,3.8379813,1.7328717,0.41594871 +2013,9.659396496,0.91865757,0,0,9.560553735,1.6324652,62.512861,8.3027436,6.5167934,1.9408617,0.61330322,75.740842,54.819887,133.39273,1.8384424,5231.2321,381.5943928,901.2387566,59.817791,19.467118,342.89828,38.8888,202.01825,23.8069,2.9986006,11.604213,9.7859,21.452891,0.87225171,6.847910646,63.65097665,219.3811793,47.50620674,33.24556583,7.686158,57413.51787,3.5745493,0.96258078,0.44442215 +2014,9.719224641,1.095764818,0,0,9.744379658,1.6517,53.5475,9.8735,2.8024,1.6696,1.114899,54.9365,28.9612,133.6791,1.2625,5358.4982,387.8735392,964.0476182,59.82,22.47,358.8813,57.1243,200.0249,25.2487,3.5393,12.991,10.1025,30.4858,1.1516,6.916164551,65.03685366,233.525518,47.38523786,36.14582139,7.8784,57093.26142,3.481,1.2299,0.3854 +2015,9.724603237,0.959883081,0,0,9.727423577,1.57,47.5476,10.8699,0.8742,1.6696,1.6714,43.5734,14.6096,133.823,0,5404.8069,388.0727957,934.3498847,59.82,22.47,358.8813,78.7906,201.9534,32.381,3.6633,14.4857,11.7285,38.5792,1.1516,6.937624392,65.27970313,227.2448193,47.34877178,34.74602423,8.02,50464.18814,3.2933,1.3378,0.3481 +2016,9.835464875,0.844851277,0,0,9.78215876,1.54872,45.01716,10.60742242,0.78156,1.515231454,1.61422146,41.88082,12.88774,133.43352,0,5377.54322,396.977744,938.7207093,60.8428786,21.9901556,351.625206,85.38394,195.36684,34.04544,3.64859498,11.92944,12.1174182,31.77122,1.086787196,6.963399307,66.0504185,227.8836549,47.18627693,35.02706045,8.00504,49204.22589,3.07158,1.29166,0.33428 +2017,9.946326513,0.729819472,0,0,9.836893944,1.52744,42.48672,10.34494484,0.68892,1.360862908,1.55704292,40.18824,11.16588,133.04404,0,5350.27954,405.8826924,943.091534,61.8657572,21.5103112,344.369112,91.97728,188.78028,35.70988,3.63388996,9.37318,12.5063364,24.96324,1.021974392,6.989174222,66.82113386,228.5224904,47.02378207,35.30809667,7.99008,47944.26364,2.84986,1.24552,0.32046 +2018,10.05718815,0.614787667,0,0,9.891629127,1.50616,39.95628,10.08246726,0.59628,1.206494362,1.49986438,38.49566,9.44402,132.65456,0,5323.01586,414.7876408,947.4623587,62.8886358,21.0304668,337.113018,98.57062,182.19372,37.37432,3.61918494,6.81692,12.8952546,18.15526,0.957161588,7.014949136,67.59184922,229.161326,46.86128722,35.58913289,7.97512,46684.30139,2.62814,1.19938,0.30664 +2019,10.16804979,0.499755863,0,0,9.946364311,1.48488,37.42584,9.81998968,0.50364,1.052125816,1.44268584,36.80308,7.72216,132.26508,0,5295.75218,423.6925892,951.8331833,63.9115144,20.5506224,329.856924,105.16396,175.60716,39.03876,3.60447992,4.26066,13.2841728,11.34728,0.892348784,7.040724051,68.36256459,229.8001615,46.69879237,35.87016911,7.96016,45424.33914,2.40642,1.15324,0.29282 +2020,10.27891143,0.384724058,0,0,10.00109949,1.4636,34.8954,9.5575121,0.411,0.89775727,1.3855073,35.1105,6.0003,131.8756,0,5268.4885,432.5975376,956.204008,64.934393,20.070778,322.60083,111.7573,169.0206,40.7032,3.5897749,1.7044,13.673091,4.5393,0.82753598,7.066498966,69.13327995,230.4389971,46.53629751,36.15120534,7.9452,44164.37689,2.1847,1.1071,0.279 +2021,10.21879869,0.318841765,0,0,9.948060418,1.446,33.28538,9.28702459,0.37899,0.833926213,1.342148655,33.87909,5.50149,131.55347,0,5240.39283,428.7454136,954.4336677,63.8401921,19.2265454,304.67177,104.8391004,156.10999,38.15869,3.3325091,1.54453,12.81163448,4.11352,0.759260271,7.07424054,69.87493937,231.1577172,46.07602849,36.24536023,7.75999,43331.4825,2.06237,1.07222,0.26903 +2022,10.15868596,0.252959472,0,0,9.895021341,1.4284,31.67536,9.01653708,0.34698,0.770095156,1.29879001,32.64768,5.00268,131.23134,0,5212.29716,424.8932896,952.6633275,62.7459912,18.3823128,286.74271,97.9209008,143.19938,35.61418,3.0752433,1.38466,11.95017796,3.68774,0.690984562,7.081982115,70.61659879,231.8764374,45.61575947,36.33951513,7.57478,42498.58811,1.94004,1.03734,0.25906 +2023,10.09857323,0.187077179,0,0,9.841982265,1.4108,30.06534,8.74604957,0.31497,0.706264099,1.255431365,31.41627,4.50387,130.90921,0,5184.20149,421.0411657,950.8929873,61.6517903,17.5380802,268.81365,91.0027012,130.28877,33.06967,2.8179775,1.22479,11.08872144,3.26196,0.622708853,7.08972369,71.35825821,232.5951575,45.15549045,36.43367003,7.38957,41665.69373,1.81771,1.00246,0.24909 +2024,10.03846049,0.121194886,0,0,9.788943189,1.3932,28.45532,8.47556206,0.28296,0.642433042,1.21207272,30.18486,4.00506,130.58708,0,5156.10582,417.1890417,949.122647,60.5575894,16.6938476,250.88459,84.0845016,117.37816,30.52516,2.5607117,1.06492,10.22726492,2.83618,0.554433144,7.097465264,72.09991763,233.3138777,44.69522143,36.52782492,7.20436,40832.79934,1.69538,0.96758,0.23912 +2025,9.978347758,0.055312594,0,0,9.735904112,1.3756,26.8453,8.20507455,0.25095,0.578601985,1.168714075,28.95345,3.50625,130.26495,0,5128.01015,413.3369177,947.3523068,59.4633885,15.849615,232.95553,77.166302,104.46755,27.98065,2.3034459,0.90505,9.3658084,2.4104,0.486157435,7.105206839,72.84157705,234.0325978,44.23495241,36.62197982,7.01915,39999.90496,1.57305,0.9327,0.22915 +2026,9.918235024,0,0,0.010569699,9.682865036,1.358,25.23528,7.93458704,0.21894,0.514770928,1.12535543,27.72204,3.00744,129.94282,0,5099.91448,409.4847937,945.5819666,58.3691876,15.0053824,215.02647,70.2481024,91.55694,25.43614,2.0461801,0.74518,8.50435188,1.98462,0.417881726,7.112948414,73.58323647,234.751318,43.7746834,36.71613472,6.83394,39167.01057,1.45072,0.89782,0.21918 +2027,9.85812229,0,0,0.076451992,9.629825959,1.3404,23.62526,7.66409953,0.18693,0.450939871,1.081996785,26.49063,2.50863,129.62069,0,5071.81881,405.6326697,943.8116263,57.2749867,14.1611498,197.09741,63.3299028,78.64633,22.89163,1.7889143,0.58531,7.64289536,1.55884,0.349606017,7.120689988,74.32489589,235.4700381,43.31441438,36.81028961,6.64873,38334.11619,1.32839,0.86294,0.20921 +2028,9.798009556,0,0,0.142334285,9.576786883,1.3228,22.01524,7.39361202,0.15492,0.387108814,1.03863814,25.25922,2.00982,129.29856,0,5043.72314,401.7805458,942.0412861,56.1807858,13.3169172,179.16835,56.4117032,65.73572,20.34712,1.5316485,0.42544,6.78143884,1.13306,0.281330308,7.128431563,75.06655531,236.1887583,42.85414536,36.90444451,6.46352,37501.2218,1.20606,0.82806,0.19924 +2029,9.737896822,0,0,0.208216578,9.523747807,1.3052,20.40522,7.12312451,0.12291,0.323277757,0.995279495,24.02781,1.51101,128.97643,0,5015.62747,397.9284218,940.2709459,55.0865849,12.4726846,161.23929,49.4935036,52.82511,17.80261,1.2743827,0.26557,5.91998232,0.70728,0.213054599,7.136173137,75.80821473,236.9074784,42.39387634,36.99859941,6.27831,36668.32741,1.08373,0.79318,0.18927 +2030,9.677784089,0,0,0.274098871,9.47070873,1.2876,18.7952,6.852637,0.0909,0.2594467,0.95192085,22.7964,1.0122,128.6543,0,4987.5318,394.0762978,938.5006056,53.992384,11.628452,143.31023,42.575304,39.9145,15.2581,1.0171169,0.1057,5.0585258,0.2815,0.14477889,7.143914712,76.54987415,237.6261986,41.93360732,37.09275431,6.0931,35835.43303,0.9614,0.7583,0.1793 +2031,9.496475501,0,0,0.276179246,9.39545743,1.28508,17.92802,6.82924721,0.08382,0.241007612,0.922171126,21.99688,0.92805,128.60818,0,4985.10229,395.7516507,938.2507577,51.7698,10.82562094,131.008084,40.5667476,37.6394,14.56808,0.960791652,0.09797,4.83280221,0.26091,0.135433959,7.185894136,77.24198086,238.2759745,41.39244288,37.08198566,6.13589,35028.27332,0.90757,0.7344,0.1729 +2032,9.315166912,0,0,0.278259622,9.32020613,1.28256,17.06084,6.80585742,0.07674,0.222568525,0.892421402,21.19736,0.8439,128.56206,0,4982.67278,397.4270037,938.0009098,49.547216,10.02278988,118.705938,38.5581912,35.3643,13.87806,0.904466404,0.09024,4.60707862,0.24032,0.126089028,7.227873559,77.93408756,238.9257504,40.85127844,37.07121702,6.17868,34221.11361,0.85374,0.7105,0.1665 +2033,9.133858324,0,0,0.280339997,9.24495483,1.28004,16.19366,6.78246763,0.06966,0.204129437,0.862671678,20.39784,0.75975,128.51594,0,4980.24327,399.1023566,937.7510618,47.324632,9.21995882,106.403792,36.5496348,33.0892,13.18804,0.848141156,0.08251,4.38135503,0.21973,0.116744097,7.269852983,78.62619427,239.5755263,40.310114,37.06044837,6.22147,33413.9539,0.79991,0.6866,0.1601 +2034,8.952549736,0,0,0.282420372,9.169703529,1.27752,15.32648,6.75907784,0.06258,0.18569035,0.832921954,19.59832,0.6756,128.46982,0,4977.81376,400.7777096,937.5012139,45.102048,8.41712776,94.101646,34.5410784,30.8141,12.49802,0.791815908,0.07478,4.15563144,0.19914,0.107399166,7.311832407,79.31830098,240.2253022,39.76894956,37.04967973,6.26426,32606.79419,0.74608,0.6627,0.1537 +2035,8.771241148,0,0,0.284500748,9.094452229,1.275,14.4593,6.73568805,0.0555,0.167251262,0.80317223,18.7988,0.59145,128.4237,0,4975.38425,402.4530625,937.251366,42.879464,7.6142967,81.7995,32.532522,28.539,11.808,0.73549066,0.06705,3.92990785,0.17855,0.098054235,7.35381183,80.01040768,240.8750781,39.22778512,37.03891108,6.30705,31799.63447,0.69225,0.6388,0.1473 +2036,8.58993256,0,0,0.286581123,9.019200929,1.27248,13.59212,6.71229826,0.04842,0.148812174,0.773422506,17.99928,0.5073,128.37758,0,4972.95474,404.1284155,937.0015181,40.65688,6.81146564,69.497354,30.5239656,26.2639,11.11798,0.679165412,0.05932,3.70418426,0.15796,0.088709304,7.395791254,80.70251439,241.524854,38.68662068,37.02814244,6.34984,30992.47476,0.63842,0.6149,0.1409 +2037,8.408623972,0,0,0.288661498,8.943949629,1.26996,12.72494,6.68890847,0.04134,0.130373087,0.743672782,17.19976,0.42315,128.33146,0,4970.52523,405.8037684,936.7516701,38.434296,6.00863458,57.195208,28.5154092,23.9888,10.42796,0.622840164,0.05159,3.47846067,0.13737,0.079364373,7.437770677,81.3946211,242.1746299,38.14545624,37.01737379,6.39263,30185.31505,0.58459,0.591,0.1345 +2038,8.227315384,0,0,0.290741873,8.868698329,1.26744,11.85776,6.66551868,0.03426,0.111933999,0.713923058,16.40024,0.339,128.28534,0,4968.09572,407.4791214,936.5018222,36.211712,5.20580352,44.893062,26.5068528,21.7137,9.73794,0.566514916,0.04386,3.25273708,0.11678,0.070019442,7.479750101,82.08672781,242.8244058,37.6042918,37.00660515,6.43542,29378.15534,0.53076,0.5671,0.1281 +2039,8.046006796,0,0,0.292822249,8.793447028,1.26492,10.99058,6.64212889,0.02718,0.093494912,0.684173334,15.60072,0.25485,128.23922,0,4965.66621,409.1544743,936.2519743,33.989128,4.40297246,32.590916,24.4982964,19.4386,9.04792,0.510189668,0.03613,3.02701349,0.09619,0.060674511,7.521729525,82.77883451,243.4741817,37.06312736,36.9958365,6.47821,28570.99563,0.47693,0.5432,0.1217 +2040,7.864698208,0,0,0.294902624,8.718195728,1.2624,10.1234,6.6187391,0.0201,0.075055824,0.65442361,14.8012,0.1707,128.1931,0,4963.2367,410.8298273,936.0021263,31.766544,3.6001414,20.28877,22.48974,17.1635,8.3579,0.45386442,0.0284,2.8012899,0.0756,0.05132958,7.563708948,83.47094122,244.1239576,36.52196292,36.98506786,6.521,27763.83592,0.4231,0.5193,0.1153 +2041,7.635545624,0,0,0.281344443,8.597430638,1.25874,9.65632,6.59531932,0.01853,0.0697235,0.633957487,14.28209,0.15651,128.12611,0,4960.80407,411.0059938,933.7792966,30.4061322,3.34120265,18.44822429,21.12054249,16.07451,7.85556,0.424802224,0.02606,2.63631522,0.06937,0.047854396,7.603471021,84.0452245,243.7341923,35.9299419,36.7765987,6.57945,26960.11679,0.39941,0.50294,0.11118 +2042,7.40639304,0,0,0.267786262,8.476665548,1.25508,9.18924,6.57189954,0.01696,0.064391176,0.613491364,13.76298,0.14232,128.05912,0,4958.37144,411.1821604,931.5564668,29.0457204,3.0822639,16.60767858,19.75134498,14.98552,7.35322,0.395740028,0.02372,2.47134054,0.06314,0.044379211,7.643233093,84.61950777,243.3444271,35.33792088,36.56812954,6.6379,26156.39767,0.37572,0.48658,0.10706 +2043,7.177240455,0,0,0.254228082,8.355900458,1.25142,8.72216,6.54847976,0.01539,0.059058851,0.593025241,13.24387,0.12813,127.99213,0,4955.93881,411.358327,929.333637,27.6853086,2.82332515,14.76713287,18.38214747,13.89653,6.85088,0.366677832,0.02138,2.30636586,0.05691,0.040904026,7.682995166,85.19379105,242.9546618,34.74589985,36.35966038,6.69635,25352.67854,0.35203,0.47022,0.10294 +2044,6.948087871,0,0,0.240669901,8.235135368,1.24776,8.25508,6.52505998,0.01382,0.053726527,0.572559118,12.72476,0.11394,127.92514,0,4953.50618,411.5344936,927.1108072,26.3248968,2.5643864,12.92658716,17.01294996,12.80754,6.34854,0.337615636,0.01904,2.14139118,0.05068,0.037428842,7.722757239,85.76807432,242.5648966,34.15387883,36.15119122,6.7548,24548.95942,0.32834,0.45386,0.09882 +2045,6.718935287,0,0,0.22711172,8.114370278,1.2441,7.788,6.5016402,0.01225,0.048394203,0.552092995,12.20565,0.09975,127.85815,0,4951.07355,411.7106601,924.8879774,24.964485,2.30544765,11.08604145,15.64375245,11.71855,5.8462,0.30855344,0.0167,1.9764165,0.04445,0.033953658,7.762519311,86.3423576,242.1751313,33.56185781,35.94272206,6.81325,23745.24029,0.30465,0.4375,0.0947 +2046,6.489782703,0,0,0.213553539,7.993605188,1.24044,7.32092,6.47822042,0.01068,0.043061879,0.531626872,11.68654,0.08556,127.79116,0,4948.64092,411.8868267,922.6651476,23.6040732,2.0465089,9.24549574,14.27455494,10.62956,5.34386,0.279491244,0.01436,1.81144182,0.03822,0.030478473,7.802281384,86.91664088,241.7853661,32.96983679,35.7342529,6.8717,22941.52117,0.28096,0.42114,0.09058 +2047,6.260630119,0,0,0.199995359,7.872840099,1.23678,6.85384,6.45480064,0.00911,0.037729555,0.511160749,11.16743,0.07137,127.72417,0,4946.20829,412.0629933,920.4423179,22.2436614,1.78757015,7.40495003,12.90535743,9.54057,4.84152,0.250429048,0.01202,1.64646714,0.03199,0.027003289,7.842043457,87.49092415,241.3956009,32.37781576,35.52578374,6.93015,22137.80204,0.25727,0.40478,0.08646 +2048,6.031477535,0,0,0.186437178,7.752075009,1.23312,6.38676,6.43138086,0.00754,0.03239723,0.490694626,10.64832,0.05718,127.65718,0,4943.77566,412.2391599,918.2194881,20.8832496,1.5286314,5.56440432,11.53615992,8.45158,4.33918,0.221366852,0.00968,1.48149246,0.02576,0.023528104,7.881805529,88.06520743,241.0058356,31.78579474,35.31731458,6.9886,21334.08292,0.23358,0.38842,0.08234 +2049,5.802324951,0,0,0.172878997,7.631309919,1.22946,5.91968,6.40796108,0.00597,0.027064906,0.470228503,10.12921,0.04299,127.59019,0,4941.34303,412.4153265,915.9966583,19.5228378,1.26969265,3.72385861,10.16696241,7.36259,3.83684,0.192304656,0.00734,1.31651778,0.01953,0.020052919,7.921567602,88.63949071,240.6160704,31.19377372,35.10884542,7.04705,20530.36379,0.20989,0.37206,0.07822 +2050,5.573172366,0,0,0.159320816,7.510544829,1.2258,5.4526,6.3845413,0.0044,0.021732582,0.44976238,9.6101,0.0288,127.5232,0,4938.9104,412.591493,913.7738285,18.162426,1.0107539,1.8833129,8.7977649,6.2736,3.3345,0.16324246,0.005,1.1515431,0.0133,0.016577735,7.961329675,89.21377398,240.2263051,30.6017527,34.90037626,7.1055,19726.64467,0.1862,0.3557,0.0741 +2051,5.370517507,0,0,0.087188946,7.424306512,1.219,5.20103,6.3515116,0.00406,0.020186656,0.435696317,9.27305,0.02641,127.39874,0,4935.47959,412.814818,910.8375609,17.3846094,0.938056143,1.712466056,8.7959191,6.24242,3.33571,0.161143457,0.00475,1.15608497,0.01264,0.016344419,8.004659827,89.56742939,239.3712748,30.21392939,34.71437037,7.14306,19306.21127,0.17577,0.34449,0.07145 +2052,5.167862647,0,0,0.015057076,7.338068196,1.2122,4.94946,6.3184819,0.00372,0.01864073,0.421630254,8.936,0.02402,127.27428,0,4932.04878,413.038143,907.9012934,16.6067928,0.865358386,1.541619212,8.7940733,6.21124,3.33692,0.159044454,0.0045,1.16062684,0.01198,0.016111102,8.047989979,89.9210848,238.5162445,29.82610609,34.52836447,7.18062,18885.77788,0.16534,0.33328,0.0688 +2053,4.965207787,0.057074794,0,0,7.25182988,1.2054,4.69789,6.2854522,0.00338,0.017094804,0.407564191,8.59895,0.02163,127.14982,0,4928.61797,413.261468,904.9650258,15.8289762,0.792660629,1.370772368,8.7922275,6.18006,3.33813,0.156945451,0.00425,1.16516871,0.01132,0.015877786,8.09132013,90.27474021,237.6612142,29.43828279,34.34235858,7.21818,18465.34448,0.15491,0.32207,0.06615 +2054,4.762552928,0.129206664,0,0,7.165591564,1.1986,4.44632,6.2524225,0.00304,0.015548878,0.393498128,8.2619,0.01924,127.02536,0,4925.18716,413.484793,902.0287582,15.0511596,0.719962872,1.199925524,8.7903817,6.14888,3.33934,0.154846448,0.004,1.16971058,0.01066,0.01564447,8.134650282,90.62839562,236.8061839,29.05045949,34.15635269,7.25574,18044.91109,0.14448,0.31086,0.0635 +2055,4.559898068,0.201338534,0,0,7.079353248,1.1918,4.19475,6.2193928,0.0027,0.014002952,0.379432065,7.92485,0.01685,126.9009,0,4921.75635,413.708118,899.0924907,14.273343,0.647265115,1.02907868,8.7885359,6.1177,3.34055,0.152747445,0.00375,1.17425245,0.01,0.015411154,8.177980434,90.98205103,235.9511536,28.66263618,33.9703468,7.2933,17624.47769,0.13405,0.29965,0.06085 +2056,4.357243208,0.273470404,0,0,6.993114931,1.185,3.94318,6.1863631,0.00236,0.012457026,0.365366002,7.5878,0.01446,126.77644,0,4918.32554,413.931443,896.1562231,13.4955264,0.574567358,0.858231836,8.7866901,6.08652,3.34176,0.150648442,0.0035,1.17879432,0.00934,0.015177837,8.221310586,91.33570644,235.0961232,28.27481288,33.78434091,7.33086,17204.0443,0.12362,0.28844,0.0582 +2057,4.154588348,0.345602274,0,0,6.906876615,1.1782,3.69161,6.1533334,0.00202,0.0109111,0.351299939,7.25075,0.01207,126.65198,0,4914.89473,414.1547679,893.2199555,12.7177098,0.501869601,0.687384992,8.7848443,6.05534,3.34297,0.148549439,0.00325,1.18333619,0.00868,0.014944521,8.264640738,91.68936185,234.2410929,27.88698958,33.59833502,7.36842,16783.6109,0.11319,0.27723,0.05555 +2058,3.951933489,0.417734144,0,0,6.820638299,1.1714,3.44004,6.1203037,0.00168,0.009365174,0.337233876,6.9137,0.00968,126.52752,0,4911.46392,414.3780929,890.283688,11.9398932,0.429171844,0.516538148,8.7829985,6.02416,3.34418,0.146450436,0.003,1.18787806,0.00802,0.014711205,8.30797089,92.04301725,233.3860626,27.49916628,33.41232912,7.40598,16363.17751,0.10276,0.26602,0.0529 +2059,3.749278629,0.489866014,0,0,6.734399983,1.1646,3.18847,6.087274,0.00134,0.007819249,0.323167813,6.57665,0.00729,126.40306,0,4908.03311,414.6014179,887.3474204,11.1620766,0.356474087,0.345691304,8.7811527,5.99298,3.34539,0.144351433,0.00275,1.19241993,0.00736,0.014477888,8.351301042,92.39667266,232.5310323,27.11134297,33.22632323,7.44354,15942.74411,0.09233,0.25481,0.05025 +2060,3.546623769,0.561997884,0,0,6.648161667,1.1578,2.9369,6.0542443,0.001,0.006273323,0.30910175,6.2396,0.0049,126.2786,0,4904.6023,414.8247429,884.4111528,10.38426,0.28377633,0.17484446,8.7793069,5.9618,3.3466,0.14225243,0.0025,1.1969618,0.0067,0.014244572,8.394631194,92.75032807,231.676002,26.72351967,33.04031734,7.4811,15522.31072,0.0819,0.2436,0.0476 +2061,3.345237631,0.648766791,0,0,6.602461246,1.1522,2.80139,6.0321745,9.20E-04,0.005825228,0.299431331,6.02076,0.00449,126.17611,0,4902.3099,414.7038831,886.0396274,9.93955833,0.263361767,0.158985329,8.7568954,5.93725,3.34352,0.140309353,0.00237,1.19820246,0.00635,0.014060375,8.440614853,93.10187025,231.4865695,26.43912406,33.0837645,7.52442,15266.21252,0.07732,0.23592,0.0459 +2062,3.143851492,0.735535698,0,0,6.556760825,1.1466,2.66588,6.0101047,8.40E-04,0.005377134,0.289760912,5.80192,0.00408,126.07362,0,4900.0175,414.5830234,887.668102,9.49485666,0.242947203,0.143126197,8.7344839,5.9127,3.34044,0.138366276,0.00224,1.19944312,0.006,0.013876178,8.486598513,93.45341243,231.297137,26.15472844,33.12721167,7.56774,15010.11431,0.07274,0.22824,0.0442 +2063,2.942465354,0.822304606,0,0,6.511060404,1.141,2.53037,5.9880349,7.60E-04,0.004929039,0.280090493,5.58308,0.00367,125.97113,0,4897.7251,414.4621636,889.2965766,9.05015499,0.22253264,0.127267066,8.7120724,5.88815,3.33736,0.136423199,0.00211,1.20068378,0.00565,0.013691981,8.532582172,93.80495461,231.1077045,25.87033282,33.17065883,7.61106,14754.01611,0.06816,0.22056,0.0425 +2064,2.741079215,0.909073513,0,0,6.465359983,1.1354,2.39486,5.9659651,6.80E-04,0.004480945,0.270420074,5.36424,0.00326,125.86864,0,4895.4327,414.3413038,890.9250512,8.60545332,0.202118076,0.111407935,8.6896609,5.8636,3.33428,0.134480122,0.00198,1.20192444,0.0053,0.013507784,8.578565832,94.15649678,230.918272,25.58593721,33.21410599,7.65438,14497.91791,0.06358,0.21288,0.0408 +2065,2.539693077,0.99584242,0,0,6.419659562,1.1298,2.25935,5.9438953,6.00E-04,0.00403285,0.260749655,5.1454,0.00285,125.76615,0,4893.1403,414.2204441,892.5535257,8.16075165,0.181703513,0.095548804,8.6672494,5.83905,3.3312,0.132537045,0.00185,1.2031651,0.00495,0.013323587,8.624549491,94.50803896,230.7288395,25.30154159,33.25755316,7.6977,14241.81971,0.059,0.2052,0.0391 +2066,2.338306939,1.082611328,0,0,6.37395914,1.1242,2.12384,5.9218255,5.20E-04,0.003584756,0.251079236,4.92656,0.00244,125.66366,0,4890.8479,414.0995843,894.1820003,7.71604998,0.16128895,0.079689672,8.6448379,5.8145,3.32812,0.130593968,0.00172,1.20440576,0.0046,0.01313939,8.670533151,94.85958114,230.539407,25.01714598,33.30100032,7.74102,13985.72151,0.05442,0.19752,0.0374 +2067,2.1369208,1.169380235,0,0,6.328258719,1.1186,1.98833,5.8997557,4.40E-04,0.003136661,0.241408817,4.70772,0.00203,125.56117,0,4888.5555,413.9787245,895.8104749,7.27134831,0.140874386,0.063830541,8.6224264,5.78995,3.32504,0.128650891,0.00159,1.20564642,0.00425,0.012955193,8.71651681,95.21112331,230.3499745,24.73275036,33.34444748,7.78434,13729.62331,0.04984,0.18984,0.0357 +2068,1.935534662,1.256149142,0,0,6.282558298,1.113,1.85282,5.8776859,3.60E-04,0.002688567,0.231738398,4.48888,0.00162,125.45868,0,4886.2631,413.8578648,897.4389495,6.82664664,0.120459823,0.04797141,8.6000149,5.7654,3.32196,0.126707814,0.00146,1.20688708,0.0039,0.012770996,8.76250047,95.56266549,230.160542,24.44835474,33.38789465,7.82766,13473.52511,0.04526,0.18216,0.034 +2069,1.734148523,1.34291805,0,0,6.236857877,1.1074,1.71731,5.8556161,2.80E-04,0.002240472,0.222067979,4.27004,0.00121,125.35619,0,4883.9707,413.737005,899.067424,6.38194497,0.100045259,0.032112278,8.5776034,5.74085,3.31888,0.124764737,0.00133,1.20812774,0.00355,0.012586799,8.808484129,95.91420767,229.9711095,24.16395913,33.43134181,7.87098,13217.4269,0.04068,0.17448,0.0323 +2070,1.532762385,1.429686957,0,0,6.191157456,1.1018,1.5818,5.8335463,2.00E-04,0.001792378,0.21239756,4.0512,8.00E-04,125.2537,0,4881.6783,413.6161453,900.6958986,5.9372433,0.079630696,0.016253147,8.5551919,5.7163,3.3158,0.12282166,0.0012,1.2093684,0.0032,0.012402602,8.854467789,96.26574985,229.781677,23.87956351,33.47478898,7.9143,12961.3287,0.0361,0.1668,0.0306 +2071,1.321045669,1.446529587,0,0,6.13475292,1.0966,1.50882,5.82516638,1.80E-04,0.00165795,0.205751345,3.90912,7.30E-04,125.15852,0,4880.80787,412.8135951,895.1034338,5.68298413,0.073907751,0.014775588,8.51588246,5.70134,3.30391,0.121238412,0.00113,1.20753439,0.00301,0.012279804,8.899211828,96.55284902,228.5403115,23.56827175,33.37335302,7.95795,12763.73446,0.03408,0.16155,0.02951 +2072,1.109328953,1.463372217,0,0,6.078348384,1.0914,1.43584,5.81678646,1.60E-04,0.001523521,0.19910513,3.76704,6.60E-04,125.06334,0,4879.93744,412.0110449,889.510969,5.42872496,0.068184805,0.013298029,8.47657302,5.68638,3.29202,0.119655164,0.00106,1.20570038,0.00282,0.012157006,8.943955868,96.83994819,227.2989459,23.25697998,33.27191707,8.0016,12566.14022,0.03206,0.1563,0.02842 +2073,0.897612237,1.480214847,0,0,6.021943848,1.0862,1.36286,5.80840654,1.40E-04,0.001389093,0.192458915,3.62496,5.90E-04,124.96816,0,4879.06701,411.2084948,883.9185042,5.17446579,0.06246186,0.011820471,8.43726358,5.67142,3.28013,0.118071916,9.90E-04,1.20386637,0.00263,0.012034208,8.988699908,97.12704736,226.0575803,22.94568822,33.17048112,8.04525,12368.54598,0.03004,0.15105,0.02733 +2074,0.685895521,1.497057477,0,0,5.965539311,1.081,1.28988,5.80002662,1.20E-04,0.001254665,0.1858127,3.48288,5.20E-04,124.87298,0,4878.19658,410.4059446,878.3260394,4.92020662,0.056738915,0.010342912,8.39795414,5.65646,3.26824,0.116488668,9.20E-04,1.20203236,0.00244,0.01191141,9.033443947,97.41414653,224.8162147,22.63439646,33.06904517,8.0889,12170.95174,0.02802,0.1458,0.02624 +2075,0.474178805,1.513900106,0,0,5.909134775,1.0758,1.2169,5.7916467,1.00E-04,0.001120236,0.179166485,3.3408,4.50E-04,124.7778,0,4877.32615,409.6033945,872.7335746,4.66594745,0.05101597,0.008865353,8.3586447,5.6415,3.25635,0.11490542,8.50E-04,1.20019835,0.00225,0.011788612,9.078187987,97.7012457,223.5748491,22.32310469,32.96760922,8.13255,11973.3575,0.026,0.14055,0.02515 +2076,0.262462089,1.530742736,0,0,5.852730239,1.0706,1.14392,5.78326678,8.00E-05,9.86E-04,0.17252027,3.19872,3.80E-04,124.68262,0,4876.45572,408.8008443,867.1411097,4.41168828,0.045293024,0.007387794,8.31933526,5.62654,3.24446,0.113322172,7.80E-04,1.19836434,0.00206,0.011665813,9.122932027,97.98834487,222.3334836,22.01181293,32.86617327,8.1762,11775.76326,0.02398,0.1353,0.02406 +2077,0.050745373,1.547585366,0,0,5.796325702,1.0654,1.07094,5.77488686,6.00E-05,8.51E-04,0.165874055,3.05664,3.10E-04,124.58744,0,4875.58529,407.9982942,861.5486449,4.15742911,0.039570079,0.005910235,8.28002582,5.61158,3.23257,0.111738924,7.10E-04,1.19653033,0.00187,0.011543015,9.167676066,98.27544404,221.092118,21.70052117,32.76473732,8.21985,11578.16902,0.02196,0.13005,0.02297 +2078,0,1.564427996,0.160971343,0,5.739921166,1.0602,0.99796,5.76650694,4.00E-05,7.17E-04,0.15922784,2.91456,2.40E-04,124.49226,0,4874.71486,407.195744,855.9561801,3.90316994,0.033847134,0.004432676,8.24071638,5.59662,3.22068,0.110155676,6.40E-04,1.19469632,0.00168,0.011420217,9.212420106,98.56254321,219.8507524,21.3892294,32.66330137,8.2635,11380.57478,0.01994,0.1248,0.02188 +2079,0,1.581270626,0.372688059,0,5.68351663,1.055,0.92498,5.75812702,2.00E-05,5.83E-04,0.152581625,2.77248,1.70E-04,124.39708,0,4873.84443,406.3931939,850.3637153,3.64891077,0.028124188,0.002955118,8.20140694,5.58166,3.20879,0.108572428,5.70E-04,1.19286231,0.00149,0.011297419,9.257164146,98.84964238,218.6093868,21.07793764,32.56186542,8.30715,11182.98054,0.01792,0.11955,0.02079 +2080,0,1.598113256,0.584404775,0,5.627112094,1.0498,0.852,5.7497471,0,4.48E-04,0.14593541,2.6304,1.00E-04,124.3019,0,4872.974,405.5906437,844.7712505,3.3946516,0.022401243,0.001477559,8.1620975,5.5667,3.1969,0.10698918,5.00E-04,1.1910283,0.0013,0.011174621,9.301908186,99.13674155,217.3680212,20.76664588,32.46042947,8.3508,10985.3863,0.0159,0.1143,0.0197 +2081,0,1.53886922,0.78915852,0,5.526632366,1.05035,0.81269,5.75037709,0,4.26E-04,0.141363939,2.53814,9.00E-05,124.31197,0,4873.03944,404.0591186,827.249239,3.24927085,0.020790643,0.00134622,8.16403856,5.59142,3.19739,0.106317499,4.80E-04,1.19514943,0.00125,0.011137782,9.331011725,99.11150115,214.1385084,20.41330143,31.89254305,8.38727,10860.80514,0.01501,0.1107,0.01899 +2082,0,1.479625185,0.993912265,0,5.426152639,1.0509,0.77338,5.75100708,0,4.03E-04,0.136792468,2.44588,8.00E-05,124.32204,0,4873.10488,402.5275935,809.7272275,3.1038901,0.019180042,0.001214882,8.16597962,5.61614,3.19788,0.105645818,4.60E-04,1.19927056,0.0012,0.011100942,9.360115265,99.08626075,210.9089957,20.05995699,31.32465664,8.42374,10736.22397,0.01412,0.1071,0.01828 +2083,0,1.420381149,1.19866601,0,5.325672912,1.05145,0.73407,5.75163707,0,3.81E-04,0.132220997,2.35362,7.00E-05,124.33211,0,4873.17032,400.9960684,792.205216,2.95850935,0.017569442,0.001083543,8.16792068,5.64086,3.19837,0.104974137,4.40E-04,1.20339169,0.00115,0.011064103,9.389218805,99.06102035,207.6794829,19.70661255,30.75677022,8.46021,10611.64281,0.01323,0.1035,0.01757 +2084,0,1.361137113,1.403419755,0,5.225193185,1.052,0.69476,5.75226706,0,3.58E-04,0.127649526,2.26136,6.00E-05,124.34218,0,4873.23576,399.4645433,774.6832046,2.8131286,0.015958842,9.52E-04,8.16986174,5.66558,3.19886,0.104302456,4.20E-04,1.20751282,0.0011,0.011027263,9.418322345,99.03577995,204.4499701,19.35326811,30.18888381,8.49668,10487.06164,0.01234,0.0999,0.01686 +2085,0,1.301893077,1.6081735,0,5.124713458,1.05255,0.65545,5.75289705,0,3.36E-04,0.123078055,2.1691,5.00E-05,124.35225,0,4873.3012,397.9330182,757.1611931,2.66774785,0.014348241,8.21E-04,8.1718028,5.6903,3.19935,0.103630775,4.00E-04,1.21163395,0.00105,0.010990424,9.447425885,99.01053956,201.2204573,18.99992367,29.62099739,8.53315,10362.48048,0.01145,0.0963,0.01615 +2086,0,1.242649042,1.812927245,0,5.024233731,1.0531,0.61614,5.75352704,0,3.14E-04,0.118506584,2.07684,4.00E-05,124.36232,0,4873.36664,396.4014931,739.6391816,2.5223671,0.012737641,6.90E-04,8.17374386,5.71502,3.19984,0.102959094,3.80E-04,1.21575508,0.001,0.010953585,9.476529425,98.98529916,197.9909445,18.64657923,29.05311097,8.56962,10237.89931,0.01056,0.0927,0.01544 +2087,0,1.183405006,2.01768099,0,4.923754004,1.05365,0.57683,5.75415703,0,2.91E-04,0.113935113,1.98458,3.00E-05,124.37239,0,4873.43208,394.869968,722.1171701,2.37698635,0.011127041,5.58E-04,8.17568492,5.73974,3.20033,0.102287413,3.60E-04,1.21987621,9.50E-04,0.010916745,9.505632964,98.96005876,194.7614317,18.29323479,28.48522456,8.60609,10113.31815,0.00967,0.0891,0.01473 +2088,0,1.12416097,2.222434736,0,4.823274276,1.0542,0.53752,5.75478702,0,2.69E-04,0.109363642,1.89232,2.00E-05,124.38246,0,4873.49752,393.3384429,704.5951586,2.2316056,0.00951644,4.27E-04,8.17762598,5.76446,3.20082,0.101615732,3.40E-04,1.22399734,9.00E-04,0.010879906,9.534736504,98.93481836,191.5319189,17.93989035,27.91733814,8.64256,9988.73698,0.00878,0.0855,0.01402 +2089,0,1.064916934,2.427188481,0,4.722794549,1.05475,0.49821,5.75541701,0,2.46E-04,0.104792171,1.80006,1.00E-05,124.39253,0,4873.56296,391.8069177,687.0731472,2.08622485,0.00790584,2.96E-04,8.17956704,5.78918,3.20131,0.100944051,3.20E-04,1.22811847,8.50E-04,0.010843066,9.563840044,98.90957796,188.3024061,17.58654591,27.34945173,8.67903,9864.155815,0.00789,0.0819,0.01331 +2090,0,1.005672899,2.631942226,0,4.622314822,1.0553,0.4589,5.756047,0,2.24E-04,0.1002207,1.7078,0,124.4026,0,4873.6284,390.2753926,669.5511357,1.9408441,0.00629524,1.64E-04,8.1815081,5.8139,3.2018,0.10027237,3.00E-04,1.2322396,8.00E-04,0.010806227,9.592943584,98.88433756,185.0728933,17.23320146,26.78156531,8.7155,9739.57465,0.007,0.0783,0.0126 +2091,0,0.945420941,2.8134067,0,4.534801113,1.05919,0.43762,5.76682691,0,2.02E-04,0.097055836,1.64769,0.0012,124.4738,0,4874.74811,388.8187899,654.8674382,1.86679494,0.007758679,0.001050708,8.18497343,5.83848,3.20314,0.099744621,2.70E-04,1.23567028,7.20E-04,0.010781667,9.59542479,98.62288081,182.4608496,16.90987294,26.31666716,8.75989,9660.133479,0.0071,0.07583,0.01215 +2092,0,0.885168984,2.994871173,0,4.447287404,1.06308,0.41634,5.77760682,0,1.79E-04,0.093890972,1.58758,0.0024,124.545,0,4875.86782,387.3621871,640.1837408,1.79274578,0.009222117,0.001937244,8.18843876,5.86306,3.20448,0.099216872,2.40E-04,1.23910096,6.40E-04,0.010757108,9.597905996,98.36142407,179.8488058,16.58654442,25.851769,8.80428,9580.692307,0.0072,0.07336,0.0117 +2093,0,0.824917027,3.176335647,0,4.359773695,1.06697,0.39506,5.78838673,0,1.57E-04,0.090726108,1.52747,0.0036,124.6162,0,4876.98753,385.9055844,625.5000433,1.71869662,0.010685556,0.002823779,8.19190409,5.88764,3.20582,0.098689123,2.10E-04,1.24253164,5.60E-04,0.010732548,9.600387202,98.09996732,177.2367621,16.2632159,25.38687085,8.84867,9501.251136,0.0073,0.07089,0.01125 +2094,0,0.76466507,3.357800121,0,4.272259986,1.07086,0.37378,5.79916664,0,1.34E-04,0.087561244,1.46736,0.0048,124.6874,0,4878.10724,384.4489816,610.8163459,1.64464746,0.012148995,0.003710314,8.19536942,5.91222,3.20716,0.098161374,1.80E-04,1.24596232,4.80E-04,0.010707989,9.602868408,97.83851057,174.6247183,15.93988738,24.9219727,8.89306,9421.809965,0.0074,0.06842,0.0108 +2095,0,0.704413112,3.539264595,0,4.184746276,1.07475,0.3525,5.80994655,0,1.12E-04,0.08439638,1.40725,0.006,124.7586,0,4879.22695,382.9923789,596.1326484,1.5705983,0.013612434,0.00459685,8.19883475,5.9368,3.2085,0.097633625,1.50E-04,1.249393,4.00E-04,0.010683429,9.605349614,97.57705382,172.0126746,15.61655886,24.45707455,8.93745,9342.368794,0.0075,0.06595,0.01035 +2096,0,0.644161155,3.720729069,0,4.097232567,1.07864,0.33122,5.82072646,0,8.96E-05,0.081231515,1.34714,0.0072,124.8298,0,4880.34666,381.5357761,581.448951,1.49654914,0.015075873,0.005483385,8.20230008,5.96138,3.20984,0.097105875,1.20E-04,1.25282368,3.20E-04,0.010658869,9.607830819,97.31559707,169.4006309,15.29323034,23.99217639,8.98184,9262.927623,0.0076,0.06348,0.0099 +2097,0,0.583909198,3.902193543,0,4.009718858,1.08253,0.30994,5.83150637,0,6.72E-05,0.078066651,1.28703,0.0084,124.901,0,4881.46637,380.0791734,566.7652535,1.42249998,0.016539312,0.00636992,8.20576541,5.98596,3.21118,0.096578126,9.00E-05,1.25625436,2.40E-04,0.01063431,9.610312025,97.05414032,166.7885871,14.96990182,23.52727824,9.02623,9183.486451,0.0077,0.06101,0.00945 +2098,0,0.52365724,4.083658016,0,3.922205149,1.08642,0.28866,5.84228628,0,4.48E-05,0.074901787,1.22692,0.0096,124.9722,0,4882.58608,378.6225706,552.081556,1.34845082,0.01800275,0.007256455,8.20923074,6.01054,3.21252,0.096050377,6.00E-05,1.25968504,1.60E-04,0.01060975,9.612793231,96.79268357,164.1765434,14.6465733,23.06238009,9.07062,9104.04528,0.0078,0.05854,0.009 +2099,0,0.463405283,4.26512249,0,3.83469144,1.09031,0.26738,5.85306619,0,2.24E-05,0.071736923,1.16681,0.0108,125.0434,0,4883.70579,377.1659678,537.3978586,1.27440166,0.019466189,0.008142991,8.21269607,6.03512,3.21386,0.095522628,3.00E-05,1.26311572,8.00E-05,0.010585191,9.615274437,96.53122682,161.5644996,14.32324478,22.59748193,9.11501,9024.604109,0.0079,0.05607,0.00855 +2100,0,0.403153326,4.446586964,0,3.747177731,1.0942,0.2461,5.8638461,0,0,0.068572059,1.1067,0.012,125.1146,0,4884.8255,375.7093651,522.7141611,1.2003525,0.020929628,0.009029526,8.2161614,6.0597,3.2152,0.094994879,0,1.2665464,0,0.010560631,9.617755643,96.26977007,158.9524559,13.99991626,22.13258378,9.1594,8945.162938,0.008,0.0536,0.0081 +2101,0,0.395090259,4.446586964,0,3.731596014,1.086905333,0.244459333,5.824753793,0,0,0.068114912,1.099322,0.01192,124.2805027,0,4852.259997,375.0229527,520.9713863,1.19235015,0.020790097,0.008969329,8.161386991,6.019302,3.193765333,0.09436158,0,1.258102757,0,0.010490227,9.606229677,96.18402694,158.1549797,13.94289603,22.07784786,9.098337333,8890.584058,0.007946667,0.053242667,0.008046 +2102,0,0.387027193,4.446586964,0,3.716014298,1.079610667,0.242818667,5.785661485,0,0,0.067657765,1.091944,0.01184,123.4464053,0,4819.694493,374.3365402,519.2286115,1.1843478,0.020650566,0.008909132,8.106612581,5.978904,3.172330667,0.093728281,0,1.249659115,0,0.010419823,9.59470371,96.09828381,157.3575035,13.8858758,22.02311194,9.037274667,8836.005178,0.007893333,0.052885333,0.007992 +2103,0,0.378964126,4.446586964,0,3.700432582,1.072316,0.241178,5.746569178,0,0,0.067200618,1.084566,0.01176,122.612308,0,4787.12899,373.6501278,517.4858368,1.17634545,0.020511035,0.008848935,8.051838172,5.938506,3.150896,0.093094981,0,1.241215472,0,0.010349418,9.583177744,96.01254067,156.5600273,13.82885557,21.96837602,8.976212,8781.426298,0.00784,0.052528,0.007938 +2104,0,0.37090106,4.446586964,0,3.684850865,1.065021333,0.239537333,5.707476871,0,0,0.066743471,1.077188,0.01168,121.7782107,0,4754.563487,372.9637154,515.743062,1.1683431,0.020371505,0.008788739,7.997063763,5.898108,3.129461333,0.092461682,0,1.232771829,0,0.010279014,9.571651778,95.92679754,155.7625511,13.77183534,21.9136401,8.915149333,8726.847418,0.007786667,0.052170667,0.007884 +2105,0,0.362837993,4.446586964,0,3.669269149,1.057726667,0.237896667,5.668384563,0,0,0.066286324,1.06981,0.0116,120.9441133,0,4721.997983,372.2773029,514.0002872,1.16034075,0.020231974,0.008728542,7.942289353,5.85771,3.108026667,0.091828383,0,1.224328187,0,0.01020861,9.560125811,95.84105441,154.9650749,13.71481511,21.85890419,8.854086667,8672.268538,0.007733333,0.051813333,0.00783 +2106,0,0.354774927,4.446586964,0,3.653687433,1.050432,0.236256,5.629292256,0,0,0.065829177,1.062432,0.01152,120.110016,0,4689.43248,371.5908905,512.2575124,1.1523384,0.020092443,0.008668345,7.887514944,5.817312,3.086592,0.091195084,0,1.215884544,0,0.010138206,9.548599845,95.75531128,154.1675987,13.65779488,21.80416827,8.793024,8617.689658,0.00768,0.051456,0.007776 +2107,0,0.34671186,4.446586964,0,3.638105716,1.043137333,0.234615333,5.590199949,0,0,0.06537203,1.055054,0.01144,119.2759187,0,4656.866977,370.9044781,510.5147376,1.14433605,0.019952912,0.008608148,7.832740535,5.776914,3.065157333,0.090561785,0,1.207440901,0,0.010067802,9.537073878,95.66956814,153.3701225,13.60077465,21.74943235,8.731961333,8563.110778,0.007626667,0.051098667,0.007722 +2108,0,0.338648794,4.446586964,0,3.622524,1.035842667,0.232974667,5.551107641,0,0,0.064914883,1.047676,0.01136,118.4418213,0,4624.301473,370.2180657,508.7719628,1.1363337,0.019813381,0.008547951,7.777966125,5.736516,3.043722667,0.089928485,0,1.198997259,0,0.009997397,9.525547912,95.58382501,152.5726463,13.54375442,21.69469643,8.670898667,8508.531899,0.007573333,0.050741333,0.007668 +2109,0,0.330585727,4.446586964,0,3.606942284,1.028548,0.231334,5.512015334,0,0,0.064457735,1.040298,0.01128,117.607724,0,4591.73597,369.5316532,507.029188,1.12833135,0.01967385,0.008487754,7.723191716,5.696118,3.022288,0.089295186,0,1.190553616,0,0.009926993,9.514021946,95.49808188,151.7751701,13.48673419,21.63996051,8.609836,8453.953019,0.00752,0.050384,0.007614 +2110,0,0.322522661,4.446586964,0,3.591360568,1.021253333,0.229693333,5.472923027,0,0,0.064000588,1.03292,0.0112,116.7736267,0,4559.170467,368.8452408,505.2864132,1.120329,0.019534319,0.008427558,7.668417307,5.65572,3.000853333,0.088661887,0,1.182109973,0,0.009856589,9.502495979,95.41233874,150.9776939,13.42971396,21.58522459,8.548773333,8399.374139,0.007466667,0.050026667,0.00756 +2111,0,0.314459594,4.446586964,0,3.575778851,1.013958667,0.228052667,5.433830719,0,0,0.063543441,1.025542,0.01112,115.9395293,0,4526.604963,368.1588284,503.5436384,1.11232665,0.019394789,0.008367361,7.613642897,5.615322,2.979418667,0.088028588,0,1.173666331,0,0.009786185,9.490970013,95.32659561,150.1802177,13.37269373,21.53048867,8.487710667,8344.795259,0.007413333,0.049669333,0.007506 +2112,0,0.306396528,4.446586964,0,3.560197135,1.006664,0.226412,5.394738412,0,0,0.063086294,1.018164,0.01104,115.105432,0,4494.03946,367.4724159,501.8008636,1.1043243,0.019255258,0.008307164,7.558868488,5.574924,2.957984,0.087395289,0,1.165222688,0,0.009715781,9.479444047,95.24085248,149.3827415,13.3156735,21.47575275,8.426648,8290.216379,0.00736,0.049312,0.007452 +2113,0,0.298333461,4.446586964,0,3.544615419,0.999369333,0.224771333,5.355646105,0,0,0.062629147,1.010786,0.01096,114.2713347,0,4461.473957,366.7860035,500.0580888,1.09632195,0.019115727,0.008246967,7.504094079,5.534526,2.936549333,0.086761989,0,1.156779045,0,0.009645376,9.46791808,95.15510934,148.5852653,13.25865327,21.42101684,8.365585333,8235.637499,0.007306667,0.048954667,0.007398 +2114,0,0.290270395,4.446586964,0,3.529033702,0.992074667,0.223130667,5.316553797,0,0,0.062172,1.003408,0.01088,113.4372373,0,4428.908453,366.0995911,498.315314,1.0883196,0.018976196,0.00818677,7.449319669,5.494128,2.915114667,0.08612869,0,1.148335403,0,0.009574972,9.456392114,95.06936621,147.7877891,13.20163304,21.36628092,8.304522667,8181.058619,0.007253333,0.048597333,0.007344 +2115,0,0.282207328,4.446586964,0,3.513451986,0.98478,0.22149,5.27746149,0,0,0.061714853,0.99603,0.0108,112.60314,0,4396.34295,365.4131787,496.5725392,1.08031725,0.018836665,0.008126573,7.39454526,5.45373,2.89368,0.085495391,0,1.13989176,0,0.009504568,9.444866147,94.98362308,146.9903129,13.14461282,21.311545,8.24346,8126.479739,0.0072,0.04824,0.00729 +2116,0,0.274144262,4.446586964,0,3.49787027,0.977485333,0.219849333,5.238369183,0,0,0.061257706,0.988652,0.01072,111.7690427,0,4363.777447,364.7267662,494.8297644,1.0723149,0.018697134,0.008066377,7.339770851,5.413332,2.872245333,0.084862092,0,1.131448117,0,0.009434164,9.433340181,94.89787995,146.1928367,13.08759259,21.25680908,8.182397333,8071.900859,0.007146667,0.047882667,0.007236 +2117,0,0.266081195,4.446586964,0,3.482288553,0.970190667,0.218208667,5.199276875,0,0,0.060800559,0.981274,0.01064,110.9349453,0,4331.211943,364.0403538,493.0869896,1.06431255,0.018557603,0.00800618,7.284996441,5.372934,2.850810667,0.084228793,0,1.123004475,0,0.009363759,9.421814215,94.81213681,145.3953605,13.03057236,21.20207316,8.121334667,8017.32198,0.007093333,0.047525333,0.007182 +2118,0,0.258018129,4.446586964,0,3.466706837,0.962896,0.216568,5.160184568,0,0,0.060343412,0.973896,0.01056,110.100848,0,4298.64644,363.3539414,491.3442148,1.0563102,0.018418073,0.007945983,7.230222032,5.332536,2.829376,0.083595494,0,1.114560832,0,0.009293355,9.410288248,94.72639368,144.5978843,12.97355213,21.14733724,8.060272,7962.7431,0.00704,0.047168,0.007128 +2119,0,0.249955062,4.446586964,0,3.451125121,0.955601333,0.214927333,5.121092261,0,0,0.059886265,0.966518,0.01048,109.2667507,0,4266.080937,362.6675289,489.6014401,1.04830785,0.018278542,0.007885786,7.175447623,5.292138,2.807941333,0.082962194,0,1.106117189,0,0.009222951,9.398762282,94.64065055,143.8004081,12.9165319,21.09260132,7.999209333,7908.16422,0.006986667,0.046810667,0.007074 +2120,0,0.241891996,4.446586964,0,3.435543404,0.948306667,0.213286667,5.081999953,0,0,0.059429118,0.95914,0.0104,108.4326533,0,4233.515433,361.9811165,487.8586653,1.0403055,0.018139011,0.007825589,7.120673213,5.25174,2.786506667,0.082328895,0,1.097673547,0,0.009152547,9.387236316,94.55490741,143.0029319,12.85951167,21.0378654,7.938146667,7853.58534,0.006933333,0.046453333,0.00702 +2121,0,0.233828929,4.446586964,0,3.419961688,0.941012,0.211646,5.042907646,0,0,0.058971971,0.951762,0.01032,107.598556,0,4200.94993,361.2947041,486.1158905,1.03230315,0.01799948,0.007765392,7.065898804,5.211342,2.765072,0.081695596,0,1.089229904,0,0.009082143,9.375710349,94.46916428,142.2054557,12.80249144,20.98312948,7.877084,7799.00646,0.00688,0.046096,0.006966 +2122,0,0.225765862,4.446586964,0,3.404379972,0.933717333,0.210005333,5.003815339,0,0,0.058514824,0.944384,0.01024,106.7644587,0,4168.384427,360.6082917,484.3731157,1.0243008,0.017859949,0.007705196,7.011124395,5.170944,2.743637333,0.081062297,0,1.080786261,0,0.009011738,9.364184383,94.38342115,141.4079795,12.74547121,20.92839357,7.816021333,7744.42758,0.006826667,0.045738667,0.006912 +2123,0,0.217702796,4.446586964,0,3.388798255,0.926422667,0.208364667,4.964723031,0,0,0.058057677,0.937006,0.01016,105.9303613,0,4135.818923,359.9218792,482.6303409,1.01629845,0.017720418,0.007644999,6.956349985,5.130546,2.722202667,0.080428998,0,1.072342619,0,0.008941334,9.352658416,94.29767802,140.6105033,12.68845098,20.87365765,7.754958667,7689.8487,0.006773333,0.045381333,0.006858 +2124,0,0.209639729,4.446586964,0,3.373216539,0.919128,0.206724,4.925630724,0,0,0.05760053,0.929628,0.01008,105.096264,0,4103.25342,359.2354668,480.8875661,1.0082961,0.017580888,0.007584802,6.901575576,5.090148,2.700768,0.079795698,0,1.063898976,0,0.00887093,9.34113245,94.21193488,139.8130271,12.63143075,20.81892173,7.693896,7635.26982,0.00672,0.045024,0.006804 +2125,0,0.201576663,4.446586964,0,3.357634823,0.911833333,0.205083333,4.886538417,0,0,0.057143383,0.92225,0.01,104.2621667,0,4070.687917,358.5490544,479.1447913,1.00029375,0.017441357,0.007524605,6.846801167,5.04975,2.679333333,0.079162399,0,1.055455333,0,0.008800526,9.329606484,94.12619175,139.015551,12.57441052,20.76418581,7.632833333,7580.69094,0.006666667,0.044666667,0.00675 +2126,0,0.193513596,4.446586964,0,3.342053106,0.904538667,0.203442667,4.847446109,0,0,0.056686235,0.914872,0.00992,103.4280693,0,4038.122413,357.8626419,477.4020165,0.9922914,0.017301826,0.007464408,6.792026757,5.009352,2.657898667,0.0785291,0,1.047011691,0,0.008730122,9.318080517,94.04044862,138.2180748,12.51739029,20.70944989,7.571770667,7526.112061,0.006613333,0.044309333,0.006696 +2127,0,0.18545053,4.446586964,0,3.32647139,0.897244,0.201802,4.808353802,0,0,0.056229088,0.907494,0.00984,102.593972,0,4005.55691,357.1762295,475.6592417,0.98428905,0.017162295,0.007404211,6.737252348,4.968954,2.636464,0.077895801,0,1.038568048,0,0.008659717,9.306554551,93.95470548,137.4205986,12.46037006,20.65471397,7.510708,7471.533181,0.00656,0.043952,0.006642 +2128,0,0.177387463,4.446586964,0,3.310889674,0.889949333,0.200161333,4.769261495,0,0,0.055771941,0.900116,0.00976,101.7598747,0,3972.991407,356.4898171,473.9164669,0.9762867,0.017022764,0.007344014,6.682477939,4.928556,2.615029333,0.077262502,0,1.030124405,0,0.008589313,9.295028585,93.86896235,136.6231224,12.40334983,20.59997805,7.449645333,7416.954301,0.006506667,0.043594667,0.006588 +2129,0,0.169324397,4.446586964,0,3.295307958,0.882654667,0.198520667,4.730169187,0,0,0.055314794,0.892738,0.00968,100.9257773,0,3940.425903,355.8034046,472.1736921,0.96828435,0.016883233,0.007283818,6.627703529,4.888158,2.593594667,0.076629202,0,1.021680763,0,0.008518909,9.283502618,93.78321922,135.8256462,12.3463296,20.54524213,7.388582667,7362.375421,0.006453333,0.043237333,0.006534 +2130,0,0.16126133,4.446586964,0,3.279726241,0.87536,0.19688,4.69107688,0,0,0.054857647,0.88536,0.0096,100.09168,0,3907.8604,355.1169922,470.4309173,0.960282,0.016743702,0.007223621,6.57292912,4.84776,2.57216,0.075995903,0,1.01323712,0,0.008448505,9.271976652,93.69747609,135.02817,12.28930937,20.49050622,7.32752,7307.796541,0.0064,0.04288,0.00648 +2131,0,0.153198264,4.446586964,0,3.264144525,0.868065333,0.195239333,4.651984573,0,0,0.0544005,0.877982,0.00952,99.25758267,0,3875.294897,354.4305798,468.6881425,0.95227965,0.016604172,0.007163424,6.518154711,4.807362,2.550725333,0.075362604,0,1.004793477,0,0.008378101,9.260450685,93.61173295,134.2306938,12.23228914,20.4357703,7.266457333,7253.217661,0.006346667,0.042522667,0.006426 +2132,0,0.145135197,4.446586964,0,3.248562809,0.860770667,0.193598667,4.612892265,0,0,0.053943353,0.870604,0.00944,98.42348533,0,3842.729393,353.7441674,466.9453677,0.9442773,0.016464641,0.007103227,6.463380301,4.766964,2.529290667,0.074729305,0,0.996349835,0,0.008307696,9.248924719,93.52598982,133.4332176,12.17526891,20.38103438,7.205394667,7198.638781,0.006293333,0.042165333,0.006372 +2133,0,0.137072131,4.446586964,0,3.232981092,0.853476,0.191958,4.573799958,0,0,0.053486206,0.863226,0.00936,97.589388,0,3810.16389,353.0577549,465.2025929,0.93627495,0.01632511,0.00704303,6.408605892,4.726566,2.507856,0.074096006,0,0.987906192,0,0.008237292,9.237398753,93.44024669,132.6357414,12.11824868,20.32629846,7.144332,7144.059901,0.00624,0.041808,0.006318 +2134,0,0.129009064,4.446586964,0,3.217399376,0.846181333,0.190317333,4.534707651,0,0,0.053029059,0.855848,0.00928,96.75529067,0,3777.598387,352.3713425,463.4598181,0.9282726,0.016185579,0.006982833,6.353831483,4.686168,2.486421333,0.073462706,0,0.979462549,0,0.008166888,9.225872786,93.35450355,131.8382652,12.06122845,20.27156254,7.083269333,7089.481021,0.006186667,0.041450667,0.006264 +2135,0,0.120945998,4.446586964,0,3.20181766,0.838886667,0.188676667,4.495615343,0,0,0.052571912,0.84847,0.0092,95.92119333,0,3745.032883,351.6849301,461.7170433,0.92027025,0.016046048,0.006922637,6.299057073,4.64577,2.464986667,0.072829407,0,0.971018907,0,0.008096484,9.21434682,93.26876042,131.040789,12.00420822,20.21682662,7.022206667,7034.902142,0.006133333,0.041093333,0.00621 +2136,0,0.112882931,4.446586964,0,3.186235943,0.831592,0.187036,4.456523036,0,0,0.052114765,0.841092,0.00912,95.087096,0,3712.46738,350.9985176,459.9742686,0.9122679,0.015906517,0.00686244,6.244282664,4.605372,2.443552,0.072196108,0,0.962575264,0,0.00802608,9.202820853,93.18301729,130.2433128,11.94718799,20.1620907,6.961144,6980.323262,0.00608,0.040736,0.006156 +2137,0,0.104819865,4.446586964,0,3.170654227,0.824297333,0.185395333,4.417430729,0,0,0.051657618,0.833714,0.00904,94.25299867,0,3679.901877,350.3121052,458.2314938,0.90426555,0.015766986,0.006802243,6.189508255,4.564974,2.422117333,0.071562809,0,0.954131621,0,0.007955675,9.191294887,93.09727415,129.4458366,11.89016776,20.10735478,6.900081333,6925.744382,0.006026667,0.040378667,0.006102 +2138,0,0.096756798,4.446586964,0,3.155072511,0.817002667,0.183754667,4.378338421,0,0,0.051200471,0.826336,0.00896,93.41890133,0,3647.336373,349.6256928,456.488719,0.8962632,0.015627456,0.006742046,6.134733845,4.524576,2.400682667,0.07092951,0,0.945687979,0,0.007885271,9.179768921,93.01153102,128.6483604,11.83314753,20.05261887,6.839018667,6871.165502,0.005973333,0.040021333,0.006048 +2139,0,0.088693732,4.446586964,0,3.139490794,0.809708,0.182114,4.339246114,0,0,0.050743324,0.818958,0.00888,92.584804,0,3614.77087,348.9392804,454.7459442,0.88826085,0.015487925,0.006681849,6.079959436,4.484178,2.379248,0.07029621,0,0.937244336,0,0.007814867,9.168242954,92.92578789,127.8508842,11.7761273,19.99788295,6.777956,6816.586622,0.00592,0.039664,0.005994 +2140,0,0.080630665,4.446586964,0,3.123909078,0.802413333,0.180473333,4.300153807,0,0,0.050286177,0.81158,0.0088,91.75070667,0,3582.205367,348.2528679,453.0031694,0.8802585,0.015348394,0.006621652,6.025185027,4.44378,2.357813333,0.069662911,0,0.928800693,0,0.007744463,9.156716988,92.84004476,127.053408,11.71910707,19.94314703,6.716893333,6762.007742,0.005866667,0.039306667,0.00594 +2141,0,0.072567599,4.357655225,0,3.108327362,0.795118667,0.178832667,4.261061499,0,0,0.04982903,0.804202,0.00872,90.91660933,0,3549.639863,347.5664555,451.2603946,0.87225615,0.015208863,0.006561456,5.970410617,4.403382,2.336378667,0.069029612,0,0.920357051,0,0.007674059,9.145191022,92.75430162,126.2559318,11.66208684,19.88841111,6.655830667,6707.428862,0.005813333,0.038949333,0.005886 +2142,0,0.064504532,4.268723486,0,3.092745645,0.787824,0.177192,4.221969192,0,0,0.049371882,0.796824,0.00864,90.082512,0,3517.07436,346.8800431,449.5176198,0.8642538,0.015069332,0.006501259,5.915636208,4.362984,2.314944,0.068396313,0,0.911913408,0,0.007603654,9.133665055,92.66855849,125.4584556,11.60506661,19.83367519,6.594768,6652.849982,0.00576,0.038592,0.005832 +2143,0,0.056441466,4.179791746,0,3.077163929,0.780529333,0.175551333,4.182876885,0,0,0.048914735,0.789446,0.00856,89.24841467,0,3484.508857,346.1936306,447.774845,0.85625145,0.014929801,0.006441062,5.860861799,4.322586,2.293509333,0.067763014,0,0.903469765,0,0.00753325,9.122139089,92.58281536,124.6609794,11.54804639,19.77893927,6.533705333,6598.271102,0.005706667,0.038234667,0.005778 +2144,0,0.048378399,4.090860007,0,3.061582213,0.773234667,0.173910667,4.143784577,0,0,0.048457588,0.782068,0.00848,88.41431733,0,3451.943353,345.5072182,446.0320702,0.8482491,0.01479027,0.006380865,5.806087389,4.282188,2.272074667,0.067129714,0,0.895026123,0,0.007462846,9.110613122,92.49707222,123.8635032,11.49102616,19.72420335,6.472642667,6543.692223,0.005653333,0.037877333,0.005724 +2145,0,0.040315333,4.001928268,0,3.046000496,0.76594,0.17227,4.10469227,0,0,0.048000441,0.77469,0.0084,87.58022,0,3419.37785,344.8208058,444.2892954,0.84024675,0.01465074,0.006320668,5.75131298,4.24179,2.25064,0.066496415,0,0.88658248,0,0.007392442,9.099087156,92.41132909,123.066027,11.43400593,19.66946743,6.41158,6489.113343,0.0056,0.03752,0.00567 +2146,0,0.032252266,3.912996528,0,3.03041878,0.758645333,0.170629333,4.065599963,0,0,0.047543294,0.767312,0.00832,86.74612267,0,3386.812347,344.1343933,442.5465206,0.8322444,0.014511209,0.006260471,5.696538571,4.201392,2.229205333,0.065863116,0,0.878138837,0,0.007322037,9.08756119,92.32558596,122.2685508,11.3769857,19.61473152,6.350517333,6434.534463,0.005546667,0.037162667,0.005616 +2147,0,0.0241892,3.824064789,0,3.014837064,0.751350667,0.168988667,4.026507655,0,0,0.047086147,0.759934,0.00824,85.91202533,0,3354.246843,343.4479809,440.8037458,0.82424205,0.014371678,0.006200275,5.641764161,4.160994,2.207770667,0.065229817,0,0.869695195,0,0.007251633,9.076035223,92.23984283,121.4710746,11.31996547,19.5599956,6.289454667,6379.955583,0.005493333,0.036805333,0.005562 +2148,0,0.016126133,3.73513305,0,2.999255348,0.744056,0.167348,3.987415348,0,0,0.046629,0.752556,0.00816,85.077928,0,3321.68134,342.7615685,439.060971,0.8162397,0.014232147,0.006140078,5.586989752,4.120596,2.186336,0.064596518,0,0.861251552,0,0.007181229,9.064509257,92.15409969,120.6735984,11.26294524,19.50525968,6.228392,6325.376703,0.00544,0.036448,0.005508 +2149,0,0.008063067,3.646201311,0,2.983673631,0.736761333,0.165707333,3.948323041,0,0,0.046171853,0.745178,0.00808,84.24383067,0,3289.115837,342.0751561,437.3181962,0.80823735,0.014092616,0.006079881,5.532215343,4.080198,2.164901333,0.063963219,0,0.852807909,0,0.007110825,9.052983291,92.06835656,119.8761222,11.20592501,19.45052376,6.167329333,6270.797823,0.005386667,0.036090667,0.005454 +2150,0,0,3.557269571,0,2.968091915,0.729466667,0.164066667,3.909230733,0,0,0.045714706,0.7378,0.008,83.40973333,0,3256.550333,341.3887436,435.5754214,0.800235,0.013953085,0.006019684,5.477440933,4.0398,2.143466667,0.063329919,0,0.844364267,0,0.007040421,9.041457324,91.98261343,119.078646,11.14890478,19.39578784,6.106266667,6216.218943,0.005333333,0.035733333,0.0054 +2151,0,0,3.468337832,0,2.952510199,0.722172,0.162426,3.870138426,0,0,0.045257559,0.730422,0.00792,82.575636,0,3223.98483,340.7023312,433.8326466,0.79223265,0.013813554,0.005959487,5.422666524,3.999402,2.122032,0.06269662,0,0.835920624,0,0.006970016,9.029931358,91.89687029,118.2811698,11.09188455,19.34105192,6.045204,6161.640063,0.00528,0.035376,0.005346 +2152,0,0,3.379406093,0,2.936928482,0.714877333,0.160785333,3.831046119,0,0,0.044800412,0.723044,0.00784,81.74153867,0,3191.419327,340.0159188,432.0898718,0.7842303,0.013674024,0.00589929,5.367892115,3.959004,2.100597333,0.062063321,0,0.827476981,0,0.006899612,9.018405391,91.81112716,117.4836936,11.03486432,19.286316,5.984141333,6107.061184,0.005226667,0.035018667,0.005292 +2153,0,0,3.290474353,0,2.921346766,0.707582667,0.159144667,3.791953811,0,0,0.044343265,0.715666,0.00776,80.90744133,0,3158.853823,339.3295063,430.3470971,0.77622795,0.013534493,0.005839093,5.313117705,3.918606,2.079162667,0.061430022,0,0.819033339,0,0.006829208,9.006879425,91.72538403,116.6862174,10.97784409,19.23158008,5.923078667,6052.482304,0.005173333,0.034661333,0.005238 +2154,0,0,3.201542614,0,2.90576505,0.700288,0.157504,3.752861504,0,0,0.043886118,0.708288,0.00768,80.073344,0,3126.28832,338.6430939,428.6043223,0.7682256,0.013394962,0.005778897,5.258343296,3.878208,2.057728,0.060796723,0,0.810589696,0,0.006758804,8.995353459,91.6396409,115.8887412,10.92082386,19.17684416,5.862016,5997.903424,0.00512,0.034304,0.005184 +2155,0,0,3.112610875,0,2.890183333,0.692993333,0.155863333,3.713769197,0,0,0.043428971,0.70091,0.0076,79.23924667,0,3093.722817,337.9566815,426.8615475,0.76022325,0.013255431,0.0057187,5.203568887,3.83781,2.036293333,0.060163423,0,0.802146053,0,0.0066884,8.983827492,91.55389776,115.091265,10.86380363,19.12210825,5.800953333,5943.324544,0.005066667,0.033946667,0.00513 +2156,0,0,3.023679136,0,2.874601617,0.685698667,0.154222667,3.674676889,0,0,0.042971824,0.693532,0.00752,78.40514933,0,3061.157313,337.2702691,425.1187727,0.7522209,0.0131159,0.005658503,5.148794477,3.797412,2.014858667,0.059530124,0,0.793702411,0,0.006617995,8.972301526,91.46815463,114.2937888,10.8067834,19.06737233,5.739890667,5888.745664,0.005013333,0.033589333,0.005076 +2157,0,0,2.934747396,0,2.859019901,0.678404,0.152582,3.635584582,0,0,0.042514677,0.686154,0.00744,77.571052,0,3028.59181,336.5838566,423.3759979,0.74421855,0.012976369,0.005598306,5.094020068,3.757014,1.993424,0.058896825,0,0.785258768,0,0.006547591,8.96077556,91.3824115,113.4963126,10.74976317,19.01263641,5.678828,5834.166784,0.00496,0.033232,0.005022 +2158,0,0,2.845815657,0,2.843438184,0.671109333,0.150941333,3.596492275,0,0,0.04205753,0.678776,0.00736,76.73695467,0,2996.026307,335.8974442,421.6332231,0.7362162,0.012836839,0.005538109,5.039245659,3.716616,1.971989333,0.058263526,0,0.776815125,0,0.006477187,8.949249593,91.29666836,112.6988364,10.69274294,18.95790049,5.617765333,5779.587904,0.004906667,0.032874667,0.004968 +2159,0,0,2.756883918,0,2.827856468,0.663814667,0.149300667,3.557399967,0,0,0.041600382,0.671398,0.00728,75.90285733,0,2963.460803,335.2110318,419.8904483,0.72821385,0.012697308,0.005477912,4.984471249,3.676218,1.950554667,0.057630227,0,0.768371483,0,0.006406783,8.937723627,91.21092523,111.9013603,10.63572271,18.90316457,5.556702667,5725.009024,0.004853333,0.032517333,0.004914 +2160,0,0,2.667952178,0,2.812274752,0.65652,0.14766,3.51830766,0,0,0.041143235,0.66402,0.0072,75.06876,0,2930.8953,334.5246193,418.1476735,0.7202115,0.012557777,0.005417716,4.92969684,3.63582,1.92912,0.056996927,0,0.75992784,0,0.006336379,8.92619766,91.1251821,111.1038841,10.57870248,18.84842865,5.49564,5670.430144,0.0048,0.03216,0.00486 +2161,0,0,2.579020439,0,2.796693035,0.649225333,0.146019333,3.479215353,0,0,0.040686088,0.656642,0.00712,74.23466267,0,2898.329797,333.8382069,416.4048987,0.71220915,0.012418246,0.005357519,4.874922431,3.595422,1.907685333,0.056363628,0,0.751484197,0,0.006265974,8.914671694,91.03943896,110.3064079,10.52168225,18.79369273,5.434577333,5615.851265,0.004746667,0.031802667,0.004806 +2162,0,0,2.4900887,0,2.781111319,0.641930667,0.144378667,3.440123045,0,0,0.040228941,0.649264,0.00704,73.40056533,0,2865.764293,333.1517945,414.6621239,0.7042068,0.012278715,0.005297322,4.820148021,3.555024,1.886250667,0.055730329,0,0.743040555,0,0.00619557,8.903145728,90.95369583,109.5089317,10.46466202,18.73895681,5.373514667,5561.272385,0.004693333,0.031445333,0.004752 +2163,0,0,2.401156961,0,2.765529603,0.634636,0.142738,3.401030738,0,0,0.039771794,0.641886,0.00696,72.566468,0,2833.19879,332.465382,412.9193491,0.69620445,0.012139184,0.005237125,4.765373612,3.514626,1.864816,0.05509703,0,0.734596912,0,0.006125166,8.891619761,90.8679527,108.7114555,10.40764179,18.6842209,5.312452,5506.693505,0.00464,0.031088,0.004698 +2164,0,0,2.312225221,0,2.749947886,0.627341333,0.141097333,3.361938431,0,0,0.039314647,0.634508,0.00688,71.73237067,0,2800.633287,331.7789696,411.1765743,0.6882021,0.011999653,0.005176928,4.710599203,3.474228,1.843381333,0.054463731,0,0.726153269,0,0.006054762,8.880093795,90.78220957,107.9139793,10.35062156,18.62948498,5.251389333,5452.114625,0.004586667,0.030730667,0.004644 +2165,0,0,2.223293482,0,2.73436617,0.620046667,0.139456667,3.322846123,0,0,0.0388575,0.62713,0.0068,70.89827333,0,2768.067783,331.0925572,409.4337995,0.68019975,0.011860123,0.005116731,4.655824793,3.43383,1.821946667,0.053830431,0,0.717709627,0,0.005984358,8.868567828,90.69646643,107.1165031,10.29360133,18.57474906,5.190326667,5397.535745,0.004533333,0.030373333,0.00459 +2166,0,0,2.134361743,0,2.718784454,0.612752,0.137816,3.283753816,0,0,0.038400353,0.619752,0.00672,70.064176,0,2735.50228,330.4061448,407.6910247,0.6721974,0.011720592,0.005056535,4.601050384,3.393432,1.800512,0.053197132,0,0.709265984,0,0.005913953,8.857041862,90.6107233,106.3190269,10.2365811,18.52001314,5.129264,5342.956865,0.00448,0.030016,0.004536 +2167,0,0,2.045430004,0,2.703202738,0.605457333,0.136175333,3.244661509,0,0,0.037943206,0.612374,0.00664,69.23007867,0,2702.936777,329.7197323,405.9482499,0.66419505,0.011581061,0.004996338,4.546275975,3.353034,1.779077333,0.052563833,0,0.700822341,0,0.005843549,8.845515896,90.52498017,105.5215507,10.17956087,18.46527722,5.068201333,5288.377985,0.004426667,0.029658667,0.004482 +2168,0,0,1.956498264,0,2.687621021,0.598162667,0.134534667,3.205569201,0,0,0.037486059,0.604996,0.00656,68.39598133,0,2670.371273,329.0333199,404.2054751,0.6561927,0.01144153,0.004936141,4.491501565,3.312636,1.757642667,0.051930534,0,0.692378699,0,0.005773145,8.833989929,90.43923703,104.7240745,10.12254064,18.4105413,5.007138667,5233.799105,0.004373333,0.029301333,0.004428 +2169,0,0,1.867566525,0,2.672039305,0.590868,0.132894,3.166476894,0,0,0.037028912,0.597618,0.00648,67.561884,0,2637.80577,328.3469075,402.4627004,0.64819035,0.011301999,0.004875944,4.436727156,3.272238,1.736208,0.051297235,0,0.683935056,0,0.005702741,8.822463963,90.3534939,103.9265983,10.06552041,18.35580538,4.946076,5179.220225,0.00432,0.028944,0.004374 +2170,0,0,1.778634786,0,2.656457589,0.583573333,0.131253333,3.127384587,0,0,0.036571765,0.59024,0.0064,66.72778667,0,2605.240267,327.660495,400.7199256,0.640188,0.011162468,0.004815747,4.381952747,3.23184,1.714773333,0.050663935,0,0.675491413,0,0.005632337,8.810937997,90.26775077,103.1291221,10.00850019,18.30106946,4.885013333,5124.641346,0.004266667,0.028586667,0.00432 +2171,0,0,1.689703046,0,2.640875872,0.576278667,0.129612667,3.088292279,0,0,0.036114618,0.582862,0.00632,65.89368933,0,2572.674763,326.9740826,398.9771508,0.63218565,0.011022937,0.00475555,4.327178337,3.191442,1.693338667,0.050030636,0,0.667047771,0,0.005561932,8.79941203,90.18200764,102.3316459,9.951479955,18.24633355,4.823950667,5070.062466,0.004213333,0.028229333,0.004266 +2172,0,0,1.600771307,0,2.625294156,0.568984,0.127972,3.049199972,0,0,0.035657471,0.575484,0.00624,65.059592,0,2540.10926,326.2876702,397.234376,0.6241833,0.010883407,0.004695354,4.272403928,3.151044,1.671904,0.049397337,0,0.658604128,0,0.005491528,8.787886064,90.0962645,101.5341697,9.894459726,18.19159763,4.762888,5015.483586,0.00416,0.027872,0.004212 +2173,0,0,1.511839568,0,2.60971244,0.561689333,0.126331333,3.010107665,0,0,0.035200324,0.568106,0.00616,64.22549467,0,2507.543757,325.6012578,395.4916012,0.61618095,0.010743876,0.004635157,4.217629519,3.110646,1.650469333,0.048764038,0,0.650160485,0,0.005421124,8.776360097,90.01052137,100.7366935,9.837439496,18.13686171,4.701825333,4960.904706,0.004106667,0.027514667,0.004158 +2174,0,0,1.422907829,0,2.594130723,0.554394667,0.124690667,2.971015357,0,0,0.034743177,0.560728,0.00608,63.39139733,0,2474.978253,324.9148453,393.7488264,0.6081786,0.010604345,0.00457496,4.162855109,3.070248,1.629034667,0.048130739,0,0.641716843,0,0.00535072,8.764834131,89.92477824,99.93921729,9.780419266,18.08212579,4.640762667,4906.325826,0.004053333,0.027157333,0.004104 +2175,0,0,1.333976089,0,2.578549007,0.5471,0.12305,2.93192305,0,0,0.03428603,0.55335,0.006,62.5573,0,2442.41275,324.2284329,392.0060516,0.60017625,0.010464814,0.004514763,4.1080807,3.02985,1.6076,0.04749744,0,0.6332732,0,0.005280316,8.753308165,89.8390351,99.1417411,9.723399037,18.02738987,4.5797,4851.746946,0.004,0.0268,0.00405 +2176,0,0,1.24504435,0,2.562967291,0.539805333,0.121409333,2.892830743,0,0,0.033828882,0.545972,0.00592,61.72320267,0,2409.847247,323.5420205,390.2632768,0.5921739,0.010325283,0.004454566,4.053306291,2.989452,1.586165333,0.04686414,0,0.624829557,0,0.005209911,8.741782198,89.75329197,98.3442649,9.666378807,17.97265395,4.518637333,4797.168066,0.003946667,0.026442667,0.003996 +2177,0,0,1.156112611,0,2.547385574,0.532510667,0.119768667,2.853738435,0,0,0.033371735,0.538594,0.00584,60.88910533,0,2377.281743,322.855608,388.520502,0.58417155,0.010185752,0.004394369,3.998531881,2.949054,1.564730667,0.046230841,0,0.616385915,0,0.005139507,8.730256232,89.66754884,97.5467887,9.609358578,17.91791803,4.457574667,4742.589186,0.003893333,0.026085333,0.003942 +2178,0,0,1.067180871,0,2.531803858,0.525216,0.118128,2.814646128,0,0,0.032914588,0.531216,0.00576,60.055008,0,2344.71624,322.1691956,386.7777272,0.5761692,0.010046221,0.004334172,3.943757472,2.908656,1.543296,0.045597542,0,0.607942272,0,0.005069103,8.718730266,89.5818057,96.74931251,9.552338348,17.86318211,4.396512,4688.010306,0.00384,0.025728,0.003888 +2179,0,0,0.978249132,0,2.516222142,0.517921333,0.116487333,2.775553821,0,0,0.032457441,0.523838,0.00568,59.22091067,0,2312.150737,321.4827832,385.0349524,0.56816685,0.009906691,0.004273976,3.888983063,2.868258,1.521861333,0.044964243,0,0.599498629,0,0.004998699,8.707204299,89.49606257,95.95183631,9.495318118,17.8084462,4.335449333,4633.431427,0.003786667,0.025370667,0.003834 +2180,0,0,0.889317393,0,2.500640425,0.510626667,0.114846667,2.736461513,0,0,0.032000294,0.51646,0.0056,58.38681333,0,2279.585233,320.7963708,383.2921776,0.5601645,0.00976716,0.004213779,3.834208653,2.82786,1.500426667,0.044330944,0,0.591054987,0,0.004928294,8.695678333,89.41031944,95.15436011,9.438297889,17.75371028,4.274386667,4578.852547,0.003733333,0.025013333,0.00378 +2181,0,0,0.800385654,0,2.485058709,0.503332,0.113206,2.697369206,0,0,0.031543147,0.509082,0.00552,57.552716,0,2247.01973,320.1099583,381.5494028,0.55216215,0.009627629,0.004153582,3.779434244,2.787462,1.478992,0.043697644,0,0.582611344,0,0.00485789,8.684152366,89.32457631,94.35688391,9.381277659,17.69897436,4.213324,4524.273667,0.00368,0.024656,0.003726 +2182,0,0,0.711453914,0,2.469476993,0.496037333,0.111565333,2.658276899,0,0,0.031086,0.501704,0.00544,56.71861867,0,2214.454227,319.4235459,379.806628,0.5441598,0.009488098,0.004093385,3.724659835,2.747064,1.457557333,0.043064345,0,0.574167701,0,0.004787486,8.6726264,89.23883317,93.55940772,9.324257429,17.64423844,4.152261333,4469.694787,0.003626667,0.024298667,0.003672 +2183,0,0,0.622522175,0,2.453895276,0.488742667,0.109924667,2.619184591,0,0,0.030628853,0.494326,0.00536,55.88452133,0,2181.888723,318.7371335,378.0638532,0.53615745,0.009348567,0.004033188,3.669885425,2.706666,1.436122667,0.042431046,0,0.565724059,0,0.004717082,8.661100434,89.15309004,92.76193152,9.2672372,17.58950252,4.091198667,4415.115907,0.003573333,0.023941333,0.003618 +2184,0,0,0.533590436,0,2.43831356,0.481448,0.108284,2.580092284,0,0,0.030171706,0.486948,0.00528,55.050424,0,2149.32322,318.050721,376.3210784,0.5281551,0.009209036,0.003972991,3.615111016,2.666268,1.414688,0.041797747,0,0.557280416,0,0.004646678,8.649574467,89.06734691,91.96445532,9.21021697,17.5347666,4.030136,4360.537027,0.00352,0.023584,0.003564 +2185,0,0,0.444658696,0,2.422731844,0.474153333,0.106643333,2.540999977,0,0,0.029714559,0.47957,0.0052,54.21632667,0,2116.757717,317.3643086,374.5783036,0.52015275,0.009069505,0.003912795,3.560336607,2.62587,1.393253333,0.041164448,0,0.548836773,0,0.004576273,8.638048501,88.98160377,91.16697913,9.15319674,17.48003068,3.969073333,4305.958147,0.003466667,0.023226667,0.00351 +2186,0,0,0.355726957,0,2.407150128,0.466858667,0.105002667,2.501907669,0,0,0.029257412,0.472192,0.00512,53.38222933,0,2084.192213,316.6778962,372.8355289,0.5121504,0.008929975,0.003852598,3.505562197,2.585472,1.371818667,0.040531148,0,0.540393131,0,0.004505869,8.626522535,88.89586064,90.36950293,9.096176511,17.42529476,3.908010667,4251.379267,0.003413333,0.022869333,0.003456 +2187,0,0,0.266795218,0,2.391568411,0.459564,0.103362,2.462815362,0,0,0.028800265,0.464814,0.00504,52.548132,0,2051.62671,315.9914837,371.0927541,0.50414805,0.008790444,0.003792401,3.450787788,2.545074,1.350384,0.039897849,0,0.531949488,0,0.004435465,8.614996568,88.81011751,89.57202673,9.039156281,17.37055884,3.846948,4196.800387,0.00336,0.022512,0.003402 +2188,0,0,0.177863479,0,2.375986695,0.452269333,0.101721333,2.423723055,0,0,0.028343118,0.457436,0.00496,51.71403467,0,2019.061207,315.3050713,369.3499793,0.4961457,0.008650913,0.003732204,3.396013379,2.504676,1.328949333,0.03926455,0,0.523505845,0,0.004365061,8.603470602,88.72437438,88.77455054,8.982136052,17.31582293,3.785885333,4142.221508,0.003306667,0.022154667,0.003348 +2189,0,0,0.088931739,0,2.360404979,0.444974667,0.100080667,2.384630747,0,0,0.027885971,0.450058,0.00488,50.87993733,0,1986.495703,314.6186589,367.6072045,0.48814335,0.008511382,0.003672007,3.341238969,2.464278,1.307514667,0.038631251,0,0.515062203,0,0.004294657,8.591944635,88.63863124,87.97707434,8.925115822,17.26108701,3.724822667,4087.642628,0.003253333,0.021797333,0.003294 +2190,0,0,0,0,2.344823262,0.43768,0.09844,2.34553844,0,0,0.027428824,0.44268,0.0048,50.04584,0,1953.9302,313.9322465,365.8644297,0.480141,0.008371851,0.00361181,3.28646456,2.42388,1.28608,0.037997952,0,0.50661856,0,0.004224252,8.580418669,88.55288811,87.17959814,8.868095592,17.20635109,3.66376,4033.063748,0.0032,0.02144,0.00324 +2191,0,0,0,0,2.329241546,0.430385333,0.096799333,2.306446133,0,0,0.026971677,0.435302,0.00472,49.21174267,0,1921.364697,313.245834,364.1216549,0.47213865,0.00823232,0.003551614,3.231690151,2.383482,1.264645333,0.037364652,0,0.498174917,0,0.004153848,8.568892703,88.46714498,86.38212194,8.811075363,17.15161517,3.602697333,3978.484868,0.003146667,0.021082667,0.003186 +2192,0,0,0,0,2.31365983,0.423090667,0.095158667,2.267353825,0,0,0.026514529,0.427924,0.00464,48.37764533,0,1888.799193,312.5594216,362.3788801,0.4641363,0.008092789,0.003491417,3.176915741,2.343084,1.243210667,0.036731353,0,0.489731275,0,0.004083444,8.557366736,88.38140184,85.58464575,8.754055133,17.09687925,3.541634667,3923.905988,0.003093333,0.020725333,0.003132 +2193,0,0,0,0,2.298078113,0.415796,0.093518,2.228261518,0,0,0.026057382,0.420546,0.00456,47.543548,0,1856.23369,311.8730092,360.6361053,0.45613395,0.007953259,0.00343122,3.122141332,2.302686,1.221776,0.036098054,0,0.481287632,0,0.00401304,8.54584077,88.29565871,84.78716955,8.697034903,17.04214333,3.480572,3869.327108,0.00304,0.020368,0.003078 +2194,0,0,0,0,2.282496397,0.408501333,0.091877333,2.189169211,0,0,0.025600235,0.413168,0.00448,46.70945067,0,1823.668187,311.1865967,358.8933305,0.4481316,0.007813728,0.003371023,3.067366923,2.262288,1.200341333,0.035464755,0,0.472843989,0,0.003942636,8.534314804,88.20991558,83.98969335,8.640014674,16.98740741,3.419509333,3814.748228,0.002986667,0.020010667,0.003024 +2195,0,0,0,0,2.266914681,0.401206667,0.090236667,2.150076903,0,0,0.025143088,0.40579,0.0044,45.87535333,0,1791.102683,310.5001843,357.1505557,0.44012925,0.007674197,0.003310826,3.012592513,2.22189,1.178906667,0.034831456,0,0.464400347,0,0.003872231,8.522788837,88.12417245,83.19221716,8.582994444,16.93267149,3.358446667,3760.169348,0.002933333,0.019653333,0.00297 +2196,0,0,0,0,2.251332964,0.393912,0.088596,2.110984596,0,0,0.024685941,0.398412,0.00432,45.041256,0,1758.53718,309.8137719,355.4077809,0.4321269,0.007534666,0.003250629,2.957818104,2.181492,1.157472,0.034198156,0,0.455956704,0,0.003801827,8.511262871,88.03842931,82.39474096,8.525974214,16.87793558,3.297384,3705.590468,0.00288,0.019296,0.002916 +2197,0,0,0,0,2.235751248,0.386617333,0.086955333,2.071892289,0,0,0.024228794,0.391034,0.00424,44.20715867,0,1725.971677,309.1273595,353.6650061,0.42412455,0.007395135,0.003190433,2.903043695,2.141094,1.136037333,0.033564857,0,0.447513061,0,0.003731423,8.499736904,87.95268618,81.59726476,8.468953985,16.82319966,3.236321333,3651.011589,0.002826667,0.018938667,0.002862 +2198,0,0,0,0,2.220169532,0.379322667,0.085314667,2.032799981,0,0,0.023771647,0.383656,0.00416,43.37306133,0,1693.406173,308.440947,351.9222313,0.4161222,0.007255604,0.003130236,2.848269285,2.100696,1.114602667,0.032931558,0,0.439069419,0,0.003661019,8.488210938,87.86694305,80.79978856,8.411933755,16.76846374,3.175258667,3596.432709,0.002773333,0.018581333,0.002808 +2199,0,0,0,0,2.204587815,0.372028,0.083674,1.993707674,0,0,0.0233145,0.376278,0.00408,42.538964,0,1660.84067,307.7545346,350.1794565,0.40811985,0.007116074,0.003070039,2.793494876,2.060298,1.093168,0.032298259,0,0.430625776,0,0.003590615,8.476684972,87.78119991,80.00231237,8.354913526,16.71372782,3.114196,3541.853829,0.00272,0.018224,0.002754 +2200,0,0,0,0,2.189006099,0.364733333,0.082033333,1.954615367,0,0,0.022857353,0.3689,0.004,41.70486667,0,1628.275167,307.0681222,348.4366817,0.4001175,0.006976543,0.003009842,2.738720467,2.0199,1.071733333,0.03166496,0,0.422182133,0,0.00352021,8.465159005,87.69545678,79.20483617,8.297893296,16.6589919,3.053133333,3487.274949,0.002666667,0.017866667,0.0027 +2201,0,0,0,0,2.173424383,0.357438667,0.080392667,1.915523059,0,0,0.022400206,0.361522,0.00392,40.87076933,0,1595.709663,306.3817097,346.6939069,0.39211515,0.006837012,0.002949645,2.683946057,1.979502,1.050298667,0.03103166,0,0.413738491,0,0.003449806,8.453633039,87.60971365,78.40735997,8.240873066,16.60425598,2.992070667,3432.696069,0.002613333,0.017509333,0.002646 +2202,0,0,0,0,2.157842666,0.350144,0.078752,1.876430752,0,0,0.021943059,0.354144,0.00384,40.036672,0,1563.14416,305.6952973,344.9511321,0.3841128,0.006697481,0.002889448,2.629171648,1.939104,1.028864,0.030398361,0,0.405294848,0,0.003379402,8.442107072,87.52397051,77.60988378,8.183852837,16.54952006,2.931008,3378.117189,0.00256,0.017152,0.002592 +2203,0,0,0,0,2.14226095,0.342849333,0.077111333,1.837338445,0,0,0.021485912,0.346766,0.00376,39.20257467,0,1530.578657,305.0088849,343.2083574,0.37611045,0.00655795,0.002829251,2.574397239,1.898706,1.007429333,0.029765062,0,0.396851205,0,0.003308998,8.430581106,87.43822738,76.81240758,8.126832607,16.49478414,2.869945333,3323.538309,0.002506667,0.016794667,0.002538 +2204,0,0,0,0,2.126679234,0.335554667,0.075470667,1.798246137,0,0,0.021028765,0.339388,0.00368,38.36847733,0,1498.013153,304.3224724,341.4655826,0.3681081,0.006418419,0.002769055,2.519622829,1.858308,0.985994667,0.029131763,0,0.388407563,0,0.003238594,8.41905514,87.35248425,76.01493138,8.069812377,16.44004823,2.808882667,3268.959429,0.002453333,0.016437333,0.002484 +2205,0,0,0,0,2.111097518,0.32826,0.07383,1.75915383,0,0,0.020571618,0.33201,0.0036,37.53438,0,1465.44765,303.63606,339.7228078,0.36010575,0.006278888,0.002708858,2.46484842,1.81791,0.96456,0.028498464,0,0.37996392,0,0.003168189,8.407529173,87.26674112,75.21745518,8.012792148,16.38531231,2.74782,3214.380549,0.0024,0.01608,0.00243 +2206,0,0,0,0,2.095515801,0.320965333,0.072189333,1.720061523,0,0,0.020114471,0.324632,0.00352,36.70028267,0,1432.882147,302.9496476,337.980033,0.3521034,0.006139358,0.002648661,2.410074011,1.777512,0.943125333,0.027865165,0,0.371520277,0,0.003097785,8.396003207,87.18099798,74.41997899,7.955771918,16.33057639,2.686757333,3159.80167,0.002346667,0.015722667,0.002376 +2207,0,0,0,0,2.079934085,0.313670667,0.070548667,1.680969215,0,0,0.019657324,0.317254,0.00344,35.86618533,0,1400.316643,302.2632352,336.2372582,0.34410105,0.005999827,0.002588464,2.355299601,1.737114,0.921690667,0.027231865,0,0.363076635,0,0.003027381,8.384477241,87.09525485,73.62250279,7.898751688,16.27584047,2.625694667,3105.22279,0.002293333,0.015365333,0.002322 +2208,0,0,0,0,2.064352369,0.306376,0.068908,1.641876908,0,0,0.019200177,0.309876,0.00336,35.032088,0,1367.75114,301.5768227,334.4944834,0.3360987,0.005860296,0.002528267,2.300525192,1.696716,0.900256,0.026598566,0,0.354632992,0,0.002956977,8.372951274,87.00951172,72.82502659,7.841731459,16.22110455,2.564632,3050.64391,0.00224,0.015008,0.002268 +2209,0,0,0,0,2.048770652,0.299081333,0.067267333,1.602784601,0,0,0.018743029,0.302498,0.00328,34.19799067,0,1335.185637,300.8904103,332.7517086,0.32809635,0.005720765,0.00246807,2.245750783,1.656318,0.878821333,0.025965267,0,0.346189349,0,0.002886572,8.361425308,86.92376858,72.0275504,7.784711229,16.16636863,2.503569333,2996.06503,0.002186667,0.014650667,0.002214 +2210,0,0,0,0,2.033188936,0.291786667,0.065626667,1.563692293,0,0,0.018285882,0.29512,0.0032,33.36389333,0,1302.620133,300.2039979,331.0089338,0.320094,0.005581234,0.002407874,2.190976373,1.61592,0.857386667,0.025331968,0,0.337745707,0,0.002816168,8.349899341,86.83802545,71.2300742,7.727691,16.11163271,2.442506667,2941.48615,0.002133333,0.014293333,0.00216 +2211,0,0,0,0,2.01760722,0.284492,0.063986,1.524599986,0,0,0.017828735,0.287742,0.00312,32.529796,0,1270.05463,299.5175854,329.266159,0.31209165,0.005441703,0.002347677,2.136201964,1.575522,0.835952,0.024698669,0,0.329302064,0,0.002745764,8.338373375,86.75228232,70.432598,7.67067077,16.05689679,2.381444,2886.90727,0.00208,0.013936,0.002106 +2212,0,0,0,0,2.002025503,0.277197333,0.062345333,1.485507679,0,0,0.017371588,0.280364,0.00304,31.69569867,0,1237.489127,298.831173,327.5233842,0.3040893,0.005302172,0.00228748,2.081427555,1.535124,0.814517333,0.024065369,0,0.320858421,0,0.00267536,8.326847409,86.66653919,69.6351218,7.61365054,16.00216088,2.320381333,2832.32839,0.002026667,0.013578667,0.002052 +2213,0,0,0,0,1.986443787,0.269902667,0.060704667,1.446415371,0,0,0.016914441,0.272986,0.00296,30.86160133,0,1204.923623,298.1447606,325.7806094,0.29608695,0.005162642,0.002227283,2.026653145,1.494726,0.793082667,0.02343207,0,0.312414779,0,0.002604956,8.315321442,86.58079605,68.83764561,7.556630311,15.94742496,2.259318667,2777.74951,0.001973333,0.013221333,0.001998 +2214,0,0,0,0,1.970862071,0.262608,0.059064,1.407323064,0,0,0.016457294,0.265608,0.00288,30.027504,0,1172.35812,297.4583482,324.0378346,0.2880846,0.005023111,0.002167086,1.971878736,1.454328,0.771648,0.022798771,0,0.303971136,0,0.002534551,8.303795476,86.49505292,68.04016941,7.499610081,15.89268904,2.198256,2723.17063,0.00192,0.012864,0.001944 +2215,0,0,0,0,1.955280354,0.255313333,0.057423333,1.368230757,0,0,0.016000147,0.25823,0.0028,29.19340667,0,1139.792617,296.7719357,322.2950598,0.28008225,0.00488358,0.002106889,1.917104327,1.41393,0.750213333,0.022165472,0,0.295527493,0,0.002464147,8.29226951,86.40930979,67.24269321,7.442589851,15.83795312,2.137193333,2668.591751,0.001866667,0.012506667,0.00189 +2216,0,0,0,0,1.939698638,0.248018667,0.055782667,1.329138449,0,0,0.015543,0.250852,0.00272,28.35930933,0,1107.227113,296.0855233,320.552285,0.2720799,0.004744049,0.002046693,1.862329917,1.373532,0.728778667,0.021532173,0,0.287083851,0,0.002393743,8.280743543,86.32356665,66.44521702,7.385569622,15.7832172,2.076130667,2614.012871,0.001813333,0.012149333,0.001836 +2217,0,0,0,0,1.924116922,0.240724,0.054142,1.290046142,0,0,0.015085853,0.243474,0.00264,27.525212,0,1074.66161,295.3991109,318.8095102,0.26407755,0.004604518,0.001986496,1.807555508,1.333134,0.707344,0.020898873,0,0.278640208,0,0.002323339,8.269217577,86.23782352,65.64774082,7.328549392,15.72848128,2.015068,2559.433991,0.00176,0.011792,0.001782 +2218,0,0,0,0,1.908535205,0.233429333,0.052501333,1.250953835,0,0,0.014628706,0.236096,0.00256,26.69111467,0,1042.096107,294.7126984,317.0667354,0.2560752,0.004464987,0.001926299,1.752781099,1.292736,0.685909333,0.020265574,0,0.270196565,0,0.002252935,8.25769161,86.15208039,64.85026462,7.271529162,15.67374536,1.954005333,2504.855111,0.001706667,0.011434667,0.001728 +2219,0,0,0,0,1.892953489,0.226134667,0.050860667,1.211861527,0,0,0.014171559,0.228718,0.00248,25.85701733,0,1009.530603,294.026286,315.3239607,0.24807285,0.004325456,0.001866102,1.698006689,1.252338,0.664474667,0.019632275,0,0.261752923,0,0.00218253,8.246165644,86.06633726,64.05278843,7.214508933,15.61900944,1.892942667,2450.276231,0.001653333,0.011077333,0.001674 +2220,0,0,0,0,1.877371773,0.21884,0.04922,1.17276922,0,0,0.013714412,0.22134,0.0024,25.02292,0,976.9651,293.3398736,313.5811859,0.2400705,0.004185926,0.001805905,1.64323228,1.21194,0.64304,0.018998976,0,0.25330928,0,0.002112126,8.234639678,85.98059412,63.25531223,7.157488703,15.56427353,1.83188,2395.697351,0.0016,0.01072,0.00162 +2221,0,0,0,0,1.861790056,0.211545333,0.047579333,1.133676913,0,0,0.013257265,0.213962,0.00232,24.18882267,0,944.3995967,292.6534612,311.8384111,0.23206815,0.004046395,0.001745708,1.588457871,1.171542,0.621605333,0.018365677,0,0.244865637,0,0.002041722,8.223113711,85.89485099,62.45783603,7.100468473,15.50953761,1.770817333,2341.118471,0.001546667,0.010362667,0.001566 +2222,0,0,0,0,1.84620834,0.204250667,0.045938667,1.094584605,0,0,0.012800118,0.206584,0.00224,23.35472533,0,911.8340933,291.9670487,310.0956363,0.2240658,0.003906864,0.001685512,1.533683461,1.131144,0.600170667,0.017732377,0,0.236421995,0,0.001971318,8.211587745,85.80910786,61.66035983,7.043448244,15.45480169,1.709754667,2286.539591,0.001493333,0.010005333,0.001512 +2223,0,0,0,0,1.830626624,0.196956,0.044298,1.055492298,0,0,0.012342971,0.199206,0.00216,22.520628,0,879.26859,291.2806363,308.3528615,0.21606345,0.003767333,0.001625315,1.478909052,1.090746,0.578736,0.017099078,0,0.227978352,0,0.001900914,8.200061779,85.72336472,60.86288364,6.986428014,15.40006577,1.648692,2231.960711,0.00144,0.009648,0.001458 +2224,0,0,0,0,1.815044908,0.189661333,0.042657333,1.016399991,0,0,0.011885824,0.191828,0.00208,21.68653067,0,846.7030867,290.5942239,306.6100867,0.2080611,0.003627802,0.001565118,1.424134643,1.050348,0.557301333,0.016465779,0,0.219534709,0,0.001830509,8.188535812,85.63762159,60.06540744,6.929407785,15.34532985,1.587629333,2177.381832,0.001386667,0.009290667,0.001404 +2225,0,0,0,0,1.799463191,0.182366667,0.041016667,0.977307683,0,0,0.011428677,0.18445,0.002,20.85243333,0,814.1375833,289.9078114,304.8673119,0.20005875,0.003488271,0.001504921,1.369360233,1.00995,0.535866667,0.01583248,0,0.211091067,0,0.001760105,8.177009846,85.55187846,59.26793124,6.872387555,15.29059393,1.526566667,2122.802952,0.001333333,0.008933333,0.00135 +2226,0,0,0,0,1.783881475,0.175072,0.039376,0.938215376,0,0,0.010971529,0.177072,0.00192,20.018336,0,781.57208,289.221399,303.1245371,0.1920564,0.00334874,0.001444724,1.314585824,0.969552,0.514432,0.015199181,0,0.202647424,0,0.001689701,8.165483879,85.46613532,58.47045505,6.815367325,15.23585801,1.465504,2068.224072,0.00128,0.008576,0.001296 +2227,0,0,0,0,1.768299759,0.167777333,0.037735333,0.899123069,0,0,0.010514382,0.169694,0.00184,19.18423867,0,749.0065767,288.5349866,301.3817623,0.18405405,0.00320921,0.001384527,1.259811415,0.929154,0.492997333,0.014565881,0,0.194203781,0,0.001619297,8.153957913,85.38039219,57.67297885,6.758347096,15.18112209,1.404441333,2013.645192,0.001226667,0.008218667,0.001242 +2228,0,0,0,0,1.752718042,0.160482667,0.036094667,0.860030761,0,0,0.010057235,0.162316,0.00176,18.35014133,0,716.4410733,287.8485741,299.6389875,0.1760517,0.003069679,0.00132433,1.205037005,0.888756,0.471562667,0.013932582,0,0.185760139,0,0.001548893,8.142431947,85.29464906,56.87550265,6.701326866,15.12638617,1.343378667,1959.066312,0.001173333,0.007861333,0.001188 +2229,0,0,0,0,1.737136326,0.153188,0.034454,0.820938454,0,0,0.009600088,0.154938,0.00168,17.516044,0,683.87557,287.1621617,297.8962127,0.16804935,0.002930148,0.001264134,1.150262596,0.848358,0.450128,0.013299283,0,0.177316496,0,0.001478488,8.13090598,85.20890593,56.07802645,6.644306636,15.07165026,1.282316,1904.487432,0.00112,0.007504,0.001134 +2230,0,0,0,0,1.72155461,0.145893333,0.032813333,0.781846147,0,0,0.009142941,0.14756,0.0016,16.68194667,0,651.3100667,286.4757493,296.1534379,0.160047,0.002790617,0.001203937,1.095488187,0.80796,0.428693333,0.012665984,0,0.168872853,0,0.001408084,8.119380014,85.12316279,55.28055026,6.587286407,15.01691434,1.221253333,1849.908552,0.001066667,0.007146667,0.00108 +2231,0,0,0,0,1.705972893,0.138598667,0.031172667,0.742753839,0,0,0.008685794,0.140182,0.00152,15.84784933,0,618.7445633,285.7893369,294.4106631,0.15204465,0.002651086,0.00114374,1.040713777,0.767562,0.407258667,0.012032685,0,0.160429211,0,0.00133768,8.107854047,85.03741966,54.48307406,6.530266177,14.96217842,1.160190667,1795.329672,0.001013333,0.006789333,0.001026 +2232,0,0,0,0,1.690391177,0.131304,0.029532,0.703661532,0,0,0.008228647,0.132804,0.00144,15.013752,0,586.17906,285.1029244,292.6678883,0.1440423,0.002511555,0.001083543,0.985939368,0.727164,0.385824,0.011399385,0,0.151985568,0,0.001267276,8.096328081,84.95167653,53.68559786,6.473245947,14.9074425,1.099128,1740.750793,9.60E-04,0.006432,9.72E-04 +2233,0,0,0,0,1.674809461,0.124009333,0.027891333,0.664569225,0,0,0.0077715,0.125426,0.00136,14.17965467,0,553.6135567,284.416512,290.9251135,0.13603995,0.002372025,0.001023346,0.931164959,0.686766,0.364389333,0.010766086,0,0.143541925,0,0.001196872,8.084802115,84.86593339,52.88812167,6.416225718,14.85270658,1.038065333,1686.171913,9.07E-04,0.006074667,9.18E-04 +2234,0,0,0,0,1.659227744,0.116714667,0.026250667,0.625476917,0,0,0.007314353,0.118048,0.00128,13.34555733,0,521.0480533,283.7300996,289.1823387,0.1280376,0.002232494,9.63E-04,0.876390549,0.646368,0.342954667,0.010132787,0,0.135098283,0,0.001126467,8.073276148,84.78019026,52.09064547,6.359205488,14.79797066,0.977002667,1631.593033,8.53E-04,0.005717333,8.64E-04 +2235,0,0,0,0,1.643646028,0.10942,0.02461,0.58638461,0,0,0.006857206,0.11067,0.0012,12.51146,0,488.48255,283.0436871,287.4395639,0.12003525,0.002092963,9.03E-04,0.82161614,0.60597,0.32152,0.009499488,0,0.12665464,0,0.001056063,8.061750182,84.69444713,51.29316927,6.302185259,14.74323474,0.91594,1577.014153,8.00E-04,0.00536,8.10E-04 +2236,0,0,0,0,1.628064312,0.102125333,0.022969333,0.547292303,0,0,0.006400059,0.103292,0.00112,11.67736267,0,455.9170467,282.3572747,285.6967892,0.1120329,0.001953432,8.43E-04,0.766841731,0.565572,0.300085333,0.008866189,0,0.118210997,0,9.86E-04,8.050224216,84.608704,50.49569307,6.245165029,14.68849882,0.854877333,1522.435273,7.47E-04,0.005002667,7.56E-04 +2237,0,0,0,0,1.612482595,0.094830667,0.021328667,0.508199995,0,0,0.005942912,0.095914,0.00104,10.84326533,0,423.3515433,281.6708623,283.9540144,0.10403055,0.001813901,7.83E-04,0.712067321,0.525174,0.278650667,0.00823289,0,0.109767355,0,9.15E-04,8.038698249,84.52296086,49.69821688,6.188144799,14.63376291,0.793814667,1467.856393,6.93E-04,0.004645333,7.02E-04 +2238,0,0,0,0,1.596900879,0.087536,0.019688,0.469107688,0,0,0.005485765,0.088536,9.60E-04,10.009168,0,390.78604,280.9844499,282.2112396,0.0960282,0.00167437,7.22E-04,0.657292912,0.484776,0.257216,0.00759959,0,0.101323712,0,8.45E-04,8.027172283,84.43721773,48.90074068,6.13112457,14.57902699,0.732752,1413.277513,6.40E-04,0.004288,6.48E-04 +2239,0,0,0,0,1.581319163,0.080241333,0.018047333,0.430015381,0,0,0.005028618,0.081158,8.80E-04,9.175070667,0,358.2205367,280.2980374,280.4684648,0.08802585,0.001534839,6.62E-04,0.602518503,0.444378,0.235781333,0.006966291,0,0.092880069,0,7.74E-04,8.015646316,84.3514746,48.10326448,6.07410434,14.52429107,0.671689333,1358.698633,5.87E-04,0.003930667,5.94E-04 +2240,0,0,0,0,1.565737446,0.072946667,0.016406667,0.390923073,0,0,0.004571471,0.07378,8.00E-04,8.340973333,0,325.6550333,279.611625,278.72569,0.0800235,0.001395309,6.02E-04,0.547744093,0.40398,0.214346667,0.006332992,0,0.084436427,0,7.04E-04,8.00412035,84.26573146,47.30578829,6.01708411,14.46955515,0.610626667,1304.119753,5.33E-04,0.003573333,5.40E-04 +2241,0,0,0,0,1.55015573,0.065652,0.014766,0.351830766,0,0,0.004114324,0.066402,7.20E-04,7.506876,0,293.08953,278.9252126,276.9829152,0.07202115,0.001255778,5.42E-04,0.492969684,0.363582,0.192912,0.005699693,0,0.075992784,0,6.34E-04,7.992594384,84.17998833,46.50831209,5.960063881,14.41481923,0.549564,1249.540874,4.80E-04,0.003216,4.86E-04 +2242,0,0,0,0,1.534574014,0.058357333,0.013125333,0.312738459,0,0,0.003657176,0.059024,6.40E-04,6.672778667,0,260.5240267,278.2388001,275.2401404,0.0640188,0.001116247,4.82E-04,0.438195275,0.323184,0.171477333,0.005066394,0,0.067549141,0,5.63E-04,7.981068417,84.0942452,45.71083589,5.903043651,14.36008331,0.488501333,1194.961994,4.27E-04,0.002858667,4.32E-04 +2243,0,0,0,0,1.518992298,0.051062667,0.011484667,0.273646151,0,0,0.003200029,0.051646,5.60E-04,5.838681333,0,227.9585233,277.5523877,273.4973656,0.05601645,9.77E-04,4.21E-04,0.383420865,0.282786,0.150042667,0.004433094,0,0.059105499,0,4.93E-04,7.969542451,84.00850207,44.9133597,5.846023421,14.30534739,0.427438667,1140.383114,3.73E-04,0.002501333,3.78E-04 +2244,0,0,0,0,1.503410581,0.043768,0.009844,0.234553844,0,0,0.002742882,0.044268,4.80E-04,5.004584,0,195.39302,276.8659753,271.7545908,0.0480141,8.37E-04,3.61E-04,0.328646456,0.242388,0.128608,0.003799795,0,0.050661856,0,4.22E-04,7.958016485,83.92275893,44.1158835,5.789003192,14.25061147,0.366376,1085.804234,3.20E-04,0.002144,3.24E-04 +2245,0,0,0,0,1.487828865,0.036473333,0.008203333,0.195461537,0,0,0.002285735,0.03689,4.00E-04,4.170486667,0,162.8275167,276.1795628,270.011816,0.04001175,6.98E-04,3.01E-04,0.273872047,0.20199,0.107173333,0.003166496,0,0.042218213,0,3.52E-04,7.946490518,83.8370158,43.3184073,5.731982962,14.19587556,0.305313333,1031.225354,2.67E-04,0.001786667,2.70E-04 +2246,0,0,0,0,1.472247149,0.029178667,0.006562667,0.156369229,0,0,0.001828588,0.029512,3.20E-04,3.336389333,0,130.2620133,275.4931504,268.2690412,0.0320094,5.58E-04,2.41E-04,0.219097637,0.161592,0.085738667,0.002533197,0,0.033774571,0,2.82E-04,7.934964552,83.75127267,42.5209311,5.674962733,14.14113964,0.244250667,976.6464741,2.13E-04,0.001429333,2.16E-04 +2247,0,0,0,0,1.456665432,0.021884,0.004922,0.117276922,0,0,0.001371441,0.022134,2.40E-04,2.502292,0,97.69651,274.806738,266.5262664,0.02400705,4.19E-04,1.81E-04,0.164323228,0.121194,0.064304,0.001899898,0,0.025330928,0,2.11E-04,7.923438585,83.66552953,41.72345491,5.617942503,14.08640372,0.183188,922.0675942,1.60E-04,0.001072,1.62E-04 +2248,0,0,0,0,1.441083716,0.014589333,0.003281333,0.078184615,0,0,9.14E-04,0.014756,1.60E-04,1.668194667,0,65.13100667,274.1203256,264.7834916,0.0160047,2.79E-04,1.20E-04,0.109548819,0.080796,0.042869333,0.001266598,0,0.016887285,0,1.41E-04,7.911912619,83.5797864,40.92597871,5.560922273,14.0316678,0.122125333,867.4887143,1.07E-04,7.15E-04,1.08E-04 +2249,0,0,0,0,1.425502,0.007294667,0.001640667,0.039092307,0,0,4.57E-04,0.007378,8.00E-05,0.834097333,0,32.56550333,273.4339131,263.0407168,0.00800235,1.40E-04,6.02E-05,0.054774409,0.040398,0.021434667,6.33E-04,0,0.008443643,0,7.04E-05,7.900386653,83.49404327,40.12850251,5.503902044,13.97693188,0.061062667,812.9098344,5.33E-05,3.57E-04,5.40E-05 +2250,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2251,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2252,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2253,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2254,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2255,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2256,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2257,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2258,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2259,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2260,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2261,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2262,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2263,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2264,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2265,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2266,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2267,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2268,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2269,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2270,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2271,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2272,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2273,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2274,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2275,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2276,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2277,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2278,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2279,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2280,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2281,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2282,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2283,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2284,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2285,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2286,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2287,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2288,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2289,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2290,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2291,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2292,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2293,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2294,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2295,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2296,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2297,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2298,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2299,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 +2300,0,0,0,0,1.409920283,0,0,0,0,0,0,0,0,0,0,0,272.7475007,261.297942,0,0,0,0,0,0,0,0,0,0,0,7.888860686,83.40830013,39.33102632,5.446881814,13.92219596,0,758.3309545,0,0,0 diff --git a/inst/shinyApp/www/inputs/ssp460_emissions.csv b/inst/shinyApp/www/inputs/ssp460_emissions.csv new file mode 100644 index 0000000..3b1e2e5 --- /dev/null +++ b/inst/shinyApp/www/inputs/ssp460_emissions.csv @@ -0,0 +1,562 @@ +; ssp460 from rcmip,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; hectordata 0.0.0.9000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; commit dab9aad8750535b,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; date Fri Nov 4 11:35:31 2022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; UNITS:,Pg C/yr,Pg C/yr,Pg C/yr,Pg C/yr,Tg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg CH4,Tg CO,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg N,Tg,Tg NMVOC,Tg N,Tg,Gg,Gg S,Gg,Gg,Gg +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_emissions,CCl4_emissions,CF4_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CFC11_emissions,CFC12_emissions,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_emissions,CH4_emissions,CO_emissions,HCFC141b_emissions,HCFC142b_emissions,HCFC22_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC23_emissions,HFC245fa_emissions,HFC32_emissions,HFC4310_emissions,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,SF6_emissions,SO2_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions +1745,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1746,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1747,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1748,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1749,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1750,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1751,0.002594106,0.08266927,0,0,2.072925926,0,0.024856862,0.010071225,0,0,0,0,0,105.1072,0,4276.7685,18.91510887,343.9263672,0,0,0,0,0,0,0,0,0,0,0,0.055785796,6.860142185,59.08812628,3.833772936,15.18871674,0,1206.06818,0.007723273,0,0 +1752,0.002595208,0.084190146,0,0,2.064311933,0,0.024856862,0.010071225,0,0,0,0,0,105.12502,0,4277.7049,18.88971181,341.8090339,0,0,0,0,0,0,0,0,0,0,0,0.056839716,6.819482037,58.63199703,3.834371851,15.03447574,0,1200.427847,0.007723273,0,0 +1753,0.002595302,0.085739002,0,0,2.071950564,0,0.024856862,0.010071225,0,0,0,0,0,105.10373,0,4276.586,19.12137723,343.6754562,0,0,0,0,0,0,0,0,0,0,0,0.057913547,6.881438529,59.0263494,3.817794323,15.18254515,0,1207.227099,0.007723273,0,0 +1754,0.002596404,0.087316353,0,0,2.099349783,0,0.024856862,0.010071225,0,0,0,0,0,105.07356,0,4274.9998,19.50906107,349.8156252,0,0,0,0,0,0,0,0,0,0,0,0.059007665,7.015189224,60.26994517,3.847331337,15.55877305,0,1232.953114,0.007723273,0,0 +1755,0.002597506,0.088922722,0,0,2.099173165,0,0.024856862,0.010071225,0,0,0,0,0,105.09182,0,4275.9598,19.50045493,348.144668,0,0,0,0,0,0,0,0,0,0,0,0.060122454,6.943989043,59.82493372,3.886652888,15.35818253,0,1223.082685,0.007723273,0,0 +1756,0.00277509,0.090558644,0,0,2.068915407,0,0.024856862,0.010071225,0,0,0,0,0,105.08556,0,4275.6306,19.4625366,343.3231517,0,0,0,0,0,0,0,0,0,0,0,0.061258303,6.922711557,58.94682931,3.780146274,15.19577663,0,1211.479202,0.007723273,0,0 +1757,0.002776193,0.092224663,0,0,2.147923676,0,0.024856862,0.010071225,0,0,0,0,0,105.09137,0,4275.9361,20.02354066,355.9418923,0,0,0,0,0,0,0,0,0,0,0,0.062415611,7.047674129,61.263693,3.998436266,15.70481912,0,1255.688247,0.007723273,0,0 +1758,0.002777295,0.093921331,0,0,2.12061141,0,0.024856862,0.010071225,0,0,0,0,0,105.09662,0,4276.2118,19.93400533,351.839749,0,0,0,0,0,0,0,0,0,0,0,0.063594783,6.995459768,60.43461244,3.95160932,15.51461163,0,1241.80619,0.007723273,0,0 +1759,0.002778397,0.095649213,0,0,2.117267431,0,0.024856862,0.010071225,0,0,0,0,0,105.08372,0,4275.5338,20.14146621,351.5077627,0,0,0,0,0,0,0,0,0,0,0,0.064796232,7.045958325,60.44526305,3.882559461,15.57401349,0,1238.693446,0.007723273,0,0 +1760,0.002778491,0.097408883,0,0,2.127804105,0,0.024856862,0.010071225,0,0,0,0,0,105.04022,0,4273.2473,20.41679714,354.4182853,0,0,0,0,0,0,0,0,0,0,0,0.06602038,7.128048286,61.05172479,3.870426966,15.81906393,0,1250.820917,0.007723273,0,0 +1761,0.0030418,0.099200926,0,0,2.137756989,0,0.024856862,0.010071225,0,0,0,0,0,105.09143,0,4275.9395,20.45599017,354.7079679,0,0,0,0,0,0,0,0,0,0,0,0.067267654,7.080969808,60.9842272,3.947785545,15.69191588,0,1256.548122,0.007723273,0,0 +1762,0.003042907,0.101025937,0,0,2.101748109,0,0.024856862,0.010071225,0,0,0,0,0,105.08127,0,4275.4052,20.45168738,349.2496972,0,0,0,0,0,0,8.32E-08,0,0,1.51E-06,0,0.068538493,7.072547337,60.02708933,3.805606722,15.52593531,0,1235.176016,0.007723273,0,0 +1763,0.003044015,0.102884523,0,0,2.107029758,0,0.024856862,0.010071225,0,0,0,0,0,105.09332,0,4276.0386,20.54517934,350.0593349,0,0,0,0,0,0,6.68E-07,0,0,1.24E-05,0,0.06983334,7.067982584,60.12706627,3.846149431,15.52676249,0,1242.431334,0.007723273,0,0 +1764,0.003045122,0.104777302,0,0,2.071549227,0,0.024856862,0.010071225,0,0,0,0,0,105.1104,0,4276.9364,20.26091721,342.0446107,0,0,0,0,0,0,1.27E-06,0,0,2.50E-05,0,0.07115265,6.89874574,58.43835717,3.829003368,14.95869898,0,1212.823098,0.007723273,0,0 +1765,0.003046229,0.106704903,0,0,2.123600022,0,0.024856862,0.010071225,0,0,0,0,0,105.07293,0,4274.9668,20.919155,352.9327258,0,0,0,0,0,0,1.39E-06,0,0,3.03E-05,0,0.072496884,7.112382325,60.62945786,3.878155223,15.67992411,0,1250.725203,0.007723273,0,0 +1766,0.003396267,0.108667966,0,0,2.110459977,0,0.024856862,0.010071225,0,0,0,0,0,105.07758,0,4275.2111,20.8535919,349.380645,0,0,0,0,0,0,1.42E-06,0,0,3.44E-05,0,0.073866514,7.036296531,59.85878463,3.884852898,15.35883081,0,1244.142077,0.007723273,0,0 +1767,0.003397374,0.110667143,0,0,2.112460701,0,0.024856862,0.010071225,0,0,0,0,0,105.08566,0,4275.6359,20.99917946,349.616099,0,0,0,0,0,0,1.46E-06,0,0,3.84E-05,0,0.07526202,7.045382427,59.8910269,3.880476349,15.4005645,0,1243.308056,0.007723273,0,0 +1768,0.003398482,0.1127031,0,0,2.18313204,0,0.024856862,0.010071225,0,0,0,0,0,105.04673,0,4273.5893,21.65945211,362.6536848,0,0,0,0,0,0,1.49E-06,0,0,4.25E-05,0,0.07668389,7.223617821,62.36582555,4.039005154,16.0637302,0,1294.705423,0.007723273,0,0 +1769,0.003399589,0.114776512,0,0,2.137633742,0,0.024856862,0.010071225,0,0,0,0,0,105.0767,0,4275.165,21.49633535,355.0254185,0,0,0,0,0,0,1.53E-06,0,0,4.65E-05,0,0.078132622,7.157863703,60.95040361,3.914619863,15.73509479,0,1273.362221,0.007723273,0,0 +1770,0.003400696,0.116888069,0,0,2.139364739,0,0.024856862,0.010071225,0,0,0,0,0,105.04544,0,4273.5216,21.63439757,355.3605476,0,0,0,0,0,0,1.57E-06,0,0,5.06E-05,0,0.079608724,7.155978284,60.96602721,3.927122991,15.74271509,0,1277.49221,0.007723273,0,0 +1771,0.003768892,0.119038473,0,0,2.100909701,0,0.024856862,0.010071225,0,0,0,0,0,105.07227,0,4274.9318,21.4289211,347.8619883,0,0,0,0,0,0,1.60E-06,0,0,5.47E-05,0,0.081112713,7.069218405,59.42424033,3.843192573,15.32197739,0,1230.128239,0.007723273,0,0 +1772,0.003770005,0.121228438,0,0,2.087077541,0,0.024856862,0.010071225,0,0,0,0,0,105.08887,0,4275.8046,21.39461572,344.6134738,0,0,0,0,0,0,1.64E-06,0,0,5.87E-05,0,0.082645116,7.043230562,58.72495295,3.812980037,15.11418329,0,1217.836348,0.007723273,0,0 +1773,0.003771118,0.123458692,0,0,2.092755603,0,0.024856862,0.010071225,0,0,0,0,0,105.06952,0,4274.7874,21.59523139,345.7768091,0,0,0,0,0,0,1.67E-06,0,0,6.28E-05,0,0.084206469,7.104503735,58.91656885,3.795742519,15.20466379,0,1220.686645,0.007723273,0,0 +1774,0.003772231,0.125729977,0,0,2.154900741,0,0.024856862,0.010071225,0,0,0,0,0,105.0265,0,4272.5262,22.25970773,358.103585,0,0,0,0,0,0,1.71E-06,0,0,6.68E-05,0,0.08579732,7.347701469,61.31335787,3.892106055,15.87559318,0,1266.428616,0.007723273,0,0 +1775,0.003773344,0.128043046,0,0,2.148996597,0,0.024856862,0.010071225,0,0,0,0,0,105.05246,0,4273.8905,22.20096329,355.0471729,0,0,0,0,0,0,1.75E-06,0,0,7.09E-05,0,0.087418226,7.26964482,60.54083046,3.918102925,15.5891357,0,1250.604504,0.007723273,0,0 +1776,0.004161709,0.13039867,0,0,2.112143132,0,0.024856862,0.010071225,0,0,0,0,0,105.03944,0,4273.2061,22.14194213,348.8985525,0,0,0,0,0,0,1.78E-06,0,0,7.49E-05,0,0.089069754,7.261469977,59.3811448,3.777483547,15.37007702,0,1235.260121,0.007723273,0,0 +1777,0.004162822,0.132797629,0,0,2.170244784,0,0.024856862,0.010071225,0,0,0,0,0,105.05273,0,4273.9048,22.56871006,357.545361,0,0,0,0,0,0,1.82E-06,0,0,7.90E-05,0,0.090752483,7.355973763,60.89349007,3.937981414,15.67345753,0,1262.643552,0.007723273,0,0 +1778,0.004163935,0.135240723,0,0,2.198001402,0,0.024856862,0.010071225,0,0,0,0,0,105.04465,0,4273.48,22.85608093,362.7554135,0,0,0,0,0,0,1.85E-06,0,0,8.30E-05,0,0.092467003,7.434606067,61.78348695,4.021077007,15.89945625,0,1282.280293,0.007723273,0,0 +1779,0.004165048,0.137728763,0,0,2.159615777,0,0.024856862,0.010071225,0,0,0,0,0,105.03691,0,4273.0734,22.82063569,355.9261715,0,0,0,0,0,0,1.89E-06,0,0,8.71E-05,0,0.094213914,7.418773457,60.50081488,3.865645204,15.62745786,0,1253.809198,0.007723273,0,0 +1780,0.00416717,0.140262576,0,0,2.189267588,0,0.024856862,0.010071225,0,0,0,0,0,104.98817,0,4270.511,23.24616665,361.6140422,0,0,0,0,0,0,1.92E-06,0,0,9.10E-05,0,0.095993828,7.569429121,61.61859566,3.871147964,16.0183808,0,1274.797709,0.007723273,0,0 +1781,0.004659413,0.142843003,0,0,2.1894412,0,0.024856862,0.010071225,0,0,0,0,0,105.04236,0,4273.3596,23.24965548,360.0900539,0,0,0,0,0,0,1.96E-06,0,0,9.52E-05,0,0.097807369,7.505783353,61.19330647,3.920723923,15.80695227,0,1277.536252,0.007723273,0,0 +1782,0.004660532,0.145470903,0,0,2.160522701,0,0.024856862,0.010071225,0,0,0,0,0,105.03125,0,4272.7759,23.34175812,356.0465546,0,0,0,0,0,0,2.00E-06,0,0,9.92E-05,0,0.099655171,7.519625788,60.48572145,3.793838185,15.71282083,0,1261.050876,0.007723273,0,0 +1783,0.004662661,0.148147149,0,0,2.15072559,0,0.024856862,0.010071225,0,0,0,0,0,105.0436,0,4273.4248,23.37991679,354.2869243,0,0,0,0,0,0,2.03E-06,0,0,1.03E-04,0,0.101537883,7.496232273,60.10171272,3.788738178,15.60726047,0,1258.691216,0.007723273,0,0 +1784,0.00466378,0.150872629,0,0,2.140542212,0,0.024856862,0.010071225,0,0,0,0,0,105.05531,0,4274.0405,23.2940423,350.5694963,0,0,0,0,0,0,2.07E-06,0,0,1.07E-04,0,0.103456163,7.3811564,59.21225989,3.835360348,15.22814126,0,1241.091384,0.007723273,0,0 +1785,0.004666993,0.153648251,0,0,2.165839691,0,0.024856862,0.010071225,0,0,0,0,0,105.02817,0,4272.6136,23.80210554,356.8051254,0,0,0,0,0,0,2.10E-06,0,0,1.11E-04,0,0.105410684,7.538152323,60.49447936,3.821649192,15.73271148,0,1266.56815,0.007723273,0,0 +1786,0.00529538,0.156474937,0,0,2.158683485,0,0.024856862,0.010071225,0,0,0,0,0,105.02684,0,4272.5442,23.831995,354.2058773,0,0,0,0,0,0,2.14E-06,0,0,1.15E-04,0,0.107402131,7.491084254,59.91468241,3.826316215,15.46715712,0,1263.905903,0.007723273,0,0 +1787,0.005297508,0.159353625,0,0,2.185179294,0,0.024856862,0.010071225,0,0,0,0,0,105.03415,0,4272.9283,24.17652818,358.7933683,0,0,0,0,0,0,2.18E-06,0,0,1.19E-04,0,0.1094312,7.55517197,60.75335708,3.885107996,15.71033146,0,1281.331419,0.007723273,0,0 +1788,0.005298627,0.162285272,0,0,2.255223484,0,0.024856862,0.010071225,0,0,0,0,0,104.9922,0,4270.7227,24.85592892,371.3570923,0,0,0,0,0,0,2.21E-06,0,0,1.23E-04,0,0.111498603,7.730934741,63.12433047,4.038519355,16.34335434,0,1326.080725,0.007723273,0,0 +1789,0.005300755,0.165270854,0,0,2.207664632,0,0.024856862,0.010071225,0,0,0,0,0,105.0242,0,4272.405,24.71707284,363.4416446,0,0,0,0,0,0,2.25E-06,0,0,1.28E-04,0,0.113605064,7.663516243,61.63229238,3.911091424,16.00040861,0,1300.935055,0.007723273,0,0 +1790,0.005302883,0.168311362,0,0,2.216436996,0,0.024856862,0.010071225,0,0,0,0,0,104.99139,0,4270.6805,24.94220857,364.8802164,0,0,0,0,0,0,2.28E-06,0,0,1.32E-04,0,0.115751321,7.680254371,61.84599181,3.937203207,16.05674391,0,1304.800481,0.007723273,0,0 +1791,0.005920183,0.171407806,0,0,2.172583556,0,0.024856862,0.010071225,0,0,0,0,0,105.02128,0,4272.2515,24.77843217,356.6583862,0,0,0,0,0,0,2.32E-06,0,0,1.36E-04,0,0.117938125,7.556943543,60.2187392,3.848117366,15.61644988,0,1284.768804,0.007723273,0,0 +1792,0.006098811,0.174561216,0,0,2.161650793,0,0.024856862,0.010071225,0,0,0,0,0,105.04466,0,4273.4807,24.81889294,354.2515376,0,0,0,0,0,0,2.36E-06,0,0,1.40E-04,0,0.120166243,7.499155045,59.70568574,3.852168551,15.44666919,0,1279.936623,0.007723273,0,0 +1793,0.006105082,0.17777264,0,0,2.153273834,0,0.024856862,0.010071225,0,0,0,0,0,105.02605,0,4272.5025,25.03153141,353.3723093,0,0,0,0,0,0,2.39E-06,0,0,1.44E-04,0,0.122436456,7.518120739,59.5849395,3.798134648,15.47797954,0,1276.675891,0.007723273,0,0 +1794,0.006092419,0.181043144,0,0,2.213843116,0,0.024856862,0.010071225,0,0,0,0,0,104.98417,0,4270.301,25.76753778,365.721914,0,0,0,0,0,0,2.43E-06,0,0,1.48E-04,0,0.124749558,7.731535991,62.03822453,3.901984421,16.16525997,0,1323.391544,0.007723273,0,0 +1795,0.006095933,0.184373817,0,0,2.202692273,0,0.024856862,0.010071225,0,0,0,0,0,105.01093,0,4271.7076,25.77334281,362.1921227,0,0,0,0,0,0,2.46E-06,0,0,1.52E-04,0,0.127106359,7.626169221,61.24273214,3.919106621,15.88313195,0,1307.117791,0.007723273,0,0 +1796,0.006396386,0.187765764,0,0,2.153154616,0,0.024856862,0.010071225,0,0,0,0,0,104.99978,0,4271.1214,25.74058407,354.4783029,0,0,0,0,0,0,2.50E-06,0,0,1.56E-04,0,0.129507686,7.581863097,59.86424243,3.749609514,15.6283698,0,1286.414837,0.007723273,0,0 +1797,0.006712627,0.191220113,0,0,2.213475036,0,0.024856862,0.010071225,0,0,0,0,0,105.01623,0,4271.986,26.23006226,363.5482372,0,0,0,0,0,0,2.54E-06,0,0,1.60E-04,0,0.131954379,7.636302582,61.47137695,3.940974102,15.93865305,0,1322.1792,0.007723273,0,0 +1798,0.006990649,0.194738012,0,0,2.234056283,0,0.024856862,0.010070485,0,0,0,0,0,105.0081,0,4271.559,26.54644012,367.6501028,0,0,0,0,0,0,2.57E-06,0,0,1.64E-04,0,0.134447296,7.671017716,62.19763903,4.015700361,16.12667274,0,1344.494311,0.007723273,0,0 +1799,0.007363034,0.198320631,0,0,2.207292165,0,0.024856862,0.010071964,0,0,0,0,0,104.99068,0,4270.6431,26.70648817,363.4860469,0,0,0,0,0,0,2.61E-06,0,0,1.68E-04,0,0.13698731,7.67446285,61.4962302,3.882903388,16.03734279,0,1332.732765,0.007723273,0,0 +1800,0.007853248,0.201969159,0,0,2.215974055,0,0.024856862,0.010071225,0,0,0,0,0,104.95838,0,4268.9449,27.05634308,365.8466368,0,0,0,0,0,0,2.64E-06,0,0,1.72E-04,0,0.13957531,7.740645322,62.00320914,3.867691465,16.2421417,0,1351.401885,0.007723273,0,0 +1801,0.007792363,0.20568481,0,0,2.21940169,0,0.024856862,0.010071225,0,0,0,0,0,105.01099,0,4271.7107,27.12488718,364.9170684,0,0,0,0,0,0,2.68E-06,0,0,1.76E-04,0,0.142212204,7.701186978,61.66564779,3.921843763,16.06373322,0,1346.312669,0.007723273,0,0 +1802,0.010116776,0.209468818,0,0,2.202692661,0,0.024856862,0.010071225,0,0,0,0,0,104.99468,0,4270.8532,27.33978432,362.9627075,0,0,0,0,0,0,2.72E-06,0,0,1.80E-04,0,0.144898914,7.763054085,61.32615659,3.814905719,16.07582361,0,1365.792459,0.007723273,0,0 +1803,0.008763958,0.213322441,0,0,2.180015828,0,0.024856862,0.010071225,0,0,0,0,0,105.0108,0,4271.7009,27.32049985,358.65078,0,0,0,0,0,0,2.75E-06,0,0,1.84E-04,0,0.147636382,7.720863757,60.40434182,3.773697199,15.83103088,0,1340.023262,0.007723273,0,0 +1804,0.00956559,0.21724696,0,0,2.197298087,0,0.024856862,0.010071225,0,0,0,0,0,105.0121,0,4271.7691,27.46474997,359.528696,0,0,0,0,0,0,2.79E-06,0,0,1.88E-04,0,0.150425568,7.68708673,60.36470275,3.871473305,15.67624811,0,1347.990682,0.007723273,0,0 +1805,0.009351564,0.221243678,0,0,2.215042398,0,0.024856862,0.010071225,0,0,0,0,0,104.98963,0,4270.588,27.9507982,364.3037043,0,0,0,0,0,0,2.82E-06,0,0,1.92E-04,0,0.153267447,7.835162209,61.31991146,3.843518327,16.0941548,0,1367.021932,0.007723273,0,0 +1806,0.009786482,0.225313924,0,0,2.222822585,0,0.024856862,0.010071225,0,0,0,0,0,104.98239,0,4270.2074,28.13437245,364.3432293,0,0,0,0,0,0,2.86E-06,0,0,1.96E-04,0,0.156163016,7.843541453,61.22344968,3.877012285,15.95144317,0,1370.297233,0.007723273,0,0 +1807,0.010470139,0.229459052,0,0,2.239871982,0,0.024856862,0.010071225,0,0,0,0,0,104.99423,0,4270.8298,28.45865603,367.2349328,0,0,0,0,0,0,2.90E-06,0,0,2.00E-04,0,0.159113289,7.906227329,61.70646914,3.906741383,16.11756408,0,1389.725529,0.007723273,0,0 +1808,0.009785087,0.233680437,0,0,2.311936484,0,0.024856862,0.010071225,0,0,0,0,0,104.95199,0,4268.6094,29.18524117,380.035272,0,0,0,0,0,0,2.93E-06,0,0,2.04E-04,0,0.162119299,8.095303457,64.08195973,4.070358273,16.7315469,0,1425.575123,0.007723273,0,0 +1809,0.009793704,0.237979484,0,0,2.26744264,0,0.024856862,0.010071225,0,0,0,0,0,104.979,0,4270.0292,29.12865813,372.8486855,0,0,0,0,0,0,2.97E-06,0,0,2.08E-04,0,0.1651821,8.062766978,62.71002213,3.940068496,16.44016599,0,1403.131587,0.007723273,0,0 +1810,0.010412685,0.242357621,0,0,2.279523716,0,0.024856862,0.010071225,0,0,0,0,0,104.93988,0,4267.9729,29.42453242,374.7180119,0,0,0,0,0,0,3.00E-06,0,0,2.12E-04,0,0.168302763,8.107079152,62.97351665,3.9615916,16.52538808,0,1414.194561,0.007723273,0,0 +1811,0.011014901,0.246816304,0,0,2.252530236,0,0.024856862,0.010071225,0,0,0,0,0,104.96903,0,4269.505,29.40578756,369.2694863,0,0,0,0,0,0,3.04E-06,0,0,2.17E-04,0,0.171482384,8.026948341,61.829606,3.9187457,16.18886557,0,1403.686743,0.007723273,0,0 +1812,0.011395912,0.251357013,0,0,2.228006935,0,0.024856862,0.010071225,0,0,0,0,0,104.99029,0,4270.6225,29.4202985,364.5806875,0,0,0,0,0,0,3.07E-06,0,0,2.21E-04,0,0.174722074,7.965169636,60.85746997,3.875988658,15.92905063,0,1394.884132,0.007723273,0,0 +1813,0.011449081,0.255981258,0,0,2.231996859,0,0.024856862,0.010071225,0,0,0,0,0,104.97005,0,4269.5589,29.77847603,365.9138874,0,0,0,0,0,0,3.11E-06,0,0,2.25E-04,0,0.178022969,8.032995952,61.1361302,3.844088557,16.06491504,0,1400.325553,0.007723273,0,0 +1814,0.011703716,0.260690576,0,0,2.291579691,0,0.024856862,0.010071225,0,0,0,0,0,104.93884,0,4267.9182,30.54785186,377.9855417,0,0,0,0,0,0,3.14E-06,0,0,2.29E-04,0,0.181386226,8.255365792,63.49192823,3.946873452,16.71992349,0,1449.11988,0.007723273,0,0 +1815,0.012094117,0.265486531,0,0,2.287324694,0,0.024856862,0.010071225,0,0,0,0,0,104.94955,0,4268.4808,30.64433954,375.5806648,0,0,0,0,0,0,3.18E-06,0,0,2.33E-04,0,0.184813022,8.178894558,62.8715757,3.977998266,16.48749688,0,1442.834604,0.007723273,0,0 +1816,0.013382563,0.270370719,0,0,2.261022,0,0.024856862,0.010071225,0,0,0,0,0,104.93504,0,4267.7184,30.79985622,371.6298228,0,0,0,0,0,0,3.22E-06,0,0,2.37E-04,0,0.188304559,8.188247477,62.14643252,3.866008445,16.39503385,0,1449.517631,0.007723273,0,0 +1817,0.013970106,0.275344761,0,0,2.296180569,0,0.024856862,0.010071225,0,0,0,0,0,104.95336,0,4268.6815,31.19839541,376.4429441,0,0,0,0,0,0,3.25E-06,0,0,2.41E-04,0,0.191862058,8.220825384,62.94153101,3.981202576,16.51722865,0,1472.005827,0.007723273,0,0 +1818,0.014054847,0.280410312,0,0,2.335490105,0,0.024856862,0.010071225,0,0,0,0,0,104.94012,0,4267.9855,31.68760832,383.9142096,0,0,0,0,0,0,3.29E-06,0,0,2.45E-04,0,0.195486767,8.306817108,64.26768049,4.109295846,16.84964888,0,1503.330753,0.007723273,0,0 +1819,0.01412101,0.285569054,0,0,2.304129482,0,0.024856862,0.010071225,0,0,0,0,0,104.92235,0,4267.0511,31.84544135,378.3325838,0,0,0,0,0,0,3.32E-06,0,0,2.49E-04,0,0.199179954,8.302878859,63.25758927,3.96351919,16.66519821,0,1480.397209,0.007723273,0,0 +1820,0.014336733,0.290822702,0,0,2.321048766,0,0.024856862,0.010071225,0,0,0,0,0,104.88909,0,4265.3029,32.33339467,382.4197483,0,0,0,0,0,0,3.36E-06,0,0,2.53E-04,0,0.202942914,8.416077975,64.0766433,3.958562233,16.96356441,0,1500.127423,0.007723273,0,0 +1821,0.014562069,0.296173002,0,0,2.333483777,0,0.024856862,0.010071225,0,0,0,0,0,104.93899,0,4267.9261,32.52138863,382.8975341,0,0,0,0,0,0,3.40E-06,0,0,2.57E-04,0,0.206776965,8.396299171,63.98744909,4.029731628,16.86010032,0,1506.00016,0.007723273,0,0 +1822,0.015133379,0.301621733,0,0,2.302515118,0,0.024856862,0.010071225,0,0,0,0,0,104.92104,0,4266.9822,32.73451052,378.6708004,0,0,0,0,0,0,3.43E-06,0,0,2.61E-04,0,0.21068345,8.447852069,63.22724653,3.871133523,16.79629808,0,1499.477254,0.007723273,0,0 +1823,0.016038149,0.307170704,0,0,2.282471765,0,0.024856862,0.010071225,0,0,0,0,0,104.94096,0,4268.0293,32.75571509,374.3931813,0,0,0,0,0,0,3.47E-06,0,0,2.65E-04,0,0.214663737,8.395261064,62.26076437,3.846052063,16.53271228,0,1499.604752,0.007723273,0,0 +1824,0.016501009,0.31282176,0,0,2.310947811,0,0.024856862,0.010071225,0,0,0,0,0,104.93425,0,4267.6765,33.0519787,377.0407114,0,0,0,0,0,0,3.50E-06,0,0,2.69E-04,0,0.218719221,8.395833943,62.5634338,3.956577313,16.47072526,0,1512.912552,0.007723273,0,0 +1825,0.017222663,0.318576779,0,0,2.322703112,0,0.024856862,0.010071225,0,0,0,0,0,104.91652,0,4266.7449,33.52533882,380.3167498,0,0,0,0,0,0,3.54E-06,0,0,2.73E-04,0,0.222851322,8.516236489,63.18578955,3.919068065,16.80867752,0,1538.203336,0.007723273,0,0 +1826,0.01738223,0.324437675,0,0,2.320968834,0,0.024856862,0.010071225,0,0,0,0,0,104.90841,0,4266.3186,33.7481029,378.8222655,0,0,0,0,0,0,3.57E-06,0,0,2.77E-04,0,0.227061488,8.523620414,62.81594151,3.911604483,16.62077908,0,1531.982813,0.007723273,0,0 +1827,0.018639877,0.330406393,0,0,2.346337782,0,0.024856862,0.010071225,0,0,0,0,0,104.91515,0,4266.6729,34.15505001,382.4773392,0,0,0,0,0,0,3.61E-06,0,0,2.81E-04,0,0.231351194,8.585850324,63.38999011,3.962793591,16.79991923,0,1566.092214,0.007723273,0,0 +1828,0.018824746,0.336484919,0,0,2.420774153,0,0.024856862,0.010071225,0,0,0,0,0,104.87222,0,4264.4159,34.99912851,395.9754325,0,0,0,0,0,0,3.64E-06,0,0,2.85E-04,0,0.235721941,8.801495947,65.90535949,4.116354977,17.4805645,0,1618.020723,0.007723273,0,0 +1829,0.018664196,0.342675273,0,0,2.379376332,0,0.024856862,0.010071225,0,0,0,0,0,104.90025,0,4265.8895,35.01640513,389.1746282,0,0,0,0,0,0,3.68E-06,0,0,2.89E-04,0,0.240175262,8.767229394,64.57289824,4.000350816,17.19408165,0,1597.238302,0.007723273,0,0 +1830,0.024933734,0.348979511,0,0,2.403159831,0,0.024856862,0.010071225,0,0,0,0,0,104.8667,0,4264.1256,35.40215534,392.1065329,0,0,0,0,0,0,3.72E-06,0,0,2.93E-04,0,0.244712716,8.818806446,64.94076179,4.03843029,17.31425157,0,1705.903254,0.007723273,0,0 +1831,0.023660178,0.355399729,0,0,2.361347125,0,0.024856862,0.010071225,0,0,0,0,0,104.89174,0,4265.442,35.37418705,384.2012507,0,0,0,0,0,0,3.75E-06,0,0,2.97E-04,0,0.249335894,8.731507392,63.33682174,3.947409453,16.87772867,0,1661.03313,0.007723273,0,0 +1832,0.023685925,0.36193806,0,0,2.353863299,0,0.024856862,0.010071225,0,0,0,0,0,104.90924,0,4266.362,35.56272349,382.363398,0,0,0,0,0,0,3.79E-06,0,0,3.01E-04,0,0.254046413,8.712430009,62.87089656,3.946175053,16.73898675,0,1660.610583,0.007723273,0,0 +1833,0.024226693,0.368596678,0,0,2.356959381,0,0.024856862,0.010070485,0,0,0,0,0,104.89175,0,4265.4426,35.98083111,383.4537928,0,0,0,0,0,0,3.82E-06,0,0,3.05E-04,0,0.258845925,8.790922957,63.0695837,3.905335594,16.86449692,0,1673.874936,0.007723273,0,0 +1834,0.024702586,0.375377795,0,0,2.412445466,0,0.024856862,0.010071964,0,0,0,0,0,104.854,0,4263.4584,36.76106097,394.1429023,0,0,0,0,0,0,3.86E-06,0,0,3.09E-04,0,0.26373611,9.001420472,65.10499264,3.989061294,17.45428534,0,1721.269347,0.007723273,0,0 +1835,0.025273638,0.382283665,0,0,2.405456375,0,0.024856862,0.010071225,0,0,0,0,0,104.8698,0,4264.2887,36.88278973,390.5551392,0,0,0,0,0,0,3.90E-06,0,0,3.13E-04,0,0.268718682,8.925548286,64.23544317,3.998558037,17.17048679,0,1718.222125,0.007723273,0,0 +1836,0.029221069,0.389316584,0,0,2.404187956,0,0.024856862,0.010071225,0,0,0,0,0,104.84901,0,4263.1961,37.24729235,389.9786644,0,0,0,0,0,0,3.93E-06,0,0,3.17E-04,0,0.273795386,8.993015086,64.08016333,3.917445996,17.23500429,0,1783.083419,0.007723273,0,0 +1837,0.029260399,0.396478888,0,0,2.440210174,0,0.024856862,0.010071225,0,0,0,0,0,104.86946,0,4264.2707,37.69980678,394.7565038,0,0,0,0,0,0,3.97E-06,0,0,3.21E-04,0,0.278968001,9.027059824,64.82242714,4.040217213,17.35383524,0,1798.088197,0.007723273,0,0 +1838,0.030288693,0.403772957,0,0,2.477311746,0,0.024856862,0.010071225,0,0,0,0,0,104.85548,0,4263.5362,38.24210962,401.296187,0,0,0,0,0,0,4.00E-06,0,0,3.25E-04,0,0.284238338,9.122535895,65.94724657,4.142172855,17.64153847,0,1841.543139,0.007723273,0,0 +1839,0.031310557,0.411201217,0,0,2.452638138,0,0.024856862,0.010071225,0,0,0,0,0,104.83788,0,4262.6108,38.51117556,396.9116369,0,0,0,0,0,0,4.04E-06,0,0,3.29E-04,0,0.289608243,9.139608329,65.11131218,4.015311872,17.50517633,0,1843.080824,0.007723273,0,0 +1840,0.033542974,0.418766135,0,0,2.443877522,0,0.024856862,0.010071225,0,0,0,0,0,104.80755,0,4261.0163,38.88776194,395.8809162,0,0,0,0,0,0,4.07E-06,0,0,3.33E-04,0,0.295079598,9.211326299,64.92298176,3.92426914,17.57513248,0,1874.141828,0.007723273,0,0 +1841,0.034601229,0.426470225,0,0,2.490489852,0,0.024856862,0.010071225,0,0,0,0,0,104.84789,0,4263.137,39.38162317,402.3727418,0,0,0,0,0,0,4.11E-06,0,0,3.37E-04,0,0.30065432,9.249453202,65.94544518,4.089445548,17.74554357,0,1916.264207,0.007723273,0,0 +1842,0.03663998,0.434316049,0,0,2.449170469,0,0.024856862,0.010070485,0,0,0,0,0,104.84034,0,4262.7403,39.61872888,396.9951221,0,0,0,0,0,0,4.14E-06,0,0,3.41E-04,0,0.30633436,9.261381852,64.92167359,3.936168061,17.59096172,0,1931.462508,0.007723273,0,0 +1843,0.037450386,0.442306214,0,0,2.411136271,0,0.024856862,0.010071964,0,0,0,0,0,104.85726,0,4263.6297,39.65326382,389.7367809,0,0,0,0,0,0,4.18E-06,0,0,3.45E-04,0,0.31212171,9.185852612,63.42406091,3.846066212,17.21821832,0,1929.660398,0.007723273,0,0 +1844,0.039846973,0.450443374,0,0,2.443825896,0,0.024856862,0.010071225,0,0,0,0,0,104.85117,0,4263.3094,40.04426499,392.7074417,0,0,0,0,0,0,4.22E-06,0,0,3.49E-04,0,0.318018395,9.178913526,63.7624543,3.965309781,17.1801219,0,1991.445647,0.007723273,0,0 +1845,0.043792129,0.458730235,0,0,2.471371875,0,0.024856862,0.010071225,0,0,0,0,0,104.83257,0,4262.3319,40.66967667,397.850056,0,0,0,0,0,0,4.25E-06,0,0,3.53E-04,0,0.324026483,9.307905911,64.68556723,3.957876345,17.5993633,0,2080.381092,0.007723273,0,0 +1846,0.044197374,0.46716955,0,0,2.471198742,0,0.024856862,0.010071225,0,0,0,0,0,104.82423,0,4261.8933,40.97519975,395.9082622,0,0,0,0,0,0,4.29E-06,0,0,3.57E-04,0,0.330148076,9.302498358,64.24405153,3.94954154,17.39887857,0,2072.290434,0.007723273,0,0 +1847,0.047464619,0.475764124,0,0,2.521115228,0,0.024856862,0.010071225,0,0,0,0,0,104.82758,0,4262.0693,41.61647168,402.9851575,0,0,0,0,0,0,4.32E-06,0,0,3.61E-04,0,0.336385321,9.401962019,65.44362075,4.0405661,17.76051419,0,2154.230603,0.007723273,0,0 +1848,0.047117807,0.484516814,0,0,2.5773718,1.49E-05,0.024856862,0.010070485,0,0,0,0,0,104.78829,0,4260.004,42.44947063,413.5582929,0,0,0,0,0,0,4.36E-06,0,0,3.65E-04,0,0.342740401,9.573238567,67.39824375,4.1550565,18.30069373,0,2204.416735,0.007723273,0,0 +1849,0.048851442,0.493430528,0,0,2.552394089,1.20E-04,0.024856862,0.010071964,0,0,0,0,0,104.81678,0,4261.5016,42.63396461,408.9399341,0,0,0,0,0,0,4.39E-06,0,0,3.69E-04,0,0.349215542,9.543358834,66.42707154,4.087020956,18.07478627,0,2224.89572,0.007723273,0,0 +1850,0.051384895,0.502508228,0,0,2.571124479,2.25E-04,0.024856862,0.010071225,0,0,0,0,0,104.93295,0,4267.6083,43.14236365,411.4628743,0,0,0,0,0,0,4.44E-06,0,0,3.74E-04,0,0.355813014,9.604162557,66.78304875,4.096904208,18.22682479,0,2275.776711,0.007723273,0,0 +1851,0.051562308,0.494656367,0,0,2.526692589,2.41E-04,0.024856862,0.010071225,0,0,0,0,0,104.96457,0,4269.2706,43.15191371,402.2448153,0,0,0,0,0,0,4.48E-06,0,0,3.78E-04,0,0.363793441,9.478471328,64.95004659,4.010397678,17.72630049,0,2256.815147,0.007723273,0,0 +1852,0.05364238,0.550685869,0,0,2.50763416,2.42E-04,0.024856862,0.010071225,0,0,0,0,0,104.98199,0,4270.1861,43.34412933,397.49852,0,0,0,0,0,0,4.51E-06,0,0,3.83E-04,0,0.372424224,9.424520247,63.95789986,3.958451611,17.47926155,0,2277.634405,0.007723273,0,0 +1853,0.055952349,0.548631086,0,0,2.527811743,2.43E-04,0.024856862,0.010071225,0,0,0,0,0,104.9693,0,4269.5191,43.88435963,400.3388041,0,0,0,0,0,0,4.55E-06,0,0,3.87E-04,0,0.380109709,9.493187126,64.44555418,3.968326235,17.65848988,0,2326.420616,0.007723273,0,0 +1854,0.065895655,0.546739774,0,0,2.610048543,2.44E-04,0.024856862,0.010071225,0,0,0,0,0,104.9226,0,4267.0641,44.80907906,413.3991315,0,0,0,0,0,0,4.58E-06,0,0,3.90E-04,0,0.388118038,9.708926054,66.79469522,4.086374133,18.34043133,0,2535.158195,0.007723273,0,0 +1855,0.066560595,0.543758287,0,0,2.593264313,2.45E-04,0.024856862,0.010070485,0,0,0,0,0,104.95064,0,4268.5385,44.9570539,408.1104539,0,0,0,0,0,0,4.62E-06,0,0,3.95E-04,0,0.395154931,9.60821845,65.65156398,4.071657216,17.9916486,0,2531.882071,0.007723273,0,0 +1856,0.071195717,0.549725266,0,0,2.573430007,2.47E-04,0.024856862,0.010071964,0,0,0,0,0,104.92886,0,4267.3934,45.32147323,404.8549167,0,0,0,0,0,0,4.65E-06,0,0,3.98E-04,0,0.401213616,9.648967408,65.0425347,3.941501863,17.95411805,0,2598.32335,0.007723273,0,0 +1857,0.071893947,0.555060913,0,0,2.636452577,2.49E-04,0.024856862,0.010071225,0,0,0,0,0,104.94976,0,4268.4922,46.01300694,414.6731918,0,0,0,0,0,0,4.69E-06,0,0,4.03E-04,0,0.40752619,9.717987449,66.72779877,4.159141007,18.29156565,0,2646.996287,0.007723273,0,0 +1858,0.07302816,0.55973691,0,0,2.660122642,2.51E-04,0.024856862,0.010071225,0,0,0,0,0,104.93987,0,4267.9722,46.54057729,419.0140236,0,0,0,0,0,0,4.73E-06,0,0,4.07E-04,0,0.412517456,9.773872717,67.47060376,4.240872485,18.4792763,0,2684.853418,0.007723273,0,0 +1859,0.077852113,0.567385369,0,0,2.64820325,2.53E-04,0.024856862,0.010071225,0,0,0,0,0,104.91443,0,4266.635,46.94962615,416.2997485,0,0,0,0,0,0,4.76E-06,0,0,4.10E-04,0,0.416997408,9.815633788,66.95694734,4.119710729,18.44950598,0,2765.351504,0.007723273,0,0 +1860,0.08580579,0.57190571,0,0,2.648404731,2.55E-04,0.024856862,0.010810676,0,0,0,0,0,104.89112,0,4265.4096,47.37614023,416.0639966,0,0,0,0,0,0,4.79E-06,0,0,4.14E-04,0,0.420752578,9.868462594,66.84953493,4.060976263,18.520468,0,2898.377784,0.007723273,0,0 +1861,0.090437572,0.583095346,0,0,2.670268663,2.57E-04,0.024856862,0.010810691,0,0,0,0,0,104.94268,0,4268.1198,48.2346867,417.2441372,0,0,0,0,0,0,4.83E-06,0,0,4.19E-04,0,0.42335986,9.857135646,66.88575551,4.161212988,18.43711983,0,2971.278843,0.007723273,0,0 +1862,0.091865591,0.522956563,0,0,2.648564983,2.60E-04,0.024856862,0.010071254,0,0,0,0,0,104.93302,0,4267.612,49.13056212,414.1628066,0,0,0,0,0,0,4.87E-06,0,0,4.23E-04,0,0.425968395,9.918881972,66.35896016,4.042449359,18.41589321,0,2976.388043,0.007723273,0,0 +1863,0.097488554,0.523134297,0,0,2.629269514,2.62E-04,0.024856862,0.010071254,0,0,0,0,0,104.9509,0,4268.552,49.71022253,408.1224194,0,0,0,0,0,0,4.91E-06,0,0,4.27E-04,0,0.428432683,9.868665854,65.0096354,3.971519356,18.09141101,0,3064.446907,0.007723273,0,0 +1864,0.104725139,0.523481383,0,0,2.667755634,2.65E-04,0.024856862,0.010071254,0,0,0,0,0,104.94467,0,4268.2247,50.66032473,411.3310643,0,0,0,0,0,0,4.94E-06,0,0,4.31E-04,0,0.431014196,9.887134077,65.39906664,4.087458726,18.0938173,0,3193.218259,0.007723273,0,0 +1865,0.110936319,0.524250384,0,0,2.720201066,2.68E-04,0.024856862,0.010810706,0,0,0,0,0,104.93017,0,4267.4623,51.9800751,420.489005,0,0,0,0,0,0,4.98E-06,0,0,4.35E-04,0,0.433438772,10.07353478,67.10347351,4.157661467,18.66656838,0,3327.080176,0.007723273,0,0 +1866,0.114738508,0.524386363,0,0,2.710298337,2.71E-04,0.024856862,0.01081072,0,0,0,0,0,104.92398,0,4267.1368,52.74699293,417.1011849,0,0,0,0,0,0,5.01E-06,0,0,4.39E-04,0,0.435744776,10.06454912,66.37528156,4.133671178,18.39468019,0,3388.258078,0.007723273,0,0 +1867,0.12258204,0.522876455,0,0,2.761022671,2.74E-04,0.024856862,0.010070544,0,0,0,0,0,104.93094,0,4267.5026,53.94102178,424.2969753,0,0,0,0,0,0,5.05E-06,0,0,4.43E-04,0,0.438210649,10.1891331,67.66026449,4.231180961,18.76835617,0,3565.435535,0.007723273,0,0 +1868,0.125609442,0.521415398,0,0,2.825140562,2.77E-04,0.024856862,0.010072023,0,0,0,0,0,104.89186,0,4265.4483,55.28767356,434.9302283,0,0,0,0,0,0,5.08E-06,0,0,4.47E-04,0,0.441434256,10.37220092,69.64729381,4.363304735,19.30124757,0,3668.308732,0.007723273,0,0 +1869,0.133291522,0.519770898,0,0,2.785004317,2.81E-04,0.024856862,0.010810735,0,0,0,0,0,104.93014,0,4267.4609,55.83359728,426.4036167,0,0,0,0,0,0,5.12E-06,0,0,4.51E-04,0,0.443908266,10.31106127,67.92949559,4.245329954,18.88882504,0,3791.462745,0.007723273,0,0 +1870,0.136674384,0.51867186,0,0,2.831200782,2.84E-04,0.024856862,0.01081075,0,0,0,0,0,104.89317,0,4265.5174,56.99659231,433.2287624,0,0,0,0,0,0,5.15E-06,0,0,4.55E-04,0,0.446639961,10.44102397,69.12187694,4.32346865,19.25812075,0,3887.529335,0.007723273,0,0 +1871,0.145249161,0.538815215,0,0,2.797830347,2.88E-04,0.024856862,0.010071314,0,0,0,0,0,104.92871,0,4267.3856,57.57401422,425.1606513,0,0,0,0,0,0,5.19E-06,0,0,4.59E-04,0,0.454335934,10.3694977,67.42862358,4.269404037,18.76177377,0,4016.032279,0.007723273,0,0 +1872,0.160346513,0.624237802,0,0,2.771292694,2.92E-04,0.024856862,0.010810765,0,0,0,0,0,104.95075,0,4268.5441,58.18710545,417.7442734,0,0,0,0,0,0,5.23E-06,0,0,4.63E-04,0,0.470862622,10.33038424,65.84553711,4.178709817,18.36534165,0,4250.256916,0.007723273,0,0 +1873,0.170095482,0.635197776,0,0,2.841633848,2.96E-04,0.024856862,0.01081078,0,0,0,0,0,104.93223,0,4267.5705,59.62016165,429.280289,0,0,0,0,0,0,5.26E-06,0,0,4.67E-04,0,0.49389425,10.56453512,67.99437045,4.309987324,18.9372989,0,4473.449628,0.007723273,0,0 +1874,0.161012643,0.642458922,0,0,2.86805891,3.00E-04,0.024856862,0.010810794,0,0,0,0,0,104.88493,0,4265.0843,60.88850035,435.80418,0,0,0,0,0,0,5.30E-06,0,0,4.71E-04,0,0.521735812,10.75161101,69.34908007,4.369596918,19.30481072,0,4382.176552,0.007723273,0,0 +1875,0.173259068,0.650321509,0,0,2.833489105,3.05E-04,0.024856862,0.010810809,0,0,0,0,0,104.93101,0,4267.5065,61.4471703,426.8934955,0,0,0,0,0,0,5.33E-06,0,0,4.75E-04,0,0.552163614,10.66354523,67.4820886,4.311546236,18.75387609,0,4552.510356,0.007723273,0,0 +1876,0.175938232,0.65804039,0,0,2.843125267,3.09E-04,0.024856862,0.010810824,0,0,0,0,0,104.90175,0,4265.968,62.60294811,429.4805477,0,0,0,0,0,0,5.37E-06,0,0,4.79E-04,0,0.58288316,10.83189303,68.07266489,4.273649915,19.00214066,0,4640.322706,0.007723273,0,0 +1877,0.179825348,0.664694086,0,0,2.881579173,3.14E-04,0.024856862,0.010810839,0,0,0,0,0,104.92824,0,4267.3608,63.64524259,434.060346,0,0,0,0,0,0,5.41E-06,0,0,4.83E-04,0,0.612226706,10.8970216,68.77838073,4.413505724,19.0890591,0,4762.604755,0.007723273,0,0 +1878,0.180776983,0.671585762,0,0,2.905036494,3.19E-04,0.024856862,0.010810853,0,0,0,0,0,104.92472,0,4267.1759,64.71120383,437.9599498,0,0,0,0,0,0,5.44E-06,0,0,4.87E-04,0,0.637718424,10.99894534,69.46979574,4.503130841,19.22817131,0,4806.316495,0.007723273,0,0 +1879,0.193175438,0.678615294,0,0,2.92925864,3.23E-04,0.024856862,0.010810868,0,0,0,0,0,104.88028,0,4264.8396,65.90279841,440.8517591,0,0,0,0,0,0,5.47E-06,0,0,4.91E-04,0,0.658926777,11.18150569,70.08572002,4.447158396,19.48731539,0,5054.634873,0.007723273,0,0 +1880,0.219340005,0.684857424,0,0,2.921172062,3.29E-04,0.024856862,0.010810144,0,0,0,0,0,104.88174,0,4264.9162,66.6649843,437.3657275,0,0,0,0,0,0,5.51E-06,0,0,4.95E-04,0,0.672777776,11.21057035,69.18788119,4.386751757,19.32682128,0,5476.691841,0.007723273,0,0 +1881,0.22522318,0.722626203,0,0,2.962877226,3.34E-04,0.024856862,0.011551088,0,0,0,0,0,104.92914,0,4267.4079,67.70670095,440.9737248,0,0,0,0,0,0,5.55E-06,0,0,4.99E-04,0,0.680636704,11.27474846,69.70896889,4.531822011,19.32716624,0,5655.562653,0.007723273,0,0 +1882,0.236948997,0.674378608,0,0,2.944345851,3.39E-04,0.024856862,0.011550379,0,0,0,0,0,104.92759,0,4267.3266,68.57787524,436.0786301,0,0,0,0,0,0,5.59E-06,0,0,5.04E-04,0,0.689255681,11.34322096,68.75016749,4.409841205,19.15816229,0,5878.580768,0.007723273,0,0 +1883,0.250894677,0.681454028,0,0,2.918084088,3.45E-04,0.024856862,0.010810957,0,0,0,0,0,104.95902,0,4268.979,69.1859791,428.2212034,0,0,0,0,0,0,5.62E-06,0,0,5.08E-04,0,0.695872552,11.30107278,67.06254476,4.344707595,18.70936137,0,6136.750815,0.007723273,0,0 +1884,0.252849902,0.684683542,0,0,2.97815874,3.50E-04,0.024856862,0.010810972,0,0,0,0,0,104.93535,0,4267.7345,70.48060515,436.5183492,0,0,0,0,0,0,5.66E-06,0,0,5.12E-04,0,0.70169045,11.46377857,68.59402326,4.507763748,19.00988998,0,6243.347605,0.007723273,0,0 +1885,0.254442991,0.690863781,0,0,2.987658653,3.56E-04,0.024856862,0.011550438,0,0,0,0,0,104.93798,0,4267.8727,71.60546241,438.1415385,0,0,0,0,0,0,5.69E-06,0,0,5.16E-04,0,0.707890871,11.60315357,68.94977818,4.492846371,19.20686906,0,6294.938313,0.007723273,0,0 +1886,0.258326127,0.691934912,0,0,3.000148376,3.62E-04,0.024856862,0.011550467,0,0,0,0,0,104.9357,0,4267.7531,72.58254388,437.7333269,0,0,0,0,0,0,5.73E-06,0,0,5.20E-04,0,0.712632779,11.67579747,68.86926284,4.534738954,19.06781958,0,6353.027294,0.007723273,0,0 +1887,0.270973326,0.691885463,0,0,3.044590075,3.68E-04,0.024856862,0.011550497,0,0,0,0,0,104.94903,0,4268.4538,73.77743063,443.1077381,0,0,0,0,0,0,5.77E-06,0,0,5.24E-04,0,0.71821666,11.82565523,69.79403942,4.618994874,19.32845364,0,6605.766965,0.007723273,0,0 +1888,0.299024069,0.691539784,0,0,3.123484052,3.74E-04,0.024856862,0.011550526,0,0,0,0,0,104.91459,0,4266.6433,75.11035553,452.502308,0,0,0,0,0,0,5.80E-06,0,0,5.28E-04,0,0.724224235,12.04162329,71.42723744,4.741896917,19.78574643,0,7182.264809,0.007723273,0,0 +1889,0.29939589,0.691049208,0,0,3.104668338,3.81E-04,0.024856862,0.011550556,0,0,0,0,0,104.95877,0,4268.9657,75.92960019,448.6908696,0,0,0,0,0,0,5.84E-06,0,0,5.32E-04,0,0.730764112,12.07532791,70.65718772,4.727164288,19.55277705,0,7178.592239,0.007723273,0,0 +1890,0.32528597,0.68776294,0,0,3.159194949,3.87E-04,0.024856862,0.011550586,0,0,0,0,0,104.9317,0,4267.5425,77.07862319,453.8990323,0,0,0,0,0,0,5.87E-06,0,0,5.36E-04,0,0.755661554,12.22188071,71.47659717,4.807916688,19.77806486,0,7728.431301,0.007723273,0,0 +1891,0.340453909,0.684411407,0,0,3.125180696,3.94E-04,0.024856862,0.011550615,0,0,0,0,0,104.97344,0,4269.7366,77.68229292,444.3827318,0,0,0,0,0,0,5.91E-06,0,0,5.40E-04,0,0.766996007,12.1596402,69.53172191,4.743306066,19.19967303,0,8025.900173,0.007723273,0,0 +1892,0.342946092,0.69893132,0,0,3.110528365,4.01E-04,0.024856862,0.011550645,0,0,0,0,0,104.99082,0,4270.6504,78.54558089,439.808659,0,0,0,0,0,0,5.95E-06,0,0,5.45E-04,0,0.778272468,12.19914652,68.66391959,4.695682305,18.94952176,0,8166.143155,0.007723273,0,0 +1893,0.33787039,0.699713125,0,0,3.125430895,4.08E-04,0.024856862,0.012290126,0,0,0,0,0,104.97994,0,4270.0783,79.81501329,443.3506558,0,0,0,0,0,0,5.99E-06,0,0,5.49E-04,0,0.789729823,12.37945386,69.48705802,4.715239733,19.1784562,0,8120.644735,0.007723273,0,0 +1894,0.351124504,0.715581396,0,0,3.205110618,4.15E-04,0.024856862,0.01229017,0,0,0,0,0,104.93101,0,4267.5063,81.38345626,456.6960325,0,0,0,0,0,0,6.02E-06,0,0,5.52E-04,0,0.802004637,12.66238559,71.90804381,4.888948538,19.83612848,0,8411.388473,0.007723273,0,0 +1895,0.371712037,0.720945096,0,0,3.216163845,4.22E-04,0.024856862,0.011550763,0,0,0,0,0,104.96751,0,4269.4251,82.23116014,453.551885,0,0,0,0,0,0,6.06E-06,0,0,5.57E-04,0,0.812887633,12.67244423,71.15178658,4.919171254,19.52250048,0,8846.66701,0.007723273,0,0 +1896,0.383674818,0.723440788,0,0,3.170768747,4.30E-04,0.024856862,0.012290244,0,0,0,0,0,104.96751,0,4269.4252,83.00005426,444.0944278,0,0,0,0,0,0,6.09E-06,0,0,5.61E-04,0,0.824102858,12.72059369,69.42267706,4.733994615,19.17728772,0,9089.598433,0.007723273,0,0 +1897,0.401981164,0.725878271,0,0,3.268702112,4.37E-04,0.024856862,0.012290288,0,0,0,0,0,104.99693,0,4270.9718,84.39253635,456.4122055,0,0,0,0,0,0,6.13E-06,0,0,5.65E-04,0,0.834637127,12.8902171,71.5467325,5.026760132,19.58218288,0,9520.393854,0.007723273,0,0 +1898,0.42330421,0.72837657,0,0,3.296870259,4.45E-04,0.02485618,0.012290333,0,0,0,0,0,105.01512,0,4271.9281,85.36127162,456.6037674,0,0,0,0,0,0,6.17E-06,0,0,5.69E-04,0,0.844305316,12.95906823,71.45665952,5.098029535,19.50168111,0,10010.09583,0.007723236,0,0 +1899,0.463317192,0.728556158,0,0,3.355831345,4.86E-04,0.024857703,0.012290377,0,0,0,0,0,104.97653,0,4269.8993,86.70543387,462.1035994,0,0,0,0,0,0,6.20E-06,0,0,5.73E-04,0,0.853783366,13.20706844,72.46072256,5.094979384,19.86870993,0,10838.11345,0.007723233,0,0 +1900,0.488155862,0.73057236,0,0,3.361821037,0.002392668,0.024856437,0.028558348,0,0,0,0,0,104.98481,0,4270.3344,87.61328845,459.5444669,0,0,0,0,0,0,6.24E-06,0,0,5.77E-04,0,0.863169654,13.27666955,71.90656631,5.089168388,19.75078793,0,11348.7275,0.007723268,0,0 +1901,0.504485719,0.796906313,0,0,3.382952935,0.004820097,0.024857442,0.047784449,0,0,0,0,0,105.04131,0,4273.3046,88.39116711,457.6168305,0,0,0,0,0,0,6.28E-06,0,0,5.82E-04,0,0.871405959,13.3014099,71.63263161,5.202144138,19.48762217,0,11775.2552,0.007723268,0,0 +1902,0.519345117,0.800278636,0,0,3.38154147,0.005778122,0.024856062,0.050743008,0,0,0,0,0,105.04898,0,4273.708,89.26282464,455.0261768,0,0,0,0,0,0,6.32E-06,0,0,5.86E-04,0,0.881215447,13.41248803,71.24149846,5.179688037,19.3580615,0,12100.54877,0.007723268,0,0 +1903,0.566454621,0.829571146,0,0,3.389386332,0.006957613,0.024857979,0.05591998,0,0,0,0,0,105.09555,0,4276.1561,89.89074057,449.9625304,0,0,0,0,0,0,6.36E-06,0,0,5.90E-04,0,0.890660734,13.43752052,70.25376393,5.190103458,19.03059788,0,13044.15816,0.007723268,0,0 +1904,0.575152133,0.856100074,0,0,3.4640583,0.009436339,0.024855289,0.068491568,0,0,0,0,0,105.07939,0,4275.3063,91.35674943,462.621765,0,0,0,0,0,0,6.39E-06,0,0,5.94E-04,0,0.900998672,13.7314717,72.88437625,5.400226563,19.65611973,0,13274.43719,0.007723268,0,0 +1905,0.612296247,0.883090418,0,0,3.525334738,0.013412831,0.024859105,0.087718467,0,0,0,0,0,105.08907,0,4275.8152,92.40132432,467.4401288,0,0,0,0,0,0,6.43E-06,0,0,5.99E-04,0,0.911796751,13.85510547,73.70973522,5.570897784,19.75296716,0,14100.97838,0.007723268,0,0 +1906,0.644276357,0.913945895,0,0,3.54932448,0.018196454,0.024853655,0.11138246,0,0,0,0,0,105.10645,0,4276.7286,93.24998316,466.4356479,0,0,0,0,0,0,6.47E-06,0,0,6.03E-04,0,0.922864309,13.95964537,73.46173851,5.607842107,19.60693136,0,14766.45012,0.007723268,0,0 +1907,0.726915977,0.922997028,0,0,3.674457368,0.016966195,0.025812945,0.10398923,0,0,0,0,0,105.14627,0,4278.822,94.56080194,480.3174564,0,0,0,0,0,0,6.51E-06,0,0,6.07E-04,0,0.933557019,14.21677499,76.00444514,5.92575152,20.14449075,0,16264.98721,0.007723268,0,0 +1908,0.703232591,0.932378464,0,0,3.67587664,0.021404879,0.029231937,0.12765503,0,0,0,0,0,105.12414,0,4277.6586,95.71237193,482.582634,0,0,0,0,0,0,6.54E-06,0,0,6.11E-04,0,0.943978146,14.40742286,76.856238,5.975251674,20.34218955,0,15590.71312,0.007723268,0,0 +1909,0.7293531,0.939463987,0,0,3.690048662,0.036714367,0.765086,0.21121463,0,0,0,0,0,105.16533,0,4279.824,96.4666946,480.6894688,0,0,0,0,0,0,6.58E-06,0,0,6.16E-04,0,0.954146693,14.46573428,76.4408771,6.041715332,20.10967131,0,16371.00547,0.007723268,0,0 +1910,0.765726395,0.945592087,0,0,3.767608107,0.042342327,1.0366888,0.24301505,0,0,0,0,0,105.14442,0,4278.7248,97.77187103,491.4713622,0,0,0,0,0,0,6.62E-06,0,0,6.20E-04,0,0.964867509,14.73060447,78.48124343,6.225241543,20.6023284,0,17123.07052,0.007723268,0,0 +1911,0.781014654,0.887403675,0,0,3.725917532,0.047217079,0.55672031,0.27037941,0,0,0,0,0,105.20214,0,4281.7592,98.42938116,482.3736484,0,0,0,0,0,0,6.66E-06,0,0,6.24E-04,0,0.976172007,14.67937454,76.73370569,6.205453711,20.00760743,0,17244.18549,0.007723268,0,0 +1912,0.819966191,0.85083987,0,0,3.709100468,0.055977137,1.3372385,0.31844894,0,0,0,0,0,105.23472,0,4283.4718,99.26614632,477.9889215,0,0,0,0,0,0,6.70E-06,0,0,6.29E-04,0,0.99242033,14.7136648,75.83160819,6.219463911,19.68089243,0,17989.19691,0.007723268,0,0 +1913,0.88953397,0.82034848,0,0,3.787939036,0.05934571,2.7874772,0.33694139,0,0,0,0,0,105.25437,0,4284.5046,100.6125584,488.2676035,0,0,0,0,0,0,6.74E-06,0,0,6.33E-04,0,1.011440097,14.92180765,77.5799616,6.45387962,20.00732869,0,19072.75319,0.007723268,0,0 +1914,0.811491369,0.809204505,0,0,3.764418792,0.064801984,4.5655912,0.36726542,0,0,0,0,0,105.19867,0,4281.5767,102.2840587,494.4978826,0,0,0,0,0,0,6.77E-06,0,0,6.36E-04,0,1.032129514,15.24149746,79.77807343,6.499176733,20.59248109,0,17594.43406,0.007723268,0,0 +1915,0.802991659,0.797401958,0,0,3.722337783,0.084000629,6.2098372,0.47153519,0,0,0,0,0,105.2716,0,4285.4105,103.0579197,484.2476849,0,0,0,0,0,0,6.81E-06,0,0,6.41E-04,0,1.054619583,15.23213103,78.35040062,6.482772073,20.06142458,0,17573.11604,0.007723268,0,0 +1916,0.86533079,0.799710226,0,0,3.744207069,0.10465075,5.9968917,0.58467971,0,0,0,0,0,105.29863,0,4286.831,104.0889435,482.954266,0,0,0,0,0,0,6.85E-06,0,0,6.46E-04,0,1.077791382,15.34284718,78.27985155,6.601680858,19.90829861,0,19065.48428,0.007723268,0,0 +1917,0.896621585,0.802745574,0,0,3.826396856,0.11034348,5.1585271,0.61870744,0,0,0,0,0,105.37275,0,4290.7275,105.4397415,492.9600448,0,0,0,0,0,0,6.89E-06,0,0,6.51E-04,0,1.100255613,15.500365,80.45481807,7.003710361,20.17756104,0,19906.99893,0.007723268,0,0 +1918,0.887395559,0.80603585,0,0,3.83059738,0.10461425,4.2721672,0.58914082,0,0,0,0,0,105.37311,0,4290.7462,106.7459316,496.2420731,0,0,0,0,0,0,6.93E-06,0,0,6.55E-04,0,1.121226709,15.70439103,81.61294814,7.118191256,20.36895158,0,19743.24497,0.007723268,0,0 +1919,0.780860402,0.811159148,0,0,3.722641135,0.10155164,3.196035,0.57214502,0,0,0,0,0,105.33647,0,4288.8202,108.095107,490.9794171,0,0,0,0,0,0,6.96E-06,0,0,6.59E-04,0,1.140233478,15.91565271,81.67724386,6.926922673,20.36863821,0,16994.78687,0.007723268,0,0 +1920,0.903060101,0.813518455,0,0,3.813010121,0.071874804,4.0059497,0.41169313,0,0,0,0,0,105.40157,0,4292.2427,109.1336385,498.8745999,0,0,0,0,0,0,7.01E-06,0,0,6.64E-04,0,1.157633765,16.03665614,82.96992111,7.318815146,20.4023951,0,18802.69892,0.007723268,0,0 +1921,0.793835864,0.861299333,0,0,3.661222702,0.05599481,6.3575755,0.32444592,0,0,0,0,0,105.42979,0,4293.7261,109.809348,486.6136242,0,0,0,0,0,0,7.05E-06,0,0,6.68E-04,0,1.173417685,16.0101613,81.18725519,7.146950074,19.84610877,0,16049.70593,0.007723268,0,0 +1922,0.843896663,0.853369204,0,0,3.658333723,0.10093674,7.5196689,0.56921203,0,0,0,0,0,105.47367,0,4296.0327,110.4858104,484.8273418,0,0,0,0,0,0,7.09E-06,0,0,6.73E-04,0,1.188779372,16.07300912,80.53069431,7.252038815,19.4742784,0,16950.896,0.007723268,0,0 +1923,0.959559001,0.86148441,0,0,3.88124621,0.13753371,8.1995609,0.77479139,0,0,0,0,0,105.54539,0,4299.8026,112.2535641,514.2343951,0,0,0,0,0,0,7.13E-06,0,0,6.78E-04,0,1.205120978,16.4693053,86.27583424,8.013836332,20.41782521,0,19723.67202,0.007723268,0,0 +1924,0.970359441,0.867663331,0,0,3.774809016,0.14595489,10.064032,0.82730698,0,0,0,0,0,105.55899,0,4300.5175,112.633506,499.0974144,0,0,0,0,0,0,7.17E-06,0,0,6.82E-04,0,1.222219042,16.41564777,83.21123114,7.790296572,19.77882376,0,19521.89407,0.007723268,0,0 +1925,0.983699121,0.870847171,0,0,3.790606982,0.15281139,9.887985,0.86947278,0,0,0,0,0,105.60265,0,4302.8128,113.6704269,502.6957688,0,0,0,0,0,0,7.21E-06,0,0,6.87E-04,0,1.237791101,16.84168156,84.06174423,7.983263812,19.75345484,0,19738.88984,0.007723268,0,0 +1926,0.971193664,0.875288161,0,0,3.724383638,0.16877181,10.020584,0.96266008,0,0,0,0,0,105.65209,0,4305.4116,114.5456303,499.0418204,0,0,0,0,0,0,7.25E-06,0,0,6.92E-04,0,1.252612106,17.14732508,84.16877083,8.057166102,19.57302011,0,19808.91323,0.007723268,0,0 +1927,1.071982298,0.914815243,0,0,3.850357382,0.19366311,13.691728,1.1076116,0,0,0,0,0,105.65063,0,4305.3352,115.74748,515.0910884,0,0,0,0,0,0,7.29E-06,0.004945027,0,6.96E-04,0,1.266765284,17.43232174,86.52753525,8.499773807,19.87550986,0,21139.78229,0.007723268,0,0 +1928,1.076174298,0.918261907,0,0,3.828134932,0.2132805,16.914307,1.2252077,0.020814729,0,0,0,0,105.59392,0,4302.3537,116.7958666,515.8400889,0,0,0,0,0,0,7.32E-06,0.030139896,0,6.99E-04,0,1.279785085,17.62700285,87.11586337,8.569023695,19.91593076,0,21065.04746,0.007723269,0,0 +1929,1.156951387,0.945536477,0,0,3.890215994,0.20802541,19.38339,1.2037865,0.33502494,0,0,0,0,105.60372,0,4297.9849,118.0199977,527.0535755,0,0,0,0,0,0,7.35E-06,0.003329301,0,7.02E-04,0,1.290827582,17.86727278,89.37670247,8.894481948,20.27497394,0,22402.21952,0.007723266,0,0 +1930,1.072886478,1.022800884,0,0,3.907622806,0.17035764,20.571834,0.99750344,1.1701026,0,0,0,0,105.91829,0,4287.8382,119.6701788,535.0349028,0,0,0,0,0,0,7.36E-06,-0.026051043,0,7.03E-04,0,1.300370355,18.10997615,91.59573863,8.841770878,20.95238859,0,20792.33986,0.007723273,0,0 +1931,0.968671726,1.033130291,0,0,3.699193086,0.11326202,21.232329,0.6766021,1.6600329,0,0,0,0,106.6887,0,4282.6938,119.9075078,504.8981345,0,0,0,0,0,0,7.38E-06,-0.003829208,0,7.06E-04,0,1.307318192,17.9582942,86.48531867,8.206316153,19.78298346,0,18348.146,0.007723259,0,0 +1932,0.880274393,0.934985061,0,0,3.701120519,0.085847633,23.837144,0.51911084,1.6167368,0,0,0,0,107.41813,0,4276.7559,121.4219873,510.1823315,0,0,0.005764349,0,0,0,7.40E-06,7.43E-04,0,7.08E-04,0,1.314106352,18.10001304,87.90725373,8.142484302,20.16181555,0,16151.1052,0.007723289,0,0 +1933,0.923452608,0.931801343,0,0,3.673991696,0.1016274,28.120028,0.61081444,1.6336582,0,0,0,0,108.09758,0,4271.2585,122.3437659,508.1160121,0,0,0.14482802,0,0,0,7.43E-06,8.08E-04,0,7.11E-04,0,1.319777787,18.14058312,87.73926442,8.102332977,20.01961331,0,16995.04081,0.007723222,0,0 +1934,1.000687974,0.920029755,0,0,3.817622407,0.15202423,34.519287,0.91252255,1.6505883,0,0,0,0,108.91202,0,4272.3774,123.9532999,528.033166,0,0,0.60639434,0,0,0,7.47E-06,8.78E-04,0,7.15E-04,0,1.326062979,18.32411359,91.49703968,8.603675585,20.70261784,0,18679.91277,0.007723374,0,0 +1935,1.050596869,0.918684315,0,0,3.826763235,0.22028466,40.132859,1.3303298,1.6675173,0,0,0,0,109.70014,0,4272.1486,124.8946044,529.4409406,0,0,0.97427321,0,0,0,7.50E-06,9.54E-04,0,7.19E-04,0,1.33245233,18.31731965,91.90214074,8.779424673,20.54319704,0,20077.94332,0.007723023,0,0 +1936,1.150366722,0.927069389,0,0,3.972008023,0.28820401,42.33712,1.7570203,1.6844464,0,0,0,0,110.56758,0,4275.9063,126.4647048,550.0398549,0,0,1.0455299,0,0,0,7.55E-06,0.001037276,0,7.24E-04,0,1.338689989,18.65286964,95.83484543,9.362043925,21.16418654,0,21597.57179,0.007723846,0,0 +1937,1.231103105,0.904516492,0,0,3.977215074,0.34372195,44.188471,2.1186454,1.7013755,0.006390022,0,0,0,111.3625,0,4275.9946,127.1823371,550.6109419,0,0,1.1131878,0,0,0,7.58E-06,0.001127477,0,7.28E-04,0,1.346525353,18.735883,95.84567433,9.575630542,20.85060471,0,23231.71203,0.00772185,0,0 +1938,1.161421971,0.907321542,0,0,3.879546431,0.39883954,49.06474,2.4891541,1.7183047,0.1328808,0,0,0,112.0603,0,4271.2734,127.905393,535.4268485,0,0,1.185033,0,0,0,7.61E-06,0.001225424,0,7.31E-04,0,1.355126677,18.72062801,93.23706062,9.133612085,20.283818,0,21542.97587,0.007728553,0,0 +1939,1.232613704,0.905880028,0,0,4.010820601,0.43390074,56.683054,2.745053,1.7352338,0.68779311,0,0,0,112.8293,0,4270.1197,129.5013568,554.5379171,0,0,1.2571398,0,0,0,7.64E-06,0.001332062,0,7.35E-04,0,1.366829172,18.98792969,97.34535423,9.632984019,21.02085333,0,23010.26881,0.11813875,0,0 +1940,1.332494478,0.893463629,0,0,4.026253626,0.50172554,67.980741,3.2190952,1.7521629,1.4928916,0,0,0,113.75015,0,4276.3916,130.1349943,550.4654056,0,0,1.3304594,0,0,0,7.69E-06,0.001448183,0,7.41E-04,0,1.379589207,18.93380648,96.49612887,9.961368881,20.56627575,0,25159.07412,0.21814961,0,0 +1941,1.35733239,0.876081403,0,0,4.050294267,0.64957282,81.740279,4.2240743,1.769092,2.2339929,0,0,0,114.54353,0,4282.9257,132.2180939,552.9500651,0,0,1.4028748,0,0,0,7.73E-06,0.00157415,0,7.45E-04,0,1.427063176,19.03403078,97.09407345,10.19371174,20.46203137,0,26113.9497,0.1951164,0,0 +1942,1.359049319,0.897314522,0,0,4.114193284,0.84353078,95.021136,5.585489,1.7860212,2.976471,0,0,0.19841173,115.26991,0,4303.7401,134.7060241,560.1841861,0,0,1.4745564,0,0,0,7.76E-06,0.001710955,0,7.48E-04,0,1.529818545,19.21018323,98.65719695,10.34548378,21.01419377,0,26702.04279,0.16898031,0,0 +1943,1.402945825,0.892124843,0,0,4.114085782,0.80476688,89.521615,5.4576739,1.8029502,3.7199961,0,0.056451758,4.3053247,116.04761,0,4331.4951,136.6296869,561.0185503,0,0,1.5467027,0,0,0,7.79E-06,0.001859737,0,7.52E-04,0,1.677793207,19.22648995,99.48634644,10.64406286,20.76469901,0,27110.34859,0.14684461,0,0 +1944,1.387913119,0.898318952,0,0,4.111269896,0.41764093,72.694302,2.9606569,1.8198794,4.4638059,0,0.97266311,16.545617,116.85265,0,4354.745,138.9310562,569.4275578,0,0,1.6191675,0,0,0,7.83E-06,0.002021507,0,7.56E-04,0,1.853743997,19.45467137,102.0083052,10.97214997,20.91812228,0,26578.15151,0.11439264,0,0 +1945,1.180916482,0.898822172,0,0,3.970406317,0.20111842,68.369262,1.5076942,1.8368084,5.2077233,0,3.4593405,24.846154,117.6118,0,4376.5008,141.022964,562.3881403,0,0,1.69101,0,0,0,7.86E-06,0.002197258,0,7.60E-04,0,2.046836624,19.53099873,102.3868629,10.81105837,20.63041519,0,23414.92286,0.080798572,0,0 +1946,1.294211066,0.982947007,0,0,3.971696435,0.27970458,74.717234,2.0726649,1.8537378,5.9856104,0,4.9404679,24.839378,118.39896,0,4399.6117,142.7064022,555.289963,0,0,1.7631908,0,0,0,7.89E-06,0.002388349,0,7.64E-04,0,2.242235208,19.68948842,102.6581835,10.80993836,20.3059335,0,23137.29124,0.064300427,0,0 +1947,1.449894938,1.013635265,0,0,4.004289599,0.34838359,84.081746,2.6369074,1.8706665,6.4443541,0,4.8390374,24.982371,119.2973,0,4428.0553,144.7944965,563.4037754,0,0,1.8372679,0,0,0,7.94E-06,0.002596315,0,7.69E-04,0,2.428654505,19.91609513,104.1573676,11.48967842,20.19099947,0.003372839,25978.58013,0.046731228,0,0 +1948,1.541746758,1.021788966,0,0,4.123520873,0.33316898,90.670686,2.6243892,1.8875961,6.6649072,0,4.8563661,24.987103,120.08364,0,4451.0369,147.2720295,586.53608,0,0,1.966277,0,0,0,7.98E-06,0.003327672,0,7.73E-04,0,2.589644896,20.34906056,108.0964174,12.19576499,20.65035706,0.023611977,27162.31675,0.020169381,0,0 +1949,1.51503408,1.032229109,0,0,4.095746551,0.31424196,91.962416,2.5926444,1.8955033,7.1640705,0,5.561141,27.295461,120.70601,0,4466.7618,150.2157149,588.4410387,0,0,1.6426278,0,0,0,7.99E-06,0.02463759,0,7.75E-04,0,2.714013981,20.9091959,109.1544258,11.86397123,21.08117938,0.063741035,26198.85137,-0.001578436,0,0 +1950,1.695680787,1.04543439,0,0,4.331260791,0.32876887,78.580053,2.8441101,1.9897329,7.4706053,0,8.1460574,32.673745,121.62274,0,4499.2896,152.2010084,619.9439709,0,0,1.0661465,0,0,0,8.05E-06,0.10531435,0,7.81E-04,0,2.786823806,21.60140457,113.8598472,13.13214183,22.10581056,0.16053368,29148.54682,2.43E-04,0,0 +1951,1.817356704,1.263788462,0,0,4.212336067,0.33222262,70.47669,3.0430784,2.1685287,7.5542237,0,12.050138,36.815853,122.51807,0.014330518,4529.1876,155.2719352,593.1994506,0,0,1.0527789,0,0,0,8.09E-06,0.2343219,0,7.85E-04,0,2.830792646,21.71096706,109.0909544,13.15219389,20.39818818,0.23983988,30378.93497,0.001166432,0,0 +1952,1.85187593,1.291508658,0,0,4.278249967,0.32854487,76.508762,3.2228257,2.4120426,7.6734014,0,16.078842,40.441283,123.26435,0.21725302,4558.7052,160.5733576,606.95634,0,0,1.4414744,0,0,0,8.10E-06,0.3628351,0,7.87E-04,0,2.873469224,22.39378605,112.6182109,13.48661504,20.95793435,0.24565292,30772.87938,-0.002030065,0,0 +1953,1.905887196,1.288662579,0,0,4.400134891,0.31999622,81.681224,3.3863087,2.8478934,7.7034458,0,20.201055,45.581432,124.06078,1.3575508,4600.7084,165.6818323,623.9750548,0,0,2.100408,0,0,0,8.12E-06,0.48047903,0,7.90E-04,0,2.918473221,23.08627653,116.7765378,14.05062035,21.60093971,0.24572915,31392.44296,-2.28E-04,0,0 +1954,1.955325831,1.342683244,0,0,4.475107773,0.29457384,86.86347,3.4048632,3.2763156,7.760213,0,25.212381,51.892411,124.75392,3.6198833,4629.2231,170.3710079,628.9096635,0,0,2.8888848,0,0,0,8.14E-06,0.59576061,0,7.91E-04,0,2.965305231,23.5182693,118.7896929,14.35262782,21.65473895,0.24580572,31601.64062,-0.004070821,0,0 +1955,2.138786817,1.387820683,0,0,4.585745112,0.26311875,91.980019,3.3346824,3.6788015,7.6370702,0,30.727319,59.871881,125.74327,6.4848679,4666.3367,174.7404471,641.3267253,0,0,3.5564777,0,0,0,8.18E-06,0.70910415,0,7.96E-04,0,3.016004168,23.78869162,122.5425815,15.35988489,21.61194057,0.24588273,34555.40272,0.001049355,0,0 +1956,2.291039468,1.446283643,0,0,4.844401489,0.22075982,97.008491,3.0796375,4.2759912,7.5430316,0,33.546756,66.950489,126.58168,9.1561662,4699.2729,180.6711175,673.806229,0,0,4.5322658,0,0,0,8.21E-06,0.82044371,0,8.00E-04,0,3.06769313,24.39548109,129.82302,16.40773077,22.72448276,0.24595899,37118.77109,0.006640162,0,0 +1957,2.384773,1.477494579,0,0,5.084522572,0.18587639,102.11597,2.8571248,4.9612019,7.3765313,0,32.871446,72.204141,127.41838,11.488509,4733.2024,186.0555677,695.9496131,0,0,5.9875108,0,0,0,8.25E-06,0.92977447,0,8.03E-04,0,3.122765936,25.10938271,135.5915206,17.20228851,23.82634945,0.24603635,38873.75431,0.004342369,0,0 +1958,2.467095469,1.528597347,0,0,5.060488043,0.17928487,107.206,2.9954591,5.6330503,6.9087313,0,34.746284,80.925329,128.42262,14.781202,4771.3965,188.3855399,661.2854858,0,0,7.120204,0,0,0,8.29E-06,1.0371306,0,8.08E-04,0,3.184188319,25.26871426,129.2085836,17.04310474,22.2466504,0.2461131,39341.99136,0.002605294,1.53E-05,1.55E-04 +1959,2.603672914,1.473668289,0,0,5.186762349,0.18081021,112.29185,3.2476716,6.3880226,6.8760458,0,43.506257,93.983467,129.47587,18.063698,4808.726,192.6867573,665.4367222,0,0,8.0253807,0,0,0,8.33E-06,1.1424694,0,8.12E-04,0,3.250322629,25.78456832,131.2104974,17.51526633,22.13695045,0.30755864,41319.47351,8.68E-04,1.22E-04,0.001246036 +1960,2.728446849,1.461519532,0,0,5.288213084,0.17259465,117.2597,3.3209398,7.3201718,7.2392631,0,56.281481,107.5417,130.53321,21.750437,4847.0424,197.2611005,668.565663,0,0,9.5885732,0,0,0,8.37E-06,1.2458107,0,8.17E-04,0,3.323928526,26.12794679,133.3368149,18.13798676,22.06866314,0.4304021,42970.73471,-8.68E-04,2.31E-04,0.002375087 +1961,2.75210185,1.531158202,0,0,5.280187775,0.16861102,121.58986,3.4304351,8.4287849,7.4514735,0.001861801,70.618557,123.80387,131.26152,27.278298,4864.0212,205.1383413,701.0053453,0,0,11.884386,0,0,0,8.37E-06,1.346892,0,8.17E-04,0,3.545375735,26.8897385,143.5652635,18.73899699,23.37357314,0.55328481,48370.7476,-0.002605324,2.49E-04,0.003546415 +1962,2.868392579,1.520724684,0,0,5.268371109,0.17112099,125.71015,3.6249821,9.6127678,7.5805279,0.045181371,86.214551,144.89716,132.4011,32.049021,4895.6486,207.2122992,678.8492234,0,0,14.500089,0,0,0,8.41E-06,1.4460951,0,8.21E-04,0,3.678783292,27.3913443,140.105892,19.33292939,22.55009464,0.61483924,49373.46267,-0.004342521,2.53E-04,0.004920676 +1963,3.036186161,1.527209311,0,0,5.437875743,0.18314033,128.88013,3.9881367,10.949721,7.9110854,0.24720738,101.83231,167.67883,132.99126,37.52532,4904.2354,216.1922656,741.3196016,0,0,17.280228,0,0,0,8.39E-06,1.5429261,0,8.19E-04,0,3.803776307,28.74464761,156.130954,20.52084737,24.60921093,0.55366285,50918.54792,-0.007869931,3.52E-04,0.005972759 +1964,3.193585727,1.518253087,0,0,5.259909465,0.20130699,129.76929,4.4326257,12.657214,8.4778946,0.46848862,116.30072,189.8766,134.07707,49.914046,4933.087,216.556163,689.11146,0,0,20.771971,0,0,0,8.44E-06,1.6379776,0,8.24E-04,0,3.945754292,28.60741633,146.4547756,21.25062666,22.37762398,0.49245891,52831.63767,-7.60E-04,0.001030371,0.033580017 +1965,3.342046615,1.549410355,0,0,5.270010253,0.2250418,129.69213,4.9089192,14.528257,9.0358315,0.58010695,130.83984,213.3919,135.19804,70.507935,4953.0596,222.6664157,709.3122963,0,0,25.0603,0,0,0,8.46E-06,1.7308461,0,8.27E-04,0,4.115195266,29.97215368,153.4053912,22.08301054,22.64997293,0.4926084,54063.80178,0.015948649,0.002140689,0.11324642 +1966,3.50172055,1.551765281,0,0,5.285174796,0.26721734,129.70542,5.6248074,16.547774,9.5008952,0.77191369,147.99606,240.15802,136.46754,94.258765,4976.4474,226.3106958,710.9414665,0,0,30.477075,0,0,0,8.51E-06,1.8217969,0,8.32E-04,0,4.311197356,31.55306755,156.4949809,22.8477914,22.43429714,0.61550021,55269.31676,0.069786165,0.003103097,0.20275693 +1967,3.625966014,1.595865386,0,0,5.390458849,0.32052973,129.68847,6.3547572,18.918172,9.9208119,1.0373,169.42177,269.58286,137.66763,116.32544,4995.4184,232.3331465,746.2098209,0,0,36.036945,1.25E-05,0,6.90E-05,8.54E-06,1.9105949,0,8.37E-04,0,4.481777635,33.16777605,164.7753162,24.19623738,23.58529354,0.7384486,54762.8971,0.24404072,0.003754249,0.26151045 +1968,3.834595266,1.546993091,0,0,5.370373092,0.40423022,129.73308,7.3324415,21.713594,10.295172,1.3673824,195.13757,299.71437,139.24379,133.08156,5029.5667,235.3354027,740.4824182,0,0.009237978,40.359034,8.80E-05,0,4.86E-04,8.63E-06,1.9976935,0,8.46E-04,0,4.618299686,34.38157284,165.0957088,25.41081254,22.82579691,0.67731523,56868.37887,0.44305972,0.005543179,0.29037411 +1969,4.061567727,1.543708902,0,0,5.404091613,0.5206411,129.76058,8.4831718,24.938178,10.638634,1.7120901,220.72612,327.55328,140.05867,146.61896,5026.2804,239.1848516,747.0297315,0,0.18322115,44.144508,9.37E-05,0,5.04E-04,0.009824818,2.0817369,0,8.45E-04,0,4.732615323,34.96181251,169.6815713,26.06506901,22.10048951,0.67751619,58467.8108,0.55613635,0.03648951,0.30862539 +1970,4.323514044,1.531929069,0,0,5.549708797,0.6581692,129.69302,9.5318801,28.576904,11.00827,1.8909658,245.38621,354.60102,141.52757,173.56366,5048.3132,244.4183955,781.0375523,0,0.60795801,49.037394,2.47E-05,0,1.09E-04,0.036330653,2.1644992,0,8.52E-04,0,4.714190308,37.46957853,179.6859547,27.82408407,22.78022432,0.80047128,61529.77979,0.64373178,0.11813403,0.34789664 +1971,4.510244869,1.405554242,0,0,5.703748992,0.82992065,129.60227,10.711494,32.729139,11.452529,2.1402118,276.44309,387.53989,143.1196,217.72405,5067.5026,249.2895331,796.2029425,0,0.8564576,55.790888,1.33E-05,0,4.26E-05,0.064586906,2.2451174,0,8.59E-04,0,4.663522046,38.13342516,183.5355579,28.61726398,23.19511601,0.86210262,61716.79563,0.78786166,0.2232129,0.40686343 +1972,4.706494312,1.326937135,0,0,5.971153375,1.0559029,129.65777,12.24311,37.465523,11.97792,2.5517628,314.22879,427.68026,144.52172,267.60333,5079.1924,257.2102054,868.4735708,0,0.87667663,61.456633,1.35E-05,0,4.30E-05,0.082580189,2.3233295,0,8.64E-04,0,4.93074212,39.56446297,196.6655247,30.23622151,25.52743454,0.86237286,63465.10424,1.0951867,0.31882408,0.4721474 +1973,4.975651786,1.318385656,0,0,5.895831576,1.330787,129.79157,14.085332,42.979262,12.585161,2.92937,338.0693,454.71123,146.54158,301.85553,5118.3195,260.294725,826.0293132,0,0.82240702,65.420113,1.38E-05,0,5.50E-05,0.090214925,2.4006492,0,8.77E-04,0,5.050826137,39.95714271,186.5259319,31.24009688,23.45564811,0.92401065,66317.71189,1.5930673,0.39726303,0.54390644 +1974,4.948149198,1.290549,0,0,5.971643938,1.4191691,129.76026,14.311146,49.247959,13.447442,3.5184015,340.6055,453.22872,147.80664,327.35544,5113.8208,261.8082771,824.6214022,0,0.76119143,71.666995,1.40E-05,0,0.052416219,0.087063163,2.474116,0,8.78E-04,0,5.034419125,40.69211664,183.6005251,31.07740605,23.59962462,1.0394718,65371.62667,2.1806547,0.67241083,0.65809554 +1975,4.9286224,1.303204964,0,0,5.998431374,1.4004084,129.65616,14.321042,57.565811,14.538442,4.2176868,337.71465,440.16522,148.91662,384.99818,5104.4298,263.0585486,816.9194859,0,0.80304672,79.153904,1.42E-05,0,0.19213674,0.072875586,2.545125,0,8.78E-04,0,5.206812767,41.4767259,177.5130673,30.76637271,23.12965379,1.1646458,64182.76882,2.8018363,1.2682709,0.8287437 +1976,5.194661022,1.320205358,0,0,6.237496532,1.5554771,129.63321,16.011714,57.24638,15.386466,4.743647,329.27602,426.10768,150.23158,475.43135,5104.2152,269.9482097,856.0634915,0,0.82394648,92.664426,1.44E-05,0,0.33759564,0.047412585,2.614347,0,8.80E-04,0,5.352361697,42.52135697,186.2474273,32.28663209,24.40571792,1.4235416,67153.40876,3.4107057,1.8435573,0.98712807 +1977,5.36442864,1.352097971,0,0,6.353178768,1.692355,129.63647,16.762577,55.875241,15.71703,5.1782548,306.11158,404.2283,152.04264,533.0325,5117.6518,274.0301524,868.4313097,0,0.93269902,109.06413,2.14E-06,0,0.42456315,0.022180513,3.5323931,0,8.87E-04,0,5.499463795,43.27485688,189.2255323,33.05929028,24.38724427,2.1583469,67777.19082,3.8826089,2.1420878,1.0852977 +1978,5.581802903,1.2993019,0,0,6.579044818,1.7691766,130.48849,16.898235,72.245349,15.529417,5.5214166,278.45958,383.9896,153.91731,529.79652,5132.0601,276.3333545,897.4051484,0,1.277913,112.78031,-6.25E-05,0,0.45249588,-0.059867027,4.661461,0,8.95E-04,0,5.625120896,44.24089207,192.9347955,34.2691933,25.01974419,2.8286901,68023.04188,4.2701212,2.1599238,1.1209157 +1979,5.73073214,1.252317648,0,0,6.677231649,1.9203395,128.37989,17.898313,94.634628,14.991238,6.1020639,271.13342,394.80033,155.58904,518.50501,5138.651,281.6000656,900.4664227,0,1.7595655,113.22088,-2.04E-06,0,0.42017076,-0.17766763,5.0937882,0,9.00E-04,0,5.807081799,45.13478108,196.0169029,35.01398718,25.21247986,2.8296177,69119.86371,4.6513697,2.0579417,1.1328091 +1980,5.650947967,1.244135794,0,0,6.618387125,1.9633226,125.08456,17.664267,120.23426,14.760861,7.2362595,276.09356,398.43779,157.04196,513.02719,5131.8984,283.3464702,890.5114952,0,2.0330453,118.29604,7.94E-05,0,0.35605477,-0.12485274,5.1732709,0,9.02E-04,8.17E-05,5.872959052,45.97852705,194.391242,34.76440147,25.23254566,2.8304823,68783.84557,5.1129913,2.1545661,1.1562096 +1981,5.539335981,1.252813549,0,0,6.57778223,1.7391266,126.52811,16.187192,128.45086,13.920115,8.6372447,271.00597,403.07178,158.51506,516.86109,5123.4643,279.7894207,875.7816094,0,1.96562,122.37567,1.71E-05,0,0.32601335,0.11779446,4.4274361,0,9.03E-04,6.97E-04,5.805407446,46.37436562,189.1686139,34.11541673,24.87329597,2.9541119,66688.82722,6.0090215,2.4863888,1.1742814 +1982,5.477249508,1.258145478,0,0,6.915258578,1.6205522,129.38621,15.97381,128.57689,13.885459,9.2748324,277.72577,391.79861,159.18065,532.93449,5083.3728,287.6693154,967.4292983,0,1.6573364,125.26367,-8.23E-05,0,0.33083911,0.22216908,3.5575865,0,8.94E-04,0.001578501,6.043062728,47.66689068,206.8844648,34.15609141,28.27220571,2.9550432,65532.30175,6.4693449,3.0131287,1.352411 +1983,5.483062193,1.433024176,0,0,6.625402214,1.8456854,130.75989,16.384525,150.74703,15.564841,9.057039,353.29433,385.70972,160.09109,547.19948,5047.3484,281.6176584,862.0214943,0,1.3378778,129.4055,-2.71E-05,0,0.33559498,0.09748991,3.8040369,0,8.87E-04,0.002017846,6.06583408,47.6454021,183.8358223,33.28512898,24.45951343,3.2014371,64552.41617,6.0034055,3.8198142,1.378774 +1984,5.619005091,1.461224853,0,0,6.815018955,1.954181,134.9934,14.927399,167.86607,17.177696,10.537606,352.61795,438.30954,162.15076,546.6524,5054.1956,285.0030452,889.7020107,0,1.2391705,137.14097,8.66E-05,0,0.48356263,0.027417786,4.8805395,0,8.93E-04,0.004307161,5.996375963,48.69349353,189.3335257,34.32486538,25.32627636,3.570683,65309.89915,6.3412338,4.7987259,1.1329507 +1985,5.678895003,1.499743779,0,0,6.922761989,1.930951,138.44665,13.863624,191.20489,18.042992,12.093107,321.80334,487.46531,164.43684,559.24581,5072.7864,285.6752697,906.9368199,0,1.4290266,148.48134,2.16E-04,0,0.56320674,0.085787554,5.2553933,0,9.02E-04,0.012966035,5.996554239,49.41563613,190.4568857,34.8615092,25.83243998,3.6945657,65474.08715,7.6862714,5.5359652,1.1864916 +1986,5.784334368,1.530113569,0,0,7.013703662,2.0447892,134.66824,14.595216,226.48099,17.343175,11.156209,363.19165,561.19711,166.53505,605.54478,5079.9439,290.8084488,914.5218093,0,2.1480617,163.26271,2.16E-04,6.84E-04,0.57273931,0.044305139,5.6896951,0,9.08E-04,0.028102657,6.123193923,50.21167874,195.6652235,35.24652923,25.91211685,3.9411958,65479.27148,8.6199267,5.6626388,1.453026 +1987,5.942054872,1.515689335,0,0,7.200139154,2.1868179,140.05915,15.122737,234.71551,15.986362,11.176584,377.17492,543.59326,168.70781,636.85035,5087.8651,295.0485147,952.0611492,0.001157823,3.2631248,177.25124,5.82E-05,0.004878587,0.79616882,-0.099665792,6.5386064,0,9.14E-04,0.044783508,6.350228642,51.33101366,203.5851701,36.43815818,27.25186717,4.3106697,66721.094,9.1692428,5.2412687,1.7364871 +1988,6.133362797,1.515094775,0,0,7.39663506,2.2384091,134.89421,15.295333,225.34631,14.052169,12.063592,324.40759,433.01446,171.54521,645.54402,5119.7697,298.6854951,950.4151874,0.34924766,5.2661192,185.3279,0.021115007,0.06849384,0.88192316,-0.073662439,6.6278139,0,9.28E-04,0.060567348,6.188309996,51.72677742,203.5322276,37.79778929,27.18506613,4.6802608,67287.4839,10.094657,4.7030971,1.770198 +1989,6.211121149,1.53212989,0,0,7.320233668,2.2075539,105.50252,15.212081,212.83728,10.119863,11.292045,246.46809,357.7641,174.22363,713.52261,5139.3872,302.1641744,930.8467755,0.72136249,10.730464,189.56819,0.31476996,0.67304705,0.82629641,0.054397397,6.6572182,0,0.006065534,0.076147787,6.264529715,52.06403696,200.3165052,38.13825088,26.33140677,5.0499664,67312.93275,10.904862,4.3864096,1.6702493 +1990,6.186811699,1.445096887,0,0,7.508271532,2.1076967,86.426532,14.407865,176.8456,7.0905085,10.591201,208.25652,333.97703,176.36773,658.40311,5137.248,305.2725547,940.5626313,1.5203264,17.768055,192.30881,0.96053501,1.7208698,0.69729352,0.18589003,6.6838429,0,0.02696988,0.091767095,6.277152283,52.52170068,203.021231,38.25721546,27.36536835,5.1743108,67094.07179,10.051338,4.2741531,1.7373255 +1991,6.190131152,1.63686011,0,0,8.011536269,1.982897,85.142226,12.924815,120.64491,6.9542228,10.775591,159.81289,286.27307,177.30503,474.47964,5089.9323,318.7311921,1129.983883,6.9394223,22.06288,185.52075,1.727734,2.7251313,0.70613627,0.24819351,7.0572566,0,0.058141591,0.10715402,6.344945592,54.26130892,244.4286341,39.69249193,34.39493833,5.29866,66472.31502,9.6580528,4.1585749,1.6735462 +1992,6.145912973,1.683057085,0,0,7.364888993,1.9500444,85.437279,11.907588,74.361852,5.3089984,10.120439,106.91739,227.43518,179.3441,361.04368,5056.1355,299.4017955,913.3754186,22.26499,24.233416,194.061,2.4767485,4.0250116,1.0018637,0.18194194,7.9102615,0,0.088755914,0.12273589,6.358476439,52.37759099,198.238473,38.71717596,26.64897689,5.4230636,64223.92565,10.784362,3.8127392,1.4631107 +1993,6.193394815,1.54672743,0,0,7.531122847,1.9984803,84.458339,11.381334,50.567396,3.463778,8.6771649,84.3251,231.9618,179.76429,256.33383,5078.4684,299.4425141,941.8816353,34.33223,22.551362,208.33854,3.0949997,11.967198,1.5166355,0.157163,8.3534838,0,0.1188094,0.13825367,6.310752017,52.78275226,203.7757832,39.74372709,28.11499626,5.424762,63195.55052,11.612337,3.3180441,1.2514505 +1994,6.240067755,1.503716685,0,0,7.895732734,2.1430557,86.05046,11.006658,37.565451,4.6095776,8.163643,85.893495,238.58315,178.03958,159.08791,5003.2837,310.2518368,1060.282744,45.287421,24.423112,237.88968,3.5515518,24.558229,2.3253155,0.20390529,8.737968,0,0.14808425,0.15358509,6.441827,54.21042307,231.0503543,40.27137016,33.14335063,5.5491826,61820.50124,11.303115,2.9604627,1.1962062 +1995,6.377386454,1.486080505,0,0,7.813189501,2.3880707,80.480245,10.682998,23.473127,5.7076242,7.6747577,86.264975,210.72453,180.13151,95.783763,5016.3948,305.4095889,955.0363062,51.095458,27.59918,230.3453,3.8771223,36.211193,3.4395305,0.29614801,9.315257,0,0.17780027,0.16982122,6.504076136,53.41671788,206.4742485,40.45040793,29.71540754,5.6736625,60635.50707,11.011358,2.8923304,1.0842597 +1996,6.511379279,1.470193985,0,0,7.686339551,2.6638414,75.256035,10.505743,13.005309,4.6522227,5.5242189,85.278741,170.78176,183.444,59.514335,5297.7083,307.2912075,930.0218807,53.568363,26.00128,224.86947,4.0579149,48.538296,4.5014521,0.39044285,9.7707047,0,0.20547879,0.23841137,6.542220103,53.42127729,200.8724208,40.45019229,28.71419152,5.5527008,59650.01603,10.510994,2.8654227,0.84755661 +1997,6.574573879,2.18331399,0,0,8.269788743,2.8728437,75.489912,10.417958,10.398164,3.7691062,3.4559389,86.341446,160.63531,180.149,29.550907,5288.9251,331.2889198,1204.992305,55.763481,29.370536,240.5221,4.6266327,58.758537,5.5717023,0.427562,9.7952259,4.96E-05,0.25820595,0.31501343,6.740456045,56.11803189,264.6751503,41.89315592,38.34138232,5.7834259,59868.27682,9.8242768,2.8566852,0.76826308 +1998,6.590459871,1.541245282,0,0,8.412226876,2.9899069,72.916263,10.335348,12.992477,3.9615346,2.9318362,86.348141,156.67666,176.1082,23.412636,5175.5355,315.3326212,1085.430599,55.956781,28.471196,234.46613,6.9049469,70.049792,6.8917397,0.54029666,10.02529,3.58E-04,0.60512272,0.38665542,6.446521521,56.58934432,232.3180182,42.33468434,37.8122783,5.6031107,58604.36759,10.323837,2.701239,0.76943857 +1999,6.661329053,1.303430472,0,0,7.698162125,2.9607505,72.96355,10.216505,14.054175,3.9749853,3.1538842,82.703538,140.42544,168.37661,18.420173,5112.4264,309.4083709,940.700678,58.338707,25.741051,252.31636,8.6848445,91.978363,7.9486502,0.7424207,10.07373,0.003108151,1.0699013,0.49435229,6.281150807,54.7693723,205.1118782,40.94720104,30.44917133,5.1676463,55523.54474,10.262658,2.1509855,0.7706312 +2000,6.893167303,1.201338049,0,0,7.457347232,2.8153943,72.651408,9.9231457,9.4043884,3.9867142,2.3476518,76.330076,122.76605,165.25876,19.471227,5074.2696,310.1868098,886.5647302,56.341686,25.730152,263.60627,10.640667,99.657424,8.5987563,0.86319988,9.2978389,0.034006926,1.411492,0.57423278,6.112229814,54.50959652,195.3241582,41.26362178,27.9819784,5.2735332,55661.00151,9.4801348,1.9694412,0.77151922 +2001,6.957086928,0.961802096,0,0,7.591758769,3.0480682,70.656969,10.593275,5.9590471,3.2771364,1.1600545,68.271466,111.64066,165.599,19.806901,5094.2258,312.8963787,881.6703956,56.368781,24.490463,261.60586,11.075295,96.243251,9.8521252,0.94275566,8.9840003,0.80619906,1.6540309,0.63867332,6.188009183,54.70989639,196.1877828,41.37717554,27.87799844,5.3282102,56049.16643,8.8337936,2.3248261,0.74608572 +2002,7.097947295,1.070652511,0,0,8.046474187,3.4534372,70.456674,11.982167,3.1513602,2.420559,0.95011524,63.484809,101.90454,161.14055,12.302716,5096.5932,322.2788312,970.7244172,50.843174,25.156097,270.32175,12.214474,102.73275,11.617585,1.2107813,9.7208997,2.9170651,2.8037817,0.73327062,6.359556248,57.07665954,218.4604141,41.89878327,33.80824329,5.4976481,55687.52236,8.3685909,2.2797577,0.67660085 +2003,7.424688348,0.901041903,0,0,8.241697598,3.16329,69.839024,12.579882,5.7693016,1.7336337,0.74505988,62.277955,97.844828,158.92828,10.122917,5113.7538,328.1242242,944.7470786,44.441172,25.070909,287.30923,15.640539,117.40605,13.114832,1.560512,11.005369,5.226518,4.7856897,0.85366012,6.428305305,57.69037488,214.4033914,42.68216556,34.36218135,5.5417194,57641.7237,8.0831154,2.0262772,0.60195554 +2004,7.812644316,1.038213168,0,0,8.542465507,2.2029533,66.998563,12.194883,9.216749,1.4729969,0.75667708,60.966802,87.654103,156.21655,9.7469995,5141.4447,338.9417722,945.5469501,49.135801,28.554887,307.57676,15.758879,125.65071,13.097501,2.0510461,12.712613,6.6512131,5.4873038,0.97410928,6.590470047,58.11358477,216.6872834,44.5568559,32.33033041,5.6480085,60340.85189,7.5267646,2.1192661,0.55294607 +2005,8.093491316,1.025657164,0,0,8.840128386,1.9480504,63.195607,11.060838,4.6297025,1.8139658,0.58070615,60.331179,71.956593,154.12291,7.5405195,5209.9819,346.3955546,950.5924444,53.955471,33.447493,329.52471,16.143675,126.49199,12.434284,2.365528,14.626529,7.0791974,6.3606922,1.0845927,6.693579484,58.88341048,218.7880648,45.62238086,32.72399071,6.2799143,62587.82672,6.9433284,1.8947828,0.46971744 +2006,8.35813441,1.092642828,0,0,8.92564815,2.045423,60.048081,10.21735,0.6450641,1.7510311,0.58710647,63.037203,65.575271,152.41471,9.3190485,5272.2746,356.4696896,986.1510089,51.911598,36.489809,346.30497,19.891066,133.41048,14.118518,2.3531588,12.639849,6.8754044,8.3862482,1.1852524,6.875606953,60.37974253,229.8954395,46.63913374,34.3551466,6.9409178,63046.34515,6.3118449,1.5902358,0.43579597 +2007,8.681148087,0.966211967,0,0,9.284494092,1.7666158,57.257154,9.3272415,4.5089203,1.5545493,0.78280059,64.737513,61.623755,147.28895,9.6981304,5250.6823,355.0225755,945.8695944,49.953532,37.109679,357.26506,26.595246,127.25708,16.399738,2.4154053,9.3262891,6.6980995,8.4029745,1.2649376,6.596141361,60.96582609,219.7058707,48.13085999,33.27729799,6.9754073,62641.3592,5.7707437,1.7021554,0.59162888 +2008,8.733139806,0.668337987,0,0,9.091850914,1.746034,56.837697,9.0353429,8.3395339,1.9164483,0.45696793,63.060877,57.108479,144.47281,6.337645,5191.6855,360.4917105,912.5104843,54.881457,33.091627,362.72449,30.815622,138.28669,17.544095,2.6196596,8.8123411,7.076053,10.669375,1.3164863,6.638276368,61.31644175,214.695495,48.0350761,31.61901151,6.8835341,61275.77058,5.5737514,1.6171325,0.63840472 +2009,8.584990107,0.754863283,0,0,9.109514002,1.7995507,55.355253,9.6854874,5.7877004,1.6755174,0.3835494,60.065148,54.788238,144.24254,3.7694324,5145.2658,364.2003634,917.7292309,61.506343,32.081369,366.5558,33.926872,160.10848,21.142804,2.9666725,9.9336003,7.8522494,16.223306,1.4335012,6.712782947,61.3779593,218.7581143,46.48309573,31.77247637,7.159861,58721.16171,5.2570896,1.7272846,0.47723148 +2010,8.975543684,0.885110055,0,0,9.665129376,1.7742176,56.090865,10.48947,4.4070317,1.4644148,0.65896445,58.86009,52.271203,142.6745,2.4614781,5179.9719,370.8962528,953.2286303,65.209531,29.851794,361.74691,35.069515,165.044,20.460881,3.1827017,11.247607,8.7778712,15.914528,1.3375544,6.708375368,62.44447212,224.6021121,47.31829704,34.61053251,7.2759031,58249.45527,4.8975548,1.8511656,0.39655186 +2011,9.25596626,0.91365454,0,0,9.478876566,1.8467555,57.565927,11.056837,4.6237938,2.0468287,0.85601742,62.415615,52.120722,140.42156,3.0036158,5252.9333,372.6576832,906.7673675,67.690592,28.645628,366.94427,43.330418,190.47655,22.158614,3.410604,12.498165,9.4654578,20.415233,1.1291345,6.648935415,62.39874927,218.628754,48.49222156,32.51825927,7.4656928,58834.52202,4.3361773,2.096153,0.39105944 +2012,9.386649745,0.970689078,0,0,9.705285171,1.794986,59.464919,9.6609456,5.4529267,2.0520518,0.7168607,70.235225,53.35878,136.71475,3.0096674,5232.3317,380.8097666,949.6022184,63.311547,25.468261,356.29002,45.81505,205.00564,21.423,3.2771162,12.591587,9.054248,24.0671,0.98551995,6.742796632,63.84845417,229.1069362,48.17674509,35.82690196,7.7062836,57925.01408,3.8379813,1.7328717,0.41594871 +2013,9.659396496,0.91865757,0,0,9.560553735,1.6324652,62.512861,8.3027436,6.5167934,1.9408617,0.61330322,75.740842,54.819887,133.39273,1.8384424,5231.2321,381.5943928,901.2387566,59.817791,19.467118,342.89828,38.8888,202.01825,23.8069,2.9986006,11.604213,9.7859,21.452891,0.87225171,6.847910646,63.65097665,219.3811793,47.50620674,33.24556583,7.686158,57413.51787,3.5745493,0.96258078,0.44442215 +2014,9.719224641,1.095764818,0,0,9.744379658,1.6517,53.5475,9.8735,2.8024,1.6696,1.114899,54.9365,28.9612,133.6791,1.2625,5358.4982,387.8735392,964.0476182,59.82,22.47,358.8813,57.1243,200.0249,25.2487,3.5393,12.991,10.1025,30.4858,1.1516,6.916164551,65.03685366,233.525518,47.38523786,36.14582139,7.8784,57093.26142,3.481,1.2299,0.3854 +2015,9.724603237,0.959883081,0,0,9.727423577,1.57,47.5476,10.8699,0.8742,1.6696,1.6714,43.5734,14.6096,133.823,0,5404.8069,388.0727957,934.3498847,59.82,22.47,358.8813,78.7906,201.9534,32.381,3.6633,14.4857,11.7285,38.5792,1.1516,6.937624392,65.27970313,227.2448193,47.34877178,34.74602423,8.02,50464.18814,3.2933,1.3378,0.3481 +2016,9.835465014,0.844851277,0,0,9.78215876,1.54872,45.01716,10.60742242,0.78156,1.515231454,1.61422146,41.88082,12.88774,133.43352,0,5377.54322,396.977744,938.7207093,60.8428786,21.9901556,351.625206,85.38394,195.36684,34.04544,3.64859498,11.92944,12.1174182,31.77122,1.086787196,6.963399307,66.0504185,227.8836549,47.18627693,35.02706045,8.00504,49204.22589,3.07158,1.29166,0.33428 +2017,9.946326792,0.729819472,0,0,9.836893944,1.52744,42.48672,10.34494484,0.68892,1.360862908,1.55704292,40.18824,11.16588,133.04404,0,5350.27954,405.8826924,943.091534,61.8657572,21.5103112,344.369112,91.97728,188.78028,35.70988,3.63388996,9.37318,12.5063364,24.96324,1.021974392,6.989174222,66.82113386,228.5224904,47.02378207,35.30809667,7.99008,47944.26364,2.84986,1.24552,0.32046 +2018,10.05718857,0.614787667,0,0,9.891629127,1.50616,39.95628,10.08246726,0.59628,1.206494362,1.49986438,38.49566,9.44402,132.65456,0,5323.01586,414.7876408,947.4623587,62.8886358,21.0304668,337.113018,98.57062,182.19372,37.37432,3.61918494,6.81692,12.8952546,18.15526,0.957161588,7.014949136,67.59184922,229.161326,46.86128722,35.58913289,7.97512,46684.30139,2.62814,1.19938,0.30664 +2019,10.16805035,0.499755863,0,0,9.946364311,1.48488,37.42584,9.81998968,0.50364,1.052125816,1.44268584,36.80308,7.72216,132.26508,0,5295.75218,423.6925892,951.8331833,63.9115144,20.5506224,329.856924,105.16396,175.60716,39.03876,3.60447992,4.26066,13.2841728,11.34728,0.892348784,7.040724051,68.36256459,229.8001615,46.69879237,35.87016911,7.96016,45424.33914,2.40642,1.15324,0.29282 +2020,10.27891213,0.384724058,0,0,10.00109949,1.4636,34.8954,9.5575121,0.411,0.89775727,1.3855073,35.1105,6.0003,131.8756,0,5268.4885,432.5975376,956.204008,64.934393,20.070778,322.60083,111.7573,169.0206,40.7032,3.5897749,1.7044,13.673091,4.5393,0.82753598,7.066498966,69.13327995,230.4389971,46.53629751,36.15120534,7.9452,44164.37689,2.1847,1.1071,0.279 +2021,10.45742476,0.372446389,0,0,10.01641191,1.48085,33.28538,9.61612159,0.37899,0.833926213,1.342148655,33.87909,5.50149,132.19132,0,5274.57629,437.1027473,949.8055017,63.8401921,19.2265454,304.67177,133.763073,183.22632,48.52442,4.02350089,1.61637,16.2482366,4.30485,0.857609222,7.189825204,69.84087376,230.2554061,46.48606469,36.04762683,7.9875,44239.72152,2.06237,1.07222,0.26903 +2022,10.6359374,0.36016872,0,0,10.03172433,1.4981,31.67536,9.67473108,0.34698,0.770095156,1.29879001,32.64768,5.00268,132.50704,0,5280.66408,441.607957,943.4069954,62.7459912,18.3823128,286.74271,155.768846,197.43204,56.34564,4.45722688,1.52834,18.8233822,4.0704,0.887682464,7.313151443,70.54846758,230.0718152,46.43583188,35.94404832,8.0298,44315.06615,1.94004,1.03734,0.25906 +2023,10.81445004,0.34789105,0,0,10.04703675,1.51535,30.06534,9.73334057,0.31497,0.706264099,1.255431365,31.41627,4.50387,132.82276,0,5286.75187,446.1131668,937.0084891,61.6517903,17.5380802,268.81365,177.774619,211.63776,64.16686,4.89095287,1.44031,21.3985278,3.83595,0.917755706,7.436477681,71.25606139,229.8882242,46.38559906,35.84046981,8.0721,44390.41079,1.81771,1.00246,0.24909 +2024,10.99296268,0.335613381,0,0,10.06234917,1.5326,28.45532,9.79195006,0.28296,0.642433042,1.21207272,30.18486,4.00506,133.13848,0,5292.83966,450.6183765,930.6099828,60.5575894,16.6938476,250.88459,199.780392,225.84348,71.98808,5.32467886,1.35228,23.9736734,3.6015,0.947828948,7.55980392,71.9636552,229.7046332,46.33536624,35.7368913,8.1144,44465.75542,1.69538,0.96758,0.23912 +2025,11.17147532,0.323335712,0,0,10.07766159,1.54985,26.8453,9.85055955,0.25095,0.578601985,1.168714075,28.95345,3.50625,133.4542,0,5298.92745,455.1235862,924.2114765,59.4633885,15.849615,232.95553,221.786165,240.0492,79.8093,5.75840485,1.26425,26.548819,3.36705,0.97790219,7.683130159,72.67124902,229.5210423,46.28513342,35.63331279,8.1567,44541.10006,1.57305,0.9327,0.22915 +2026,11.34998796,0.311058042,0,0,10.09297401,1.5671,25.23528,9.90916904,0.21894,0.514770928,1.12535543,27.72204,3.00744,133.76992,0,5305.01524,459.6287959,917.8129702,58.3691876,15.0053824,215.02647,243.791938,254.25492,87.63052,6.19213084,1.17622,29.1239646,3.1326,1.007975432,7.806456397,73.37884283,229.3374513,46.23490061,35.52973428,8.199,44616.44469,1.45072,0.89782,0.21918 +2027,11.5285006,0.298780373,0,0,10.10828643,1.58435,23.62526,9.96777853,0.18693,0.450939871,1.081996785,26.49063,2.50863,134.08564,0,5311.10303,464.1340057,911.414464,57.2749867,14.1611498,197.09741,265.797711,268.46064,95.45174,6.62585683,1.08819,31.6991102,2.89815,1.038048674,7.929782636,74.08643665,229.1538603,46.18466779,35.42615577,8.2413,44691.78933,1.32839,0.86294,0.20921 +2028,11.70701324,0.286502704,0,0,10.12359885,1.6016,22.01524,10.02638802,0.15492,0.387108814,1.03863814,25.25922,2.00982,134.40136,0,5317.19082,468.6392154,905.0159577,56.1807858,13.3169172,179.16835,287.803484,282.66636,103.27296,7.05958282,1.00016,34.2742558,2.6637,1.068121916,8.053108874,74.79403046,228.9702694,46.13443497,35.32257726,8.2836,44767.13396,1.20606,0.82806,0.19924 +2029,11.88552588,0.274225034,0,0,10.13891127,1.61885,20.40522,10.08499751,0.12291,0.323277757,0.995279495,24.02781,1.51101,134.71708,0,5323.27861,473.1444251,898.6174514,55.0865849,12.4726846,161.23929,309.809257,296.87208,111.09418,7.49330881,0.91213,36.8494014,2.42925,1.098195158,8.176435113,75.50162427,228.7866784,46.08420215,35.21899875,8.3259,44842.4786,1.08373,0.79318,0.18927 +2030,12.06403852,0.261947365,0,0,10.15422369,1.6361,18.7952,10.143607,0.0909,0.2594467,0.95192085,22.7964,1.0122,135.0328,0,5329.3664,477.6496348,892.2189451,53.992384,11.628452,143.31023,331.81503,311.0778,118.9154,7.9270348,0.8241,39.424547,2.1948,1.1282684,8.299761352,76.20921809,228.6030874,46.03396934,35.11542024,8.3682,44917.82323,0.9614,0.7583,0.1793 +2031,12.13017776,0.276993982,0,0,10.13313466,1.64181,17.92802,10.2032664,0.08382,0.241007612,0.922171126,21.99688,0.92805,135.13731,0,5335.56326,480.6820647,889.1581422,51.7698,10.82562094,131.008084,334.734253,307.52097,120.44006,7.86279331,0.7873,39.9786988,2.09679,1.097925002,8.359260523,76.88211628,228.8602611,45.83673651,35.09335077,8.37544,44724.81018,0.90757,0.7344,0.1729 +2032,12.19631699,0.292040599,0,0,10.11204563,1.64752,17.06084,10.2629258,0.07674,0.222568525,0.892421402,21.19736,0.8439,135.24182,0,5341.76012,483.7144946,886.0973393,49.547216,10.02278988,118.705938,337.653476,303.96414,121.96472,7.79855182,0.7505,40.5328506,1.99878,1.067581604,8.418759694,77.55501446,229.1174348,45.63950369,35.0712813,8.38268,44531.79714,0.85374,0.7105,0.1665 +2033,12.26245623,0.307087217,0,0,10.0909566,1.65323,16.19366,10.3225852,0.06966,0.204129437,0.862671678,20.39784,0.75975,135.34633,0,5347.95698,486.7469245,883.0365364,47.324632,9.21995882,106.403792,340.572699,300.40731,123.48938,7.73431033,0.7137,41.0870024,1.90077,1.037238206,8.478258866,78.22791265,229.3746085,45.44227087,35.04921183,8.38992,44338.78409,0.79991,0.6866,0.1601 +2034,12.32859547,0.322133834,0,0,10.06986757,1.65894,15.32648,10.3822446,0.06258,0.18569035,0.832921954,19.59832,0.6756,135.45084,0,5354.15384,489.7793544,879.9757335,45.102048,8.41712776,94.101646,343.491922,296.85048,125.01404,7.67006884,0.6769,41.6411542,1.80276,1.006894808,8.537758037,78.90081084,229.6317822,45.24503804,35.02714236,8.39716,44145.77105,0.74608,0.6627,0.1537 +2035,12.39473471,0.337180451,0,0,10.04877854,1.66465,14.4593,10.441904,0.0555,0.167251262,0.80317223,18.7988,0.59145,135.55535,0,5360.3507,492.8117843,876.9149306,42.879464,7.6142967,81.7995,346.411145,293.29365,126.5387,7.60582735,0.6401,42.195306,1.70475,0.97655141,8.597257209,79.57370903,229.8889559,45.04780522,35.00507289,8.4044,43952.758,0.69225,0.6388,0.1473 +2036,12.46087395,0.352227068,0,0,10.02768952,1.67036,13.59212,10.5015634,0.04842,0.148812174,0.773422506,17.99928,0.5073,135.65986,0,5366.54756,495.8442142,873.8541277,40.65688,6.81146564,69.497354,349.330368,289.73682,128.06336,7.54158586,0.6033,42.7494578,1.60674,0.946208012,8.65675638,80.24660722,230.1461296,44.85057239,34.98300342,8.41164,43759.74495,0.63842,0.6149,0.1409 +2037,12.52701319,0.367273685,0,0,10.00660049,1.67607,12.72494,10.5612228,0.04134,0.130373087,0.743672782,17.19976,0.42315,135.76437,0,5372.74442,498.8766441,870.7933248,38.434296,6.00863458,57.195208,352.249591,286.17999,129.58802,7.47734437,0.5665,43.3036096,1.50873,0.915864614,8.716255552,80.91950541,230.4033033,44.65333957,34.96093395,8.41888,43566.73191,0.58459,0.591,0.1345 +2038,12.59315243,0.382320303,0,0,9.98551146,1.68178,11.85776,10.6208822,0.03426,0.111933999,0.713923058,16.40024,0.339,135.86888,0,5378.94128,501.909074,867.7325219,36.211712,5.20580352,44.893062,355.168814,282.62316,131.11268,7.41310288,0.5297,43.8577614,1.41072,0.885521216,8.775754723,81.5924036,230.660477,44.45610675,34.93886448,8.42612,43373.71886,0.53076,0.5671,0.1281 +2039,12.65929167,0.39736692,0,0,9.964422431,1.68749,10.99058,10.6805416,0.02718,0.093494912,0.684173334,15.60072,0.25485,135.97339,0,5385.13814,504.9415039,864.671719,33.989128,4.40297246,32.590916,358.088037,279.06633,132.63734,7.34886139,0.4929,44.4119132,1.31271,0.855177818,8.835253894,82.26530179,230.9176507,44.25887392,34.91679501,8.43336,43180.70582,0.47693,0.5432,0.1217 +2040,12.72543091,0.412413537,0,0,9.943333403,1.6932,10.1234,10.740201,0.0201,0.075055824,0.65442361,14.8012,0.1707,136.0779,0,5391.335,507.9739338,861.6109161,31.766544,3.6001414,20.28877,361.00726,275.5095,134.162,7.2846199,0.4561,44.966065,1.2147,0.82483442,8.894753066,82.93819998,231.1748244,44.0616411,34.89472554,8.4406,42987.69277,0.4231,0.5193,0.1153 +2041,12.73134578,0.412910059,0,0,9.877855816,1.69399,9.65632,10.7656408,0.01853,0.0697235,0.633957487,14.28209,0.15651,136.09236,0,5393.97744,509.4337937,857.3720224,30.4061322,3.34120265,18.44822429,357.821647,271.4297,133.22104,7.16696779,0.4292,44.7776905,1.14306,0.804265749,8.932280291,83.5568034,230.6156446,43.72345464,34.7855949,8.39314,42614.44005,0.39941,0.50294,0.11118 +2042,12.73726065,0.413406581,0,0,9.812378228,1.69478,9.18924,10.7910806,0.01696,0.064391176,0.613491364,13.76298,0.14232,136.10682,0,5396.61988,510.8936536,853.1331286,29.0457204,3.0822639,16.60767858,354.636034,267.3499,132.28008,7.04931568,0.4023,44.589316,1.07142,0.783697078,8.969807517,84.17540683,230.0564648,43.38526819,34.67646427,8.34568,42241.18732,0.37572,0.48658,0.10706 +2043,12.74317553,0.413903104,0,0,9.746900641,1.69557,8.72216,10.8165204,0.01539,0.059058851,0.593025241,13.24387,0.12813,136.12128,0,5399.26232,512.3535134,848.8942349,27.6853086,2.82332515,14.76713287,351.450421,263.2701,131.33912,6.93166357,0.3754,44.4009415,0.99978,0.763128407,9.007334742,84.79401026,229.497285,43.04708173,34.56733364,8.29822,41867.9346,0.35203,0.47022,0.10294 +2044,12.7490904,0.414399626,0,0,9.681423054,1.69636,8.25508,10.8419602,0.01382,0.053726527,0.572559118,12.72476,0.11394,136.13574,0,5401.90476,513.8133733,844.6553411,26.3248968,2.5643864,12.92658716,348.264808,259.1903,130.39816,6.81401146,0.3485,44.212567,0.92814,0.742559736,9.044861967,85.41261368,228.9381051,42.70889528,34.458203,8.25076,41494.68188,0.32834,0.45386,0.09882 +2045,12.75500527,0.414896148,0,0,9.615945467,1.69715,7.788,10.8674,0.01225,0.048394203,0.552092995,12.20565,0.09975,136.1502,0,5404.5472,515.2732332,840.4164474,24.964485,2.30544765,11.08604145,345.079195,255.1105,129.4572,6.69635935,0.3216,44.0241925,0.8565,0.721991065,9.082389193,86.03121711,228.3789253,42.37070882,34.34907237,8.2033,41121.42915,0.30465,0.4375,0.0947 +2046,12.76092014,0.41539267,0,0,9.550467879,1.69794,7.32092,10.8928398,0.01068,0.043061879,0.531626872,11.68654,0.08556,136.16466,0,5407.18964,516.733093,836.1775536,23.6040732,2.0465089,9.24549574,341.893582,251.0307,128.51624,6.57870724,0.2947,43.835818,0.78486,0.701422394,9.119916418,86.64982054,227.8197455,42.03252237,34.23994173,8.15584,40748.17643,0.28096,0.42114,0.09058 +2047,12.76683501,0.415889193,0,0,9.484990292,1.69873,6.85384,10.9182796,0.00911,0.037729555,0.511160749,11.16743,0.07137,136.17912,0,5409.83208,518.1929529,831.9386599,22.2436614,1.78757015,7.40495003,338.707969,246.9509,127.57528,6.46105513,0.2678,43.6474435,0.71322,0.680853723,9.157443644,87.26842397,227.2605657,41.69433591,34.1308111,8.10838,40374.92371,0.25727,0.40478,0.08646 +2048,12.77274988,0.416385715,0,0,9.419512705,1.69952,6.38676,10.9437194,0.00754,0.03239723,0.490694626,10.64832,0.05718,136.19358,0,5412.47452,519.6528128,827.6997662,20.8832496,1.5286314,5.56440432,335.522356,242.8711,126.63432,6.34340302,0.2409,43.459069,0.64158,0.660285052,9.194970869,87.88702739,226.7013859,41.35614946,34.02168047,8.06092,40001.67098,0.23358,0.38842,0.08234 +2049,12.77866476,0.416882237,0,0,9.354035118,1.70031,5.91968,10.9691592,0.00597,0.027064906,0.470228503,10.12921,0.04299,136.20804,0,5415.11696,521.1126726,823.4608724,19.5228378,1.26969265,3.72385861,332.336743,238.7913,125.69336,6.22575091,0.214,43.2706945,0.56994,0.639716381,9.232498094,88.50563082,226.1422061,41.017963,33.91254983,8.01346,39628.41826,0.20989,0.37206,0.07822 +2050,12.78457963,0.417378759,0,0,9.28855753,1.7011,5.4526,10.994599,0.0044,0.021732582,0.44976238,9.6101,0.0288,136.2225,0,5417.7594,522.5725325,819.2219787,18.162426,1.0107539,1.8833129,329.15113,234.7115,124.7524,6.1080988,0.1871,43.08232,0.4983,0.61914771,9.27002532,89.12423425,225.5830262,40.67977655,33.8034192,7.966,39255.16554,0.1862,0.3557,0.0741 +2051,12.75741732,0.414159211,0,0,9.182172485,1.69562,5.20103,10.9352595,0.00406,0.020186656,0.435696317,9.27305,0.02641,136.1222,0,5411.59578,523.4919489,813.7056065,17.3846094,0.938056143,1.712466056,321.17329,228.17456,121.78315,5.90148493,0.17542,42.1739559,0.46719,0.597670333,9.297338666,89.57917466,224.7914688,40.35533678,33.52032304,7.98741,38877.70786,0.17577,0.34449,0.07145 +2052,12.73025501,0.410939663,0,0,9.075787439,1.69014,4.94946,10.87592,0.00372,0.01864073,0.421630254,8.936,0.02402,136.0219,0,5405.43216,524.4113653,808.1892343,16.6067928,0.865358386,1.541619212,313.19545,221.63762,118.8139,5.69487106,0.16374,41.2655918,0.43608,0.576192956,9.324652012,90.03411508,223.9999113,40.03089701,33.23722689,8.00882,38500.25018,0.16534,0.33328,0.0688 +2053,12.7030927,0.407720115,0,0,8.969402394,1.68466,4.69789,10.8165805,0.00338,0.017094804,0.407564191,8.59895,0.02163,135.9216,0,5399.26854,525.3307818,802.6728621,15.8289762,0.792660629,1.370772368,305.21761,215.10068,115.84465,5.48825719,0.15206,40.3572277,0.40497,0.554715579,9.351965358,90.48905549,223.2083538,39.70645724,32.95413073,8.03023,38122.79251,0.15491,0.32207,0.06615 +2054,12.67593039,0.404500567,0,0,8.863017348,1.67918,4.44632,10.757241,0.00304,0.015548878,0.393498128,8.2619,0.01924,135.8213,0,5393.10492,526.2501982,797.1564899,15.0511596,0.719962872,1.199925524,297.23977,208.56374,112.8754,5.28164332,0.14038,39.4488636,0.37386,0.533238202,9.379278704,90.94399591,222.4167963,39.38201747,32.67103457,8.05164,37745.33483,0.14448,0.31086,0.0635 +2055,12.64876808,0.401281018,0,0,8.756632302,1.6737,4.19475,10.6979015,0.0027,0.014002952,0.379432065,7.92485,0.01685,135.721,0,5386.9413,527.1696146,791.6401178,14.273343,0.647265115,1.02907868,289.26193,202.0268,109.90615,5.07502945,0.1287,38.5404995,0.34275,0.511760825,9.40659205,91.39893632,221.6252388,39.0575777,32.38793841,8.07305,37367.87715,0.13405,0.29965,0.06085 +2056,12.62160577,0.39806147,0,0,8.650247257,1.66822,3.94318,10.638562,0.00236,0.012457026,0.365366002,7.5878,0.01446,135.6207,0,5380.77768,528.089031,786.1237456,13.4955264,0.574567358,0.858231836,281.28409,195.48986,106.9369,4.86841558,0.11702,37.6321354,0.31164,0.490283448,9.433905396,91.85387674,220.8336813,38.73313793,32.10484226,8.09446,36990.41948,0.12362,0.28844,0.0582 +2057,12.59444346,0.394841922,0,0,8.543862211,1.66274,3.69161,10.5792225,0.00202,0.0109111,0.351299939,7.25075,0.01207,135.5204,0,5374.61406,529.0084474,780.6073734,12.7177098,0.501869601,0.687384992,273.30625,188.95292,103.96765,4.66180171,0.10534,36.7237713,0.28053,0.468806071,9.461218742,92.30881716,220.0421238,38.40869816,31.8217461,8.11587,36612.9618,0.11319,0.27723,0.05555 +2058,12.56728115,0.391622374,0,0,8.437477166,1.65726,3.44004,10.519883,0.00168,0.009365174,0.337233876,6.9137,0.00968,135.4201,0,5368.45044,529.9278638,775.0910012,11.9398932,0.429171844,0.516538148,265.32841,182.41598,100.9984,4.45518784,0.09366,35.8154072,0.24942,0.447328694,9.488532088,92.76375757,219.2505664,38.08425839,31.53864994,8.13728,36235.50412,0.10276,0.26602,0.0529 +2059,12.54011883,0.388402826,0,0,8.33109212,1.65178,3.18847,10.4605435,0.00134,0.007819249,0.323167813,6.57665,0.00729,135.3198,0,5362.28682,530.8472803,769.574629,11.1620766,0.356474087,0.345691304,257.35057,175.87904,98.02915,4.24857397,0.08198,34.9070431,0.21831,0.425851317,9.515845434,93.21869799,218.4590089,37.75981862,31.25555378,8.15869,35858.04644,0.09233,0.25481,0.05025 +2060,12.51295652,0.385183277,0,0,8.224707075,1.6463,2.9369,10.401204,0.001,0.006273323,0.30910175,6.2396,0.0049,135.2195,0,5356.1232,531.7666967,764.0582568,10.38426,0.28377633,0.17484446,249.37273,169.3421,95.0599,4.0419601,0.0703,33.998679,0.1872,0.40437394,9.54315878,93.6736384,217.6674514,37.43537885,30.97245763,8.1801,35480.58877,0.0819,0.2436,0.0476 +2061,12.45447881,0.372955617,0,0,8.121358176,1.63638,2.80139,10.30117495,9.20E-04,0.005825228,0.299431331,6.02076,0.00449,135.03794,0,5345.73313,531.6412054,759.9981904,9.93955833,0.263361767,0.158985329,240.316685,163.01915,91.70904,3.86585975,0.06546,32.8437592,0.17431,0.387059417,9.559975335,94.16175227,216.6787,37.10784299,30.72162418,8.19306,35020.70636,0.07732,0.23592,0.0459 +2062,12.3960011,0.360727956,0,0,8.018009277,1.62646,2.66588,10.2011459,8.40E-04,0.005377134,0.289760912,5.80192,0.00408,134.85638,0,5335.34306,531.5157141,755.9381239,9.49485666,0.242947203,0.143126197,231.26064,156.6962,88.35818,3.6897594,0.06062,31.6888394,0.16142,0.369744894,9.57679189,94.64986613,215.6899486,36.78030714,30.47079074,8.20602,34560.82394,0.07274,0.22824,0.0442 +2063,12.33752338,0.348500296,0,0,7.914660379,1.61654,2.53037,10.10111685,7.60E-04,0.004929039,0.280090493,5.58308,0.00367,134.67482,0,5324.95299,531.3902228,751.8780574,9.05015499,0.22253264,0.127267066,222.204595,150.37325,85.00732,3.51365905,0.05578,30.5339196,0.14853,0.352430371,9.593608446,95.13798,214.7011972,36.45277129,30.2199573,8.21898,34100.94153,0.06816,0.22056,0.0425 +2064,12.27904567,0.336272635,0,0,7.81131148,1.60662,2.39486,10.0010878,6.80E-04,0.004480945,0.270420074,5.36424,0.00326,134.49326,0,5314.56292,531.2647315,747.8179909,8.60545332,0.202118076,0.111407935,213.14855,144.0503,81.65646,3.3375587,0.05094,29.3789998,0.13564,0.335115848,9.610425001,95.62609386,213.7124459,36.12523544,29.96912386,8.23194,33641.05912,0.06358,0.21288,0.0408 +2065,12.22056795,0.324044975,0,0,7.707962582,1.5967,2.25935,9.90105875,6.00E-04,0.00403285,0.260749655,5.1454,0.00285,134.3117,0,5304.17285,531.1392402,743.7579245,8.16075165,0.181703513,0.095548804,204.092505,137.72735,78.3056,3.16145835,0.0461,28.22408,0.12275,0.317801325,9.627241556,96.11420773,212.7236945,35.79769958,29.71829042,8.2449,33181.1767,0.059,0.2052,0.0391 +2066,12.16209024,0.311817314,0,0,7.604613683,1.58678,2.12384,9.8010297,5.20E-04,0.003584756,0.251079236,4.92656,0.00244,134.13014,0,5293.78278,531.013749,739.697858,7.71604998,0.16128895,0.079689672,195.03646,131.4044,74.95474,2.985358,0.04126,27.0691602,0.10986,0.300486802,9.644058111,96.60232159,211.7349431,35.47016373,29.46745697,8.25786,32721.29429,0.05442,0.19752,0.0374 +2067,12.10361252,0.299589654,0,0,7.501264785,1.57686,1.98833,9.70100065,4.40E-04,0.003136661,0.241408817,4.70772,0.00203,133.94858,0,5283.39271,530.8882577,735.6377915,7.27134831,0.140874386,0.063830541,185.980415,125.08145,71.60388,2.80925765,0.03642,25.9142404,0.09697,0.283172279,9.660874666,97.09043546,210.7461917,35.14262788,29.21662353,8.27082,32261.41188,0.04984,0.18984,0.0357 +2068,12.04513481,0.287361993,0,0,7.397915886,1.56694,1.85282,9.6009716,3.60E-04,0.002688567,0.231738398,4.48888,0.00162,133.76702,0,5273.00264,530.7627664,731.577725,6.82664664,0.120459823,0.04797141,176.92437,118.7585,68.25302,2.6331573,0.03158,24.7593206,0.08408,0.265857756,9.677691222,97.57854932,209.7574403,34.81509202,28.96579009,8.28378,31801.52947,0.04526,0.18216,0.034 +2069,11.98665709,0.275134333,0,0,7.294566987,1.55702,1.71731,9.50094255,2.80E-04,0.002240472,0.222067979,4.27004,0.00121,133.58546,0,5262.61257,530.6372751,727.5176586,6.38194497,0.100045259,0.032112278,167.868325,112.43555,64.90216,2.45705695,0.02674,23.6044008,0.07119,0.248543233,9.694507777,98.06666319,208.7686889,34.48755617,28.71495665,8.29674,31341.64705,0.04068,0.17448,0.0323 +2070,11.92817938,0.262906672,0,0,7.191218089,1.5471,1.5818,9.4009135,2.00E-04,0.001792378,0.21239756,4.0512,8.00E-04,133.4039,0,5252.2225,530.5117838,723.4575921,5.9372433,0.079630696,0.016253147,158.81228,106.1126,61.5513,2.2809566,0.0219,22.449481,0.0583,0.23122871,9.711324332,98.55477705,207.7799375,34.16002032,28.46412321,8.3097,30881.76464,0.0361,0.1668,0.0306 +2071,11.77244718,0.220160316,0,0,7.079205681,1.53186,1.50882,9.26992471,1.80E-04,0.00165795,0.205751345,3.90912,7.30E-04,133.12496,0,5238.61663,529.2005993,716.7245868,5.68298413,0.073907751,0.014775588,150.9186685,100.94908,58.52473,2.15761918,0.02024,21.3701224,0.05388,0.219022585,9.720141112,99.01013804,206.6269899,33.69435623,28.16965928,8.30966,30225.75972,0.03408,0.16155,0.02951 +2072,11.61671499,0.17741396,0,0,6.967193273,1.51662,1.43584,9.13893592,1.60E-04,0.001523521,0.19910513,3.76704,6.60E-04,132.84602,0,5225.01076,527.8894147,709.9915814,5.42872496,0.068184805,0.013298029,143.025057,95.78556,55.49816,2.03428176,0.01858,20.2907638,0.04946,0.20681646,9.728957891,99.46549902,205.4740423,33.22869214,27.87519535,8.30962,29569.7548,0.03206,0.1563,0.02842 +2073,11.46098279,0.134667604,0,0,6.855180865,1.50138,1.36286,9.00794713,1.40E-04,0.001389093,0.192458915,3.62496,5.90E-04,132.56708,0,5211.40489,526.5782302,703.2585761,5.17446579,0.06246186,0.011820471,135.1314455,90.62204,52.47159,1.91094434,0.01692,19.2114052,0.04504,0.194610335,9.737774671,99.92086001,204.3210946,32.76302805,27.58073143,8.30958,28913.74987,0.03004,0.15105,0.02733 +2074,11.30525059,0.091921248,0,0,6.743168457,1.48614,1.28988,8.87695834,1.20E-04,0.001254665,0.1858127,3.48288,5.20E-04,132.28814,0,5197.79902,525.2670457,696.5255708,4.92020662,0.056738915,0.010342912,127.237834,85.45852,49.44502,1.78760692,0.01526,18.1320466,0.04062,0.18240421,9.746591451,100.376221,203.168147,32.29736396,27.2862675,8.30954,28257.74495,0.02802,0.1458,0.02624 +2075,11.14951839,0.049174892,0,0,6.63115605,1.4709,1.2169,8.74596955,1.00E-04,0.001120236,0.179166485,3.3408,4.50E-04,132.0092,0,5184.19315,523.9558611,689.7925654,4.66594745,0.05101597,0.008865353,119.3442225,80.295,46.41845,1.6642695,0.0136,17.052688,0.0362,0.170198085,9.75540823,100.831582,202.0151993,31.83169987,26.99180358,8.3095,27601.74003,0.026,0.14055,0.02515 +2076,10.9937862,0.006428536,0,0,6.519143642,1.45566,1.14392,8.61498076,8.00E-05,9.86E-04,0.17252027,3.19872,3.80E-04,131.73026,0,5170.58728,522.6446766,683.0595601,4.41168828,0.045293024,0.007387794,111.450611,75.13148,43.39188,1.54093208,0.01194,15.9733294,0.03178,0.15799196,9.76422501,101.286943,200.8622517,31.36603578,26.69733965,8.30946,26945.73511,0.02398,0.1353,0.02406 +2077,10.838054,0,0,0.03631782,6.407131234,1.44042,1.07094,8.48399197,6.00E-05,8.51E-04,0.165874055,3.05664,3.10E-04,131.45132,0,5156.98141,521.3334921,676.3265548,4.15742911,0.039570079,0.005910235,103.5569995,69.96796,40.36531,1.41759466,0.01028,14.8939708,0.02736,0.145785835,9.77304179,101.742304,199.709304,30.90037169,26.40287572,8.30942,26289.73018,0.02196,0.13005,0.02297 +2078,10.6823218,0,0,0.079064176,6.295118826,1.42518,0.99796,8.35300318,4.00E-05,7.17E-04,0.15922784,2.91456,2.40E-04,131.17238,0,5143.37554,520.0223075,669.5935495,3.90316994,0.033847134,0.004432676,95.663388,64.80444,37.33874,1.29425724,0.00862,13.8146122,0.02294,0.13357971,9.781858569,102.1976649,198.5563564,30.4347076,26.1084118,8.30938,25633.72526,0.01994,0.1248,0.02188 +2079,10.52658961,0,0,0.121810532,6.183106418,1.40994,0.92498,8.22201439,2.00E-05,5.83E-04,0.152581625,2.77248,1.70E-04,130.89344,0,5129.76967,518.711123,662.8605441,3.64891077,0.028124188,0.002955118,87.7697765,59.64092,34.31217,1.17091982,0.00696,12.7352536,0.01852,0.121373585,9.790675349,102.6530259,197.4034087,29.96904351,25.81394787,8.30934,24977.72034,0.01792,0.11955,0.02079 +2080,10.37085741,0,0,0.164556888,6.07109401,1.3947,0.852,8.0910256,0,4.48E-04,0.14593541,2.6304,1.00E-04,130.6145,0,5116.1638,517.3999385,656.1275388,3.3946516,0.022401243,0.001477559,79.876165,54.4774,31.2856,1.0475824,0.0053,11.655895,0.0141,0.10916746,9.799492129,103.1083869,196.2504611,29.50337942,25.51948395,8.3093,24321.71542,0.0159,0.1143,0.0197 +2081,10.18815446,0,0,0.193872128,5.971136562,1.38503,0.81269,8.01223632,0,4.26E-04,0.141363939,2.53814,9.00E-05,130.43752,0,5107.97992,515.9255874,650.9233549,3.24927085,0.020790643,0.00134622,75.2405566,51.41163,29.46881,0.983904648,0.00488,10.99515477,0.01298,0.102683723,9.817348954,103.3303782,195.3852363,29.14177986,25.27246185,8.26714,23830.45445,0.01501,0.1107,0.01899 +2082,10.0054515,0,0,0.223187368,5.871179114,1.37536,0.77338,7.93344704,0,4.03E-04,0.136792468,2.44588,8.00E-05,130.26054,0,5099.79604,514.4512363,645.719171,3.1038901,0.019180042,0.001214882,70.6049482,48.34586,27.65202,0.920226896,0.00446,10.33441454,0.01186,0.096199986,9.83520578,103.5523695,194.5200115,28.7801803,25.02543975,8.22498,23339.19349,0.01412,0.1071,0.01828 +2083,9.82274855,0,0,0.252502608,5.771221666,1.36569,0.73407,7.85465776,0,3.81E-04,0.132220997,2.35362,7.00E-05,130.08356,0,5091.61216,512.9768852,640.5149871,2.95850935,0.017569442,0.001083543,65.9693398,45.28009,25.83523,0.856549144,0.00404,9.67367431,0.01074,0.08971625,9.853062606,103.7743608,193.6547867,28.41858074,24.77841766,8.18282,22847.93252,0.01323,0.1035,0.01757 +2084,9.640045596,0,0,0.281817848,5.671264218,1.35602,0.69476,7.77586848,0,3.58E-04,0.127649526,2.26136,6.00E-05,129.90658,0,5083.42828,511.5025341,635.3108032,2.8131286,0.015958842,9.52E-04,61.3337314,42.21432,24.01844,0.792871392,0.00362,9.01293408,0.00962,0.083232513,9.870919431,103.9963521,192.7895618,28.05698118,24.53139556,8.14066,22356.67156,0.01234,0.0999,0.01686 +2085,9.457342642,0,0,0.311133087,5.57130677,1.34635,0.65545,7.6970792,0,3.36E-04,0.123078055,2.1691,5.00E-05,129.7296,0,5075.2444,510.028183,630.1066193,2.66774785,0.014348241,8.21E-04,56.698123,39.14855,22.20165,0.72919364,0.0032,8.35219385,0.0085,0.076748776,9.888776257,104.2183434,191.924337,27.69538162,24.28437346,8.0985,21865.4106,0.01145,0.0963,0.01615 +2086,9.274639689,0,0,0.340448327,5.471349322,1.33668,0.61614,7.61828992,0,3.14E-04,0.118506584,2.07684,4.00E-05,129.55262,0,5067.06052,508.5538319,624.9024354,2.5223671,0.012737641,6.90E-04,52.0625146,36.08278,20.38486,0.665515888,0.00278,7.69145362,0.00738,0.070265039,9.906633082,104.4403347,191.0591122,27.33378206,24.03735136,8.05634,21374.14963,0.01056,0.0927,0.01544 +2087,9.091936735,0,0,0.369763567,5.371391874,1.32701,0.57683,7.53950064,0,2.91E-04,0.113935113,1.98458,3.00E-05,129.37564,0,5058.87664,507.0794808,619.6982515,2.37698635,0.011127041,5.58E-04,47.4269062,33.01701,18.56807,0.601838136,0.00236,7.03071339,0.00626,0.063781302,9.924489908,104.662326,190.1938874,26.9721825,23.79032927,8.01418,20882.88867,0.00967,0.0891,0.01473 +2088,8.909233781,0,0,0.399078807,5.271434426,1.31734,0.53752,7.46071136,0,2.69E-04,0.109363642,1.89232,2.00E-05,129.19866,0,5050.69276,505.6051297,614.4940676,2.2316056,0.00951644,4.27E-04,42.7912978,29.95124,16.75128,0.538160384,0.00194,6.36997316,0.00514,0.057297566,9.942346734,104.8843173,189.3286626,26.61058294,23.54330717,7.97202,20391.6277,0.00878,0.0855,0.01402 +2089,8.726530827,0,0,0.428394047,5.171476978,1.30767,0.49821,7.38192208,0,2.46E-04,0.104792171,1.80006,1.00E-05,129.02168,0,5042.50888,504.1307786,609.2898837,2.08622485,0.00790584,2.96E-04,38.1556894,26.88547,14.93449,0.474482632,0.00152,5.70923293,0.00402,0.050813829,9.960203559,105.1063086,188.4634378,26.24898338,23.29628507,7.92986,19900.36674,0.00789,0.0819,0.01331 +2090,8.543827874,0,0,0.457709287,5.07151953,1.298,0.4589,7.3031328,0,2.24E-04,0.1002207,1.7078,0,128.8447,0,5034.325,502.6564275,604.0856998,1.9408441,0.00629524,1.64E-04,33.520081,23.8197,13.1177,0.41080488,0.0011,5.0484927,0.0029,0.044330092,9.978060385,105.3282999,187.598213,25.88738382,23.04926298,7.8877,19409.10577,0.007,0.0783,0.0126 +2091,8.339805956,0,0,0.463982095,4.997381593,1.28914,0.43762,7.23125346,0,2.02E-04,0.097055836,1.64769,0.0012,128.68253,0,5026.85886,501.5542383,600.7866211,1.86679494,0.007758679,0.001050708,31.7470716,22.60229,12.42383,0.387979721,9.90E-04,4.78705984,0.00261,0.04193553,9.999242062,105.5092538,186.2735938,25.57137196,22.94125203,7.86043,19043.33476,0.0071,0.07583,0.01215 +2092,8.135784039,0,0,0.470254903,4.923243656,1.28028,0.41634,7.15937412,0,1.79E-04,0.093890972,1.58758,0.0024,128.52036,0,5019.39272,500.4520491,597.4875424,1.79274578,0.009222117,0.001937244,29.9740622,21.38488,11.72996,0.365154562,8.80E-04,4.52562698,0.00232,0.039540968,10.02042374,105.6902077,184.9489746,25.25536009,22.83324109,7.83316,18677.56375,0.0072,0.07336,0.0117 +2093,7.931762122,0,0,0.476527711,4.849105719,1.27142,0.39506,7.08749478,0,1.57E-04,0.090726108,1.52747,0.0036,128.35819,0,5011.92658,499.3498598,594.1884636,1.71869662,0.010685556,0.002823779,28.2010528,20.16747,11.03609,0.342329403,7.70E-04,4.26419412,0.00203,0.037146407,10.04160542,105.8711616,183.6243555,24.93934823,22.72523015,7.80589,18311.79274,0.0073,0.07089,0.01125 +2094,7.727740204,0,0,0.482800519,4.774967782,1.26256,0.37378,7.01561544,0,1.34E-04,0.087561244,1.46736,0.0048,128.19602,0,5004.46044,498.2476706,590.8893849,1.64464746,0.012148995,0.003710314,26.4280434,18.95006,10.34222,0.319504244,6.60E-04,4.00276126,0.00174,0.034751845,10.06278709,106.0521155,182.2997363,24.62333637,22.61721921,7.77862,17946.02173,0.0074,0.06842,0.0108 +2095,7.523718287,0,0,0.489073327,4.700829844,1.2537,0.3525,6.9437361,0,1.12E-04,0.08439638,1.40725,0.006,128.03385,0,4996.9943,497.1454814,587.5903062,1.5705983,0.013612434,0.00459685,24.655034,17.73265,9.64835,0.296679085,5.50E-04,3.7413284,0.00145,0.032357283,10.08396877,106.2330694,180.9751171,24.30732451,22.50920827,7.75135,17580.25072,0.0075,0.06595,0.01035 +2096,7.31969637,0,0,0.495346135,4.626691907,1.24484,0.33122,6.87185676,0,8.96E-05,0.081231515,1.34714,0.0072,127.87168,0,4989.52816,496.0432922,584.2912274,1.49654914,0.015075873,0.005483385,22.8820246,16.51524,8.95448,0.273853926,4.40E-04,3.47989554,0.00116,0.029962721,10.10515045,106.4140233,179.6504979,23.99131264,22.40119733,7.72408,17214.47971,0.0076,0.06348,0.0099 +2097,7.115674452,0,0,0.501618943,4.55255397,1.23598,0.30994,6.79997742,0,6.72E-05,0.078066651,1.28703,0.0084,127.70951,0,4982.06202,494.9411029,580.9921487,1.42249998,0.016539312,0.00636992,21.1090152,15.29783,8.26061,0.251028767,3.30E-04,3.21846268,8.70E-04,0.027568159,10.12633212,106.5949772,178.3258787,23.67530078,22.29318639,7.69681,16848.7087,0.0077,0.06101,0.00945 +2098,6.911652535,0,0,0.507891751,4.478416033,1.22712,0.28866,6.72809808,0,4.48E-05,0.074901787,1.22692,0.0096,127.54734,0,4974.59588,493.8389137,577.69307,1.34845082,0.01800275,0.007256455,19.3360058,14.08042,7.56674,0.228203608,2.20E-04,2.95702982,5.80E-04,0.025173598,10.1475138,106.7759311,177.0012596,23.35928892,22.18517545,7.66954,16482.93769,0.0078,0.05854,0.009 +2099,6.707630618,0,0,0.514164559,4.404278096,1.21826,0.26738,6.65621874,0,2.24E-05,0.071736923,1.16681,0.0108,127.38517,0,4967.12974,492.7367245,574.3939913,1.27440166,0.019466189,0.008142991,17.5629964,12.86301,6.87287,0.205378449,1.10E-04,2.69559696,2.90E-04,0.022779036,10.16869548,106.956885,175.6766404,23.04327706,22.07716451,7.64227,16117.16668,0.0079,0.05607,0.00855 +2100,6.5036087,0,0,0.520437367,4.330140159,1.2094,0.2461,6.5843394,0,0,0.068572059,1.1067,0.012,127.223,0,4959.6636,491.6345353,571.0949125,1.2003525,0.020929628,0.009029526,15.789987,11.6456,6.179,0.18255329,0,2.4341641,0,0.020384474,10.18987716,107.1378389,174.3520212,22.7272652,21.96915356,7.615,15751.39567,0.008,0.0536,0.0081 +2101,6.460251309,0,0,0.51002862,4.310782881,1.201337333,0.244459333,6.540443804,0,0,0.068114912,1.099322,0.01192,126.3748467,0,4926.599176,490.4945483,569.1645351,1.19235015,0.020790097,0.008969329,15.68472042,11.56796267,6.137806667,0.181336268,0,2.417936339,0,0.020248578,10.17766556,107.0440254,173.4409779,22.61576183,21.91432618,7.564233333,15652.16789,0.007946667,0.053242667,0.008046 +2102,6.416893918,0,0,0.499619872,4.291425603,1.193274667,0.242818667,6.496548208,0,0,0.067657765,1.091944,0.01184,125.5266933,0,4893.534752,489.3545614,567.2341577,1.1843478,0.020650566,0.008909132,15.57945384,11.49032533,6.096613333,0.180119246,0,2.401708579,0,0.020112681,10.16545396,106.9502119,172.5299346,22.50425846,21.8594988,7.513466667,15552.94011,0.007893333,0.052885333,0.007992 +2103,6.373536526,0,0,0.489211125,4.272068326,1.185212,0.241178,6.452652612,0,0,0.067200618,1.084566,0.01176,124.67854,0,4860.470328,488.2145745,565.3037803,1.17634545,0.020511035,0.008848935,15.47418726,11.412688,6.05542,0.178902224,0,2.385480818,0,0.019976785,10.15324236,106.8563985,171.6188913,22.39275509,21.80467142,7.4627,15453.71232,0.00784,0.052528,0.007938 +2104,6.330179135,0,0,0.478802378,4.252711048,1.177149333,0.239537333,6.408757016,0,0,0.066743471,1.077188,0.01168,123.8303867,0,4827.405904,487.0745876,563.3734029,1.1683431,0.020371505,0.008788739,15.36892068,11.33505067,6.014226667,0.177685202,0,2.369253057,0,0.019840888,10.14103076,106.762585,170.707848,22.28125172,21.74984404,7.411933333,15354.48454,0.007786667,0.052170667,0.007884 +2105,6.286821744,0,0,0.46839363,4.23335377,1.169086667,0.237896667,6.36486142,0,0,0.066286324,1.06981,0.0116,122.9822333,0,4794.34148,485.9346007,561.4430255,1.16034075,0.020231974,0.008728542,15.2636541,11.25741333,5.973033333,0.17646818,0,2.353025297,0,0.019704992,10.12881916,106.6687715,169.7968046,22.16974835,21.69501666,7.361166667,15255.25676,0.007733333,0.051813333,0.00783 +2106,6.243464352,0,0,0.457984883,4.213996492,1.161024,0.236256,6.320965824,0,0,0.065829177,1.062432,0.01152,122.13408,0,4761.277056,484.7946138,559.5126481,1.1523384,0.020092443,0.008668345,15.15838752,11.179776,5.93184,0.175251158,0,2.336797536,0,0.019569095,10.11660756,106.574958,168.8857613,22.05824499,21.64018928,7.3104,15156.02897,0.00768,0.051456,0.007776 +2107,6.200106961,0,0,0.447576136,4.194639214,1.152961333,0.234615333,6.277070228,0,0,0.06537203,1.055054,0.01144,121.2859267,0,4728.212632,483.6546269,557.5822707,1.14433605,0.019952912,0.008608148,15.05312094,11.10213867,5.890646667,0.174034136,0,2.320569775,0,0.019433199,10.10439596,106.4811445,167.974718,21.94674162,21.5853619,7.259633333,15056.80119,0.007626667,0.051098667,0.007722 +2108,6.15674957,0,0,0.437167388,4.175281937,1.144898667,0.232974667,6.233174632,0,0,0.064914883,1.047676,0.01136,120.4377733,0,4695.148208,482.51464,555.6518932,1.1363337,0.019813381,0.008547951,14.94785436,11.02450133,5.849453333,0.172817115,0,2.304342015,0,0.019297302,10.09218436,106.3873311,167.0636747,21.83523825,21.53053452,7.208866667,14957.57341,0.007573333,0.050741333,0.007668 +2109,6.113392178,0,0,0.426758641,4.155924659,1.136836,0.231334,6.189279036,0,0,0.064457735,1.040298,0.01128,119.58962,0,4662.083784,481.374653,553.7215158,1.12833135,0.01967385,0.008487754,14.84258778,10.946864,5.80826,0.171600093,0,2.288114254,0,0.019161406,10.07997276,106.2935176,166.1526314,21.72373488,21.47570714,7.1581,14858.34562,0.00752,0.050384,0.007614 +2110,6.070034787,0,0,0.416349894,4.136567381,1.128773333,0.229693333,6.14538344,0,0,0.064000588,1.03292,0.0112,118.7414667,0,4629.01936,480.2346661,551.7911384,1.120329,0.019534319,0.008427558,14.7373212,10.86922667,5.767066667,0.170383071,0,2.271886493,0,0.019025509,10.06776116,106.1997041,165.2415881,21.61223151,21.42087976,7.107333333,14759.11784,0.007466667,0.050026667,0.00756 +2111,6.026677396,0,0,0.405941146,4.117210103,1.120710667,0.228052667,6.101487844,0,0,0.063543441,1.025542,0.01112,117.8933133,0,4595.954936,479.0946792,549.860761,1.11232665,0.019394789,0.008367361,14.63205462,10.79158933,5.725873333,0.169166049,0,2.255658733,0,0.018889613,10.05554956,106.1058906,164.3305448,21.50072814,21.36605238,7.056566667,14659.89005,0.007413333,0.049669333,0.007506 +2112,5.983320004,0,0,0.395532399,4.097852825,1.112648,0.226412,6.057592248,0,0,0.063086294,1.018164,0.01104,117.04516,0,4562.890512,477.9546923,547.9303836,1.1043243,0.019255258,0.008307164,14.52678804,10.713952,5.68468,0.167949027,0,2.239430972,0,0.018753716,10.04333796,106.0120771,163.4195014,21.38922477,21.311225,7.0058,14560.66227,0.00736,0.049312,0.007452 +2113,5.939962613,0,0,0.385123652,4.078495547,1.104585333,0.224771333,6.013696652,0,0,0.062629147,1.010786,0.01096,116.1970067,0,4529.826088,476.8147054,546.0000062,1.09632195,0.019115727,0.008246967,14.42152146,10.63631467,5.643486667,0.166732005,0,2.223203211,0,0.01861782,10.03112636,105.9182637,162.5084581,21.27772141,21.25639762,6.955033333,14461.43449,0.007306667,0.048954667,0.007398 +2114,5.896605222,0,0,0.374714904,4.05913827,1.096522667,0.223130667,5.969801056,0,0,0.062172,1.003408,0.01088,115.3488533,0,4496.761664,475.6747185,544.0696288,1.0883196,0.018976196,0.00818677,14.31625488,10.55867733,5.602293333,0.165514983,0,2.206975451,0,0.018481923,10.01891476,105.8244502,161.5974148,21.16621804,21.20157024,6.904266667,14362.2067,0.007253333,0.048597333,0.007344 +2115,5.85324783,0,0,0.364306157,4.039780992,1.08846,0.22149,5.92590546,0,0,0.061714853,0.99603,0.0108,114.5007,0,4463.69724,474.5347316,542.1392514,1.08031725,0.018836665,0.008126573,14.2109883,10.48104,5.5611,0.164297961,0,2.19074769,0,0.018346027,10.00670316,105.7306367,160.6863715,21.05471467,21.14674286,6.8535,14262.97892,0.0072,0.04824,0.00729 +2116,5.809890439,0,0,0.35389741,4.020423714,1.080397333,0.219849333,5.882009864,0,0,0.061257706,0.988652,0.01072,113.6525467,0,4430.632816,473.3947446,540.208874,1.0723149,0.018697134,0.008066377,14.10572172,10.40340267,5.519906667,0.163080939,0,2.174519929,0,0.01821013,9.994491562,105.6368232,159.7753282,20.9432113,21.09191548,6.802733333,14163.75114,0.007146667,0.047882667,0.007236 +2117,5.766533048,0,0,0.343488662,4.001066436,1.072334667,0.218208667,5.838114268,0,0,0.060800559,0.981274,0.01064,112.8043933,0,4397.568392,472.2547577,538.2784966,1.06431255,0.018557603,0.00800618,14.00045514,10.32576533,5.478713333,0.161863917,0,2.158292169,0,0.018074234,9.982279962,105.5430097,158.8642849,20.83170793,21.0370881,6.751966667,14064.52335,0.007093333,0.047525333,0.007182 +2118,5.723175656,0,0,0.333079915,3.981709158,1.064272,0.216568,5.794218672,0,0,0.060343412,0.973896,0.01056,111.95624,0,4364.503968,471.1147708,536.3481191,1.0563102,0.018418073,0.007945983,13.89518856,10.248128,5.43752,0.160646895,0,2.142064408,0,0.017938337,9.970068362,105.4491963,157.9532416,20.72020456,20.98226072,6.7012,13965.29557,0.00704,0.047168,0.007128 +2119,5.679818265,0,0,0.322671168,3.962351881,1.056209333,0.214927333,5.750323076,0,0,0.059886265,0.966518,0.01048,111.1080867,0,4331.439544,469.9747839,534.4177417,1.04830785,0.018278542,0.007885786,13.78992198,10.17049067,5.396326667,0.159429873,0,2.125836647,0,0.017802441,9.957856763,105.3553828,157.0421982,20.6087012,20.92743334,6.650433333,13866.06779,0.006986667,0.046810667,0.007074 +2120,5.636460874,0,0,0.31226242,3.942994603,1.048146667,0.213286667,5.70642748,0,0,0.059429118,0.95914,0.0104,110.2599333,0,4298.37512,468.834797,532.4873643,1.0403055,0.018139011,0.007825589,13.6846554,10.09285333,5.355133333,0.158212851,0,2.109608887,0,0.017666544,9.945645163,105.2615693,156.1311549,20.49719783,20.87260596,6.599666667,13766.84,0.006933333,0.046453333,0.00702 +2121,5.593103482,0,0,0.301853673,3.923637325,1.040084,0.211646,5.662531884,0,0,0.058971971,0.951762,0.01032,109.41178,0,4265.310696,467.6948101,530.5569869,1.03230315,0.01799948,0.007765392,13.57938882,10.015216,5.31394,0.156995829,0,2.093381126,0,0.017530648,9.933433563,105.1677558,155.2201116,20.38569446,20.81777858,6.5489,13667.61222,0.00688,0.046096,0.006966 +2122,5.549746091,0,0,0.291444926,3.904280047,1.032021333,0.210005333,5.618636288,0,0,0.058514824,0.944384,0.01024,108.5636267,0,4232.246272,466.5548232,528.6266095,1.0243008,0.017859949,0.007705196,13.47412224,9.937578667,5.272746667,0.155778807,0,2.077153365,0,0.017394751,9.921221964,105.0739423,154.3090683,20.27419109,20.7629512,6.498133333,13568.38444,0.006826667,0.045738667,0.006912 +2123,5.5063887,0,0,0.281036178,3.884922769,1.023958667,0.208364667,5.574740692,0,0,0.058057677,0.937006,0.01016,107.7154733,0,4199.181848,465.4148363,526.6962321,1.01629845,0.017720418,0.007644999,13.36885566,9.859941333,5.231553333,0.154561786,0,2.060925605,0,0.017258855,9.909010364,104.9801289,153.398025,20.16268772,20.70812382,6.447366667,13469.15665,0.006773333,0.045381333,0.006858 +2124,5.463031308,0,0,0.270627431,3.865565491,1.015896,0.206724,5.530845096,0,0,0.05760053,0.929628,0.01008,106.86732,0,4166.117424,464.2748493,524.7658547,1.0082961,0.017580888,0.007584802,13.26358908,9.782304,5.19036,0.153344764,0,2.044697844,0,0.017122958,9.896798764,104.8863154,152.4869817,20.05118435,20.65329644,6.3966,13369.92887,0.00672,0.045024,0.006804 +2125,5.419673917,0,0,0.260218684,3.846208214,1.007833333,0.205083333,5.4869495,0,0,0.057143383,0.92225,0.01,106.0191667,0,4133.053,463.1348624,522.8354773,1.00029375,0.017441357,0.007524605,13.1583225,9.704666667,5.149166667,0.152127742,0,2.028470083,0,0.016987062,9.884587165,104.7925019,151.5759384,19.93968099,20.59846906,6.345833333,13270.70109,0.006666667,0.044666667,0.00675 +2126,5.376316526,0,0,0.249809936,3.826850936,0.999770667,0.203442667,5.443053904,0,0,0.056686235,0.914872,0.00992,105.1710133,0,4099.988576,461.9948755,520.9050999,0.9922914,0.017301826,0.007464408,13.05305592,9.627029333,5.107973333,0.15091072,0,2.012242323,0,0.016851165,9.872375565,104.6986884,150.664895,19.82817762,20.54364168,6.295066667,13171.4733,0.006613333,0.044309333,0.006696 +2127,5.332959134,0,0,0.239401189,3.807493658,0.991708,0.201802,5.399158308,0,0,0.056229088,0.907494,0.00984,104.32286,0,4066.924152,460.8548886,518.9747225,0.98428905,0.017162295,0.007404211,12.94778934,9.549392,5.06678,0.149693698,0,1.996014562,0,0.016715269,9.860163965,104.6048749,149.7538517,19.71667425,20.4888143,6.2443,13072.24552,0.00656,0.043952,0.006642 +2128,5.289601743,0,0,0.228992442,3.78813638,0.983645333,0.200161333,5.355262712,0,0,0.055771941,0.900116,0.00976,103.4747067,0,4033.859728,459.7149017,517.044345,0.9762867,0.017022764,0.007344014,12.84252276,9.471754667,5.025586667,0.148476676,0,1.979786801,0,0.016579372,9.847952366,104.5110615,148.8428084,19.60517088,20.43398692,6.193533333,12973.01773,0.006506667,0.043594667,0.006588 +2129,5.246244352,0,0,0.218583694,3.768779102,0.975582667,0.198520667,5.311367116,0,0,0.055314794,0.892738,0.00968,102.6265533,0,4000.795304,458.5749148,515.1139676,0.96828435,0.016883233,0.007283818,12.73725618,9.394117333,4.984393333,0.147259654,0,1.963559041,0,0.016443476,9.835740766,104.417248,147.9317651,19.49366751,20.37915954,6.142766667,12873.78995,0.006453333,0.043237333,0.006534 +2130,5.20288696,0,0,0.208174947,3.749421825,0.96752,0.19688,5.26747152,0,0,0.054857647,0.88536,0.0096,101.7784,0,3967.73088,457.4349279,513.1835902,0.960282,0.016743702,0.007223621,12.6319896,9.31648,4.9432,0.146042632,0,1.94733128,0,0.016307579,9.823529166,104.3234345,147.0207218,19.38216414,20.32433216,6.092,12774.56217,0.0064,0.04288,0.00648 +2131,5.159529569,0,0,0.197766199,3.730064547,0.959457333,0.195239333,5.223575924,0,0,0.0544005,0.877982,0.00952,100.9302467,0,3934.666456,456.2949409,511.2532128,0.95227965,0.016604172,0.007163424,12.52672302,9.238842667,4.902006667,0.14482561,0,1.931103519,0,0.016171683,9.811317567,104.229621,146.1096785,19.27066078,20.26950478,6.041233333,12675.33438,0.006346667,0.042522667,0.006426 +2132,5.116172178,0,0,0.187357452,3.710707269,0.951394667,0.193598667,5.179680328,0,0,0.053943353,0.870604,0.00944,100.0820933,0,3901.602032,455.154954,509.3228354,0.9442773,0.016464641,0.007103227,12.42145644,9.161205333,4.860813333,0.143608588,0,1.914875759,0,0.016035786,9.799105967,104.1358075,145.1986352,19.15915741,20.2146774,5.990466667,12576.1066,0.006293333,0.042165333,0.006372 +2133,5.072814786,0,0,0.176948705,3.691349991,0.943332,0.191958,5.135784732,0,0,0.053486206,0.863226,0.00936,99.23394,0,3868.537608,454.0149671,507.392458,0.93627495,0.01632511,0.00704303,12.31618986,9.083568,4.81962,0.142391566,0,1.898647998,0,0.01589989,9.786894367,104.0419941,144.2875918,19.04765404,20.15985002,5.9397,12476.87882,0.00624,0.041808,0.006318 +2134,5.029457395,0,0,0.166539957,3.671992713,0.935269333,0.190317333,5.091889136,0,0,0.053029059,0.855848,0.00928,98.38578667,0,3835.473184,452.8749802,505.4620806,0.9282726,0.016185579,0.006982833,12.21092328,9.005930667,4.778426667,0.141174544,0,1.882420237,0,0.015763993,9.774682768,103.9481806,143.3765485,18.93615067,20.10502264,5.888933333,12377.65103,0.006186667,0.041450667,0.006264 +2135,4.986100004,0,0,0.15613121,3.652635436,0.927206667,0.188676667,5.04799354,0,0,0.052571912,0.84847,0.0092,97.53763333,0,3802.40876,451.7349933,503.5317032,0.92027025,0.016046048,0.006922637,12.1056567,8.928293333,4.737233333,0.139957522,0,1.866192477,0,0.015628097,9.762471168,103.8543671,142.4655052,18.8246473,20.05019526,5.838166667,12278.42325,0.006133333,0.041093333,0.00621 +2136,4.942742612,0,0,0.145722463,3.633278158,0.919144,0.187036,5.004097944,0,0,0.052114765,0.841092,0.00912,96.68948,0,3769.344336,450.5950064,501.6013258,0.9122679,0.015906517,0.00686244,12.00039012,8.850656,4.69604,0.1387405,0,1.849964716,0,0.0154922,9.750259568,103.7605536,141.5544619,18.71314393,19.99536788,5.7874,12179.19547,0.00608,0.040736,0.006156 +2137,4.899385221,0,0,0.135313715,3.61392088,0.911081333,0.185395333,4.960202348,0,0,0.051657618,0.833714,0.00904,95.84132667,0,3736.279912,449.4550195,499.6709484,0.90426555,0.015766986,0.006802243,11.89512354,8.773018667,4.654846667,0.137523478,0,1.833736955,0,0.015356304,9.738047969,103.6667401,140.6434186,18.60164057,19.9405405,5.736633333,12079.96768,0.006026667,0.040378667,0.006102 +2138,4.85602783,0,0,0.124904968,3.594563602,0.903018667,0.183754667,4.916306752,0,0,0.051200471,0.826336,0.00896,94.99317333,0,3703.215488,448.3150326,497.7405709,0.8962632,0.015627456,0.006742046,11.78985696,8.695381333,4.613653333,0.136306457,0,1.817509195,0,0.015220407,9.725836369,103.5729267,139.7323753,18.4901372,19.88571312,5.685866667,11980.7399,0.005973333,0.040021333,0.006048 +2139,4.812670438,0,0,0.114496221,3.575206324,0.894956,0.182114,4.872411156,0,0,0.050743324,0.818958,0.00888,94.14502,0,3670.151064,447.1750456,495.8101935,0.88826085,0.015487925,0.006681849,11.68459038,8.617744,4.57246,0.135089435,0,1.801281434,0,0.015084511,9.713624769,103.4791132,138.821332,18.37863383,19.83088574,5.6351,11881.51212,0.00592,0.039664,0.005994 +2140,4.769313047,0,0,0.104087473,3.555849046,0.886893333,0.180473333,4.82851556,0,0,0.050286177,0.81158,0.0088,93.29686667,0,3637.08664,446.0350587,493.8798161,0.8802585,0.015348394,0.006621652,11.5793238,8.540106667,4.531266667,0.133872413,0,1.785053673,0,0.014948614,9.70141317,103.3852997,137.9102886,18.26713046,19.77605836,5.584333333,11782.28433,0.005866667,0.039306667,0.00594 +2141,4.725955656,0,0,0.093678726,3.536491769,0.878830667,0.178832667,4.784619964,0,0,0.04982903,0.804202,0.00872,92.44871333,0,3604.022216,444.8950718,491.9494387,0.87225615,0.015208863,0.006561456,11.47405722,8.462469333,4.490073333,0.132655391,0,1.768825913,0,0.014812718,9.68920157,103.2914862,136.9992453,18.15562709,19.72123098,5.533566667,11683.05655,0.005813333,0.038949333,0.005886 +2142,4.682598264,0,0,0.083269979,3.517134491,0.870768,0.177192,4.740724368,0,0,0.049371882,0.796824,0.00864,91.60056,0,3570.957792,443.7550849,490.0190613,0.8642538,0.015069332,0.006501259,11.36879064,8.384832,4.44888,0.131438369,0,1.752598152,0,0.014676821,9.67698997,103.1976727,136.088202,18.04412372,19.6664036,5.4828,11583.82877,0.00576,0.038592,0.005832 +2143,4.639240873,0,0,0.072861231,3.497777213,0.862705333,0.175551333,4.696828772,0,0,0.048914735,0.789446,0.00856,90.75240667,0,3537.893368,442.615098,488.0886839,0.85625145,0.014929801,0.006441062,11.26352406,8.307194667,4.407686667,0.130221347,0,1.736370391,0,0.014540925,9.664778371,103.1038593,135.1771587,17.93262036,19.61157622,5.432033333,11484.60098,0.005706667,0.038234667,0.005778 +2144,4.595883481,0,0,0.062452484,3.478419935,0.854642667,0.173910667,4.652933176,0,0,0.048457588,0.782068,0.00848,89.90425333,0,3504.828944,441.4751111,486.1583065,0.8482491,0.01479027,0.006380865,11.15825748,8.229557333,4.366493333,0.129004325,0,1.720142631,0,0.014405028,9.652566771,103.0100458,134.2661154,17.82111699,19.55674884,5.381266667,11385.3732,0.005653333,0.037877333,0.005724 +2145,4.55252609,0,0,0.052043737,3.459062657,0.84658,0.17227,4.60903758,0,0,0.048000441,0.77469,0.0084,89.0561,0,3471.76452,440.3351242,484.2279291,0.84024675,0.01465074,0.006320668,11.0529909,8.15192,4.3253,0.127787303,0,1.70391487,0,0.014269132,9.640355171,102.9162323,133.3550721,17.70961362,19.50192146,5.3305,11286.14541,0.0056,0.03752,0.00567 +2146,4.509168699,0,0,0.041634989,3.43970538,0.838517333,0.170629333,4.565141984,0,0,0.047543294,0.767312,0.00832,88.20794667,0,3438.700096,439.1951372,482.2975517,0.8322444,0.014511209,0.006260471,10.94772432,8.074282667,4.284106667,0.126570281,0,1.687687109,0,0.014133235,9.628143572,102.8224188,132.4440288,17.59811025,19.44709408,5.279733333,11186.91763,0.005546667,0.037162667,0.005616 +2147,4.465811307,0,0,0.031226242,3.420348102,0.830454667,0.168988667,4.521246388,0,0,0.047086147,0.759934,0.00824,87.35979333,0,3405.635672,438.0551503,480.3671743,0.82424205,0.014371678,0.006200275,10.84245774,7.996645333,4.242913333,0.125353259,0,1.671459349,0,0.013997339,9.615931972,102.7286053,131.5329854,17.48660688,19.3922667,5.228966667,11087.68985,0.005493333,0.036805333,0.005562 +2148,4.422453916,0,0,0.020817495,3.400990824,0.822392,0.167348,4.477350792,0,0,0.046629,0.752556,0.00816,86.51164,0,3372.571248,436.9151634,478.4367968,0.8162397,0.014232147,0.006140078,10.73719116,7.919008,4.20172,0.124136237,0,1.655231588,0,0.013861442,9.603720373,102.6347919,130.6219421,17.37510351,19.33743932,5.1782,10988.46206,0.00544,0.036448,0.005508 +2149,4.379096525,0,0,0.010408747,3.381633546,0.814329333,0.165707333,4.433455196,0,0,0.046171853,0.745178,0.00808,85.66348667,0,3339.506824,435.7751765,476.5064194,0.80823735,0.014092616,0.006079881,10.63192458,7.841370667,4.160526667,0.122919215,0,1.639003827,0,0.013725546,9.591508773,102.5409784,129.7108988,17.26360015,19.28261194,5.127433333,10889.23428,0.005386667,0.036090667,0.005454 +2150,4.335739133,0,0,0,3.362276268,0.806266667,0.164066667,4.3895596,0,0,0.045714706,0.7378,0.008,84.81533333,0,3306.4424,434.6351896,474.576042,0.800235,0.013953085,0.006019684,10.526658,7.763733333,4.119333333,0.121702193,0,1.622776067,0,0.013589649,9.579297173,102.4471649,128.7998555,17.15209678,19.22778456,5.076666667,10790.0065,0.005333333,0.035733333,0.0054 +2151,4.292381742,0,0,0,3.34291899,0.798204,0.162426,4.345664004,0,0,0.045257559,0.730422,0.00792,83.96718,0,3273.377976,433.4952027,472.6456646,0.79223265,0.013813554,0.005959487,10.42139142,7.686096,4.07814,0.120485171,0,1.606548306,0,0.013453753,9.567085574,102.3533514,127.8888122,17.04059341,19.17295718,5.0259,10690.77871,0.00528,0.035376,0.005346 +2152,4.249024351,0,0,0,3.323561713,0.790141333,0.160785333,4.301768408,0,0,0.044800412,0.723044,0.00784,83.11902667,0,3240.313552,432.3552158,470.7152872,0.7842303,0.013674024,0.00589929,10.31612484,7.608458667,4.036946667,0.119268149,0,1.590320545,0,0.013317856,9.554873974,102.2595379,126.9777689,16.92909004,19.1181298,4.975133333,10591.55093,0.005226667,0.035018667,0.005292 +2153,4.205666959,0,0,0,3.304204435,0.782078667,0.159144667,4.257872812,0,0,0.044343265,0.715666,0.00776,82.27087333,0,3207.249128,431.2152289,468.7849098,0.77622795,0.013534493,0.005839093,10.21085826,7.530821333,3.995753333,0.118051128,0,1.574092785,0,0.01318196,9.542662374,102.1657245,126.0667256,16.81758667,19.06330242,4.924366667,10492.32315,0.005173333,0.034661333,0.005238 +2154,4.162309568,0,0,0,3.284847157,0.774016,0.157504,4.213977216,0,0,0.043886118,0.708288,0.00768,81.42272,0,3174.184704,430.0752419,466.8545324,0.7682256,0.013394962,0.005778897,10.10559168,7.453184,3.95456,0.116834106,0,1.557865024,0,0.013046063,9.530450775,102.071911,125.1556822,16.7060833,19.00847504,4.8736,10393.09536,0.00512,0.034304,0.005184 +2155,4.118952177,0,0,0,3.265489879,0.765953333,0.155863333,4.17008162,0,0,0.043428971,0.70091,0.0076,80.57456667,0,3141.12028,428.935255,464.924155,0.76022325,0.013255431,0.0057187,10.0003251,7.375546667,3.913366667,0.115617084,0,1.541637263,0,0.012910167,9.518239175,101.9780975,124.2446389,16.59457994,18.95364766,4.822833333,10293.86758,0.005066667,0.033946667,0.00513 +2156,4.075594785,0,0,0,3.246132601,0.757890667,0.154222667,4.126186024,0,0,0.042971824,0.693532,0.00752,79.72641333,0,3108.055856,427.7952681,462.9937776,0.7522209,0.0131159,0.005658503,9.89505852,7.297909333,3.872173333,0.114400062,0,1.525409503,0,0.01277427,9.506027575,101.884284,123.3335956,16.48307657,18.89882028,4.772066667,10194.6398,0.005013333,0.033589333,0.005076 +2157,4.032237394,0,0,0,3.226775324,0.749828,0.152582,4.082290428,0,0,0.042514677,0.686154,0.00744,78.87826,0,3074.991432,426.6552812,461.0634002,0.74421855,0.012976369,0.005598306,9.78979194,7.220272,3.83098,0.11318304,0,1.509181742,0,0.012638374,9.493815976,101.7904705,122.4225523,16.3715732,18.8439929,4.7213,10095.41201,0.00496,0.033232,0.005022 +2158,3.988880003,0,0,0,3.207418046,0.741765333,0.150941333,4.038394832,0,0,0.04205753,0.678776,0.00736,78.03010667,0,3041.927008,425.5152943,459.1330227,0.7362162,0.012836839,0.005538109,9.68452536,7.142634667,3.789786667,0.111966018,0,1.492953981,0,0.012502477,9.481604376,101.6966571,121.511509,16.26006983,18.78916552,4.670533333,9996.184229,0.004906667,0.032874667,0.004968 +2159,3.945522611,0,0,0,3.188060768,0.733702667,0.149300667,3.994499236,0,0,0.041600382,0.671398,0.00728,77.18195333,0,3008.862584,424.3753074,457.2026453,0.72821385,0.012697308,0.005477912,9.57925878,7.064997333,3.748593333,0.110748996,0,1.476726221,0,0.012366581,9.469392776,101.6028436,120.6004657,16.14856646,18.73433814,4.619766667,9896.956445,0.004853333,0.032517333,0.004914 +2160,3.90216522,0,0,0,3.16870349,0.72564,0.14766,3.95060364,0,0,0.041143235,0.66402,0.0072,76.3338,0,2975.79816,423.2353205,455.2722679,0.7202115,0.012557777,0.005417716,9.4739922,6.98736,3.7074,0.109531974,0,1.46049846,0,0.012230684,9.457181177,101.5090301,119.6894224,16.03706309,18.67951076,4.569,9797.728661,0.0048,0.03216,0.00486 +2161,3.858807829,0,0,0,3.149346212,0.717577333,0.146019333,3.906708044,0,0,0.040686088,0.656642,0.00712,75.48564667,0,2942.733736,422.0953335,453.3418905,0.71220915,0.012418246,0.005357519,9.36872562,6.909722667,3.666206667,0.108314952,0,1.444270699,0,0.012094788,9.444969577,101.4152166,118.778379,15.92555973,18.62468337,4.518233333,9698.500878,0.004746667,0.031802667,0.004806 +2162,3.815450437,0,0,0,3.129988934,0.709514667,0.144378667,3.862812448,0,0,0.040228941,0.649264,0.00704,74.63749333,0,2909.669312,420.9553466,451.4115131,0.7042068,0.012278715,0.005297322,9.26345904,6.832085333,3.625013333,0.10709793,0,1.428042939,0,0.011958891,9.432757977,101.3214031,117.8673357,15.81405636,18.56985599,4.467466667,9599.273094,0.004693333,0.031445333,0.004752 +2163,3.772093046,0,0,0,3.110631657,0.701452,0.142738,3.818916852,0,0,0.039771794,0.641886,0.00696,73.78934,0,2876.604888,419.8153597,449.4811357,0.69620445,0.012139184,0.005237125,9.15819246,6.754448,3.58382,0.105880908,0,1.411815178,0,0.011822995,9.420546378,101.2275897,116.9562924,15.70255299,18.51502861,4.4167,9500.045311,0.00464,0.031088,0.004698 +2164,3.728735655,0,0,0,3.091274379,0.693389333,0.141097333,3.775021256,0,0,0.039314647,0.634508,0.00688,72.94118667,0,2843.540464,418.6753728,447.5507583,0.6882021,0.011999653,0.005176928,9.05292588,6.676810667,3.542626667,0.104663886,0,1.395587417,0,0.011687098,9.408334778,101.1337762,116.0452491,15.59104962,18.46020123,4.365933333,9400.817527,0.004586667,0.030730667,0.004644 +2165,3.685378263,0,0,0,3.071917101,0.685326667,0.139456667,3.73112566,0,0,0.0388575,0.62713,0.0068,72.09303333,0,2810.47604,417.5353859,445.6203809,0.68019975,0.011860123,0.005116731,8.9476593,6.599173333,3.501433333,0.103446864,0,1.379359657,0,0.011551202,9.396123178,101.0399627,115.1342058,15.47954625,18.40537385,4.315166667,9301.589744,0.004533333,0.030373333,0.00459 +2166,3.642020872,0,0,0,3.052559823,0.677264,0.137816,3.687230064,0,0,0.038400353,0.619752,0.00672,71.24488,0,2777.411616,416.395399,443.6900035,0.6721974,0.011720592,0.005056535,8.84239272,6.521536,3.46024,0.102229842,0,1.363131896,0,0.011415305,9.383911579,100.9461492,114.2231625,15.36804288,18.35054647,4.2644,9202.36196,0.00448,0.030016,0.004536 +2167,3.598663481,0,0,0,3.033202545,0.669201333,0.136175333,3.643334468,0,0,0.037943206,0.612374,0.00664,70.39672667,0,2744.347192,415.2554121,441.7596261,0.66419505,0.011581061,0.004996338,8.73712614,6.443898667,3.419046667,0.10101282,0,1.346904135,0,0.011279409,9.371699979,100.8523357,113.3121192,15.25653951,18.29571909,4.213633333,9103.134177,0.004426667,0.029658667,0.004482 +2168,3.555306089,0,0,0,3.013845268,0.661138667,0.134534667,3.599438872,0,0,0.037486059,0.604996,0.00656,69.54857333,0,2711.282768,414.1154252,439.8292486,0.6561927,0.01144153,0.004936141,8.63185956,6.366261333,3.377853333,0.099795799,0,1.330676375,0,0.011143512,9.359488379,100.7585223,112.4010758,15.14503615,18.24089171,4.162866667,9003.906393,0.004373333,0.029301333,0.004428 +2169,3.511948698,0,0,0,2.99448799,0.653076,0.132894,3.555543276,0,0,0.037028912,0.597618,0.00648,68.70042,0,2678.218344,412.9754382,437.8988712,0.64819035,0.011301999,0.004875944,8.52659298,6.288624,3.33666,0.098578777,0,1.314448614,0,0.011007616,9.34727678,100.6647088,111.4900325,15.03353278,18.18606433,4.1121,8904.67861,0.00432,0.028944,0.004374 +2170,3.468591307,0,0,0,2.975130712,0.645013333,0.131253333,3.51164768,0,0,0.036571765,0.59024,0.0064,67.85226667,0,2645.15392,411.8354513,435.9684938,0.640188,0.011162468,0.004815747,8.4213264,6.210986667,3.295466667,0.097361755,0,1.298220853,0,0.010871719,9.33506518,100.5708953,110.5789892,14.92202941,18.13123695,4.061333333,8805.450826,0.004266667,0.028586667,0.00432 +2171,3.425233915,0,0,0,2.955773434,0.636950667,0.129612667,3.467752084,0,0,0.036114618,0.582862,0.00632,67.00411333,0,2612.089496,410.6954644,434.0381164,0.63218565,0.011022937,0.00475555,8.31605982,6.133349333,3.254273333,0.096144733,0,1.281993093,0,0.010735823,9.32285358,100.4770818,109.6679459,14.81052604,18.07640957,4.010566667,8706.223043,0.004213333,0.028229333,0.004266 +2172,3.381876524,0,0,0,2.936416156,0.628888,0.127972,3.423856488,0,0,0.035657471,0.575484,0.00624,66.15596,0,2579.025072,409.5554775,432.107739,0.6241833,0.010883407,0.004695354,8.21079324,6.055712,3.21308,0.094927711,0,1.265765332,0,0.010599926,9.310641981,100.3832683,108.7569026,14.69902267,18.02158219,3.9598,8606.995259,0.00416,0.027872,0.004212 +2173,3.338519133,0,0,0,2.917058879,0.620825333,0.126331333,3.379960892,0,0,0.035200324,0.568106,0.00616,65.30780667,0,2545.960648,408.4154906,430.1773616,0.61618095,0.010743876,0.004635157,8.10552666,5.978074667,3.171886667,0.093710689,0,1.249537571,0,0.01046403,9.298430381,100.2894549,107.8458593,14.5875193,17.96675481,3.909033333,8507.767475,0.004106667,0.027514667,0.004158 +2174,3.295161741,0,0,0,2.897701601,0.612762667,0.124690667,3.336065296,0,0,0.034743177,0.560728,0.00608,64.45965333,0,2512.896224,407.2755037,428.2469842,0.6081786,0.010604345,0.00457496,8.00026008,5.900437333,3.130693333,0.092493667,0,1.233309811,0,0.010328133,9.286218781,100.1956414,106.934816,14.47601594,17.91192743,3.858266667,8408.539692,0.004053333,0.027157333,0.004104 +2175,3.25180435,0,0,0,2.878344323,0.6047,0.12305,3.2921697,0,0,0.03428603,0.55335,0.006,63.6115,0,2479.8318,406.1355168,426.3166068,0.60017625,0.010464814,0.004514763,7.8949935,5.8228,3.0895,0.091276645,0,1.21708205,0,0.010192237,9.274007182,100.1018279,106.0237726,14.36451257,17.85710005,3.8075,8309.311908,0.004,0.0268,0.00405 +2176,3.208446959,0,0,0,2.858987045,0.596637333,0.121409333,3.248274104,0,0,0.033828882,0.545972,0.00592,62.76334667,0,2446.767376,404.9955298,424.3862294,0.5921739,0.010325283,0.004454566,7.78972692,5.745162667,3.048306667,0.090059623,0,1.200854289,0,0.010056341,9.261795582,100.0080144,105.1127293,14.2530092,17.80227267,3.756733333,8210.084125,0.003946667,0.026442667,0.003996 +2177,3.165089567,0,0,0,2.839629767,0.588574667,0.119768667,3.204378508,0,0,0.033371735,0.538594,0.00584,61.91519333,0,2413.702952,403.8555429,422.455852,0.58417155,0.010185752,0.004394369,7.68446034,5.667525333,3.007113333,0.088842601,0,1.184626529,0,0.009920444,9.249583982,99.91420093,104.201686,14.14150583,17.74744529,3.705966667,8110.856341,0.003893333,0.026085333,0.003942 +2178,3.121732176,0,0,0,2.820272489,0.580512,0.118128,3.160482912,0,0,0.032914588,0.531216,0.00576,61.06704,0,2380.638528,402.715556,420.5254745,0.5761692,0.010046221,0.004334172,7.57919376,5.589888,2.96592,0.087625579,0,1.168398768,0,0.009784548,9.237372383,99.82038745,103.2906427,14.03000246,17.69261791,3.6552,8011.628558,0.00384,0.025728,0.003888 +2179,3.078374785,0,0,0,2.800915212,0.572449333,0.116487333,3.116587316,0,0,0.032457441,0.523838,0.00568,60.21888667,0,2347.574104,401.5755691,418.5950971,0.56816685,0.009906691,0.004273976,7.47392718,5.512250667,2.924726667,0.086408557,0,1.152171007,0,0.009648651,9.225160783,99.72657397,102.3795994,13.91849909,17.63779053,3.604433333,7912.400774,0.003786667,0.025370667,0.003834 +2180,3.035017393,0,0,0,2.781557934,0.564386667,0.114846667,3.07269172,0,0,0.032000294,0.51646,0.0056,59.37073333,0,2314.50968,400.4355822,416.6647197,0.5601645,0.00976716,0.004213779,7.3686606,5.434613333,2.883533333,0.085191535,0,1.135943247,0,0.009512755,9.212949184,99.63276049,101.4685561,13.80699573,17.58296315,3.553666667,7813.172991,0.003733333,0.025013333,0.00378 +2181,2.991660002,0,0,0,2.762200656,0.556324,0.113206,3.028796124,0,0,0.031543147,0.509082,0.00552,58.52258,0,2281.445256,399.2955953,414.7343423,0.55216215,0.009627629,0.004153582,7.26339402,5.356976,2.84234,0.083974513,0,1.119715486,0,0.009376858,9.200737584,99.53894701,100.5575128,13.69549236,17.52813577,3.5029,7713.945207,0.00368,0.024656,0.003726 +2182,2.948302611,0,0,0,2.742843378,0.548261333,0.111565333,2.984900528,0,0,0.031086,0.501704,0.00544,57.67442667,0,2248.380832,398.1556084,412.8039649,0.5441598,0.009488098,0.004093385,7.15812744,5.279338667,2.801146667,0.082757491,0,1.103487725,0,0.009240962,9.188525984,99.44513353,99.64646944,13.58398899,17.47330839,3.452133333,7614.717424,0.003626667,0.024298667,0.003672 +2183,2.904945219,0,0,0,2.7234861,0.540198667,0.109924667,2.941004932,0,0,0.030628853,0.494326,0.00536,56.82627333,0,2215.316408,397.0156215,410.8735875,0.53615745,0.009348567,0.004033188,7.05286086,5.201701333,2.759953333,0.08154047,0,1.087259965,0,0.009105065,9.176314385,99.35132005,98.73542613,13.47248562,17.41848101,3.401366667,7515.48964,0.003573333,0.023941333,0.003618 +2184,2.861587828,0,0,0,2.704128823,0.532136,0.108284,2.897109336,0,0,0.030171706,0.486948,0.00528,55.97812,0,2182.251984,395.8756345,408.9432101,0.5281551,0.009209036,0.003972991,6.94759428,5.124064,2.71876,0.080323448,0,1.071032204,0,0.008969169,9.164102785,99.25750657,97.82438281,13.36098225,17.36365363,3.3506,7416.261857,0.00352,0.023584,0.003564 +2185,2.818230437,0,0,0,2.684771545,0.524073333,0.106643333,2.85321374,0,0,0.029714559,0.47957,0.0052,55.12996667,0,2149.18756,394.7356476,407.0128327,0.52015275,0.009069505,0.003912795,6.8423277,5.046426667,2.677566667,0.079106426,0,1.054804443,0,0.008833272,9.151891185,99.16369309,96.9133395,13.24947888,17.30882625,3.299833333,7317.034073,0.003466667,0.023226667,0.00351 +2186,2.774873045,0,0,0,2.665414267,0.516010667,0.105002667,2.809318144,0,0,0.029257412,0.472192,0.00512,54.28181333,0,2116.123136,393.5956607,405.0824553,0.5121504,0.008929975,0.003852598,6.73706112,4.968789333,2.636373333,0.077889404,0,1.038576683,0,0.008697376,9.139679586,99.06987961,96.00229618,13.13797552,17.25399887,3.249066667,7217.806289,0.003413333,0.022869333,0.003456 +2187,2.731515654,0,0,0,2.646056989,0.507948,0.103362,2.765422548,0,0,0.028800265,0.464814,0.00504,53.43366,0,2083.058712,392.4556738,403.1520779,0.50414805,0.008790444,0.003792401,6.63179454,4.891152,2.59518,0.076672382,0,1.022348922,0,0.008561479,9.127467986,98.97606613,95.09125287,13.02647215,17.19917149,3.1983,7118.578506,0.00336,0.022512,0.003402 +2188,2.688158263,0,0,0,2.626699711,0.499885333,0.101721333,2.721526952,0,0,0.028343118,0.457436,0.00496,52.58550667,0,2049.994288,391.3156869,401.2217004,0.4961457,0.008650913,0.003732204,6.52652796,4.813514667,2.553986667,0.07545536,0,1.006121161,0,0.008425583,9.115256386,98.88225265,94.18020955,12.91496878,17.14434411,3.147533333,7019.350722,0.003306667,0.022154667,0.003348 +2189,2.644800871,0,0,0,2.607342433,0.491822667,0.100080667,2.677631356,0,0,0.027885971,0.450058,0.00488,51.73735333,0,2016.929864,390.1757,399.291323,0.48814335,0.008511382,0.003672007,6.42126138,4.735877333,2.512793333,0.074238338,0,0.989893401,0,0.008289686,9.103044787,98.78843917,93.26916624,12.80346541,17.08951673,3.096766667,6920.122939,0.003253333,0.021797333,0.003294 +2190,2.60144348,0,0,0,2.587985156,0.48376,0.09844,2.63373576,0,0,0.027428824,0.44268,0.0048,50.8892,0,1983.86544,389.0357131,397.3609456,0.480141,0.008371851,0.00361181,6.3159948,4.65824,2.4716,0.073021316,0,0.97366564,0,0.00815379,9.090833187,98.69462569,92.35812293,12.69196204,17.03468935,3.046,6820.895155,0.0032,0.02144,0.00324 +2191,2.558086089,0,0,0,2.568627878,0.475697333,0.096799333,2.589840164,0,0,0.026971677,0.435302,0.00472,50.04104667,0,1950.801016,387.8957261,395.4305682,0.47213865,0.00823232,0.003551614,6.21072822,4.580602667,2.430406667,0.071804294,0,0.957437879,0,0.008017893,9.078621587,98.60081221,91.44707961,12.58045867,16.97986197,2.995233333,6721.667372,0.003146667,0.021082667,0.003186 +2192,2.514728697,0,0,0,2.5492706,0.467634667,0.095158667,2.545944568,0,0,0.026514529,0.427924,0.00464,49.19289333,0,1917.736592,386.7557392,393.5001908,0.4641363,0.008092789,0.003491417,6.10546164,4.502965333,2.389213333,0.070587272,0,0.941210119,0,0.007881997,9.066409988,98.50699873,90.5360363,12.46895531,16.92503459,2.944466667,6622.439588,0.003093333,0.020725333,0.003132 +2193,2.471371306,0,0,0,2.529913322,0.459572,0.093518,2.502048972,0,0,0.026057382,0.420546,0.00456,48.34474,0,1884.672168,385.6157523,391.5698134,0.45613395,0.007953259,0.00343122,6.00019506,4.425328,2.34802,0.06937025,0,0.924982358,0,0.0077461,9.054198388,98.41318525,89.62499298,12.35745194,16.87020721,2.8937,6523.211805,0.00304,0.020368,0.003078 +2194,2.428013915,0,0,0,2.510556044,0.451509333,0.091877333,2.458153376,0,0,0.025600235,0.413168,0.00448,47.49658667,0,1851.607744,384.4757654,389.639436,0.4481316,0.007813728,0.003371023,5.89492848,4.347690667,2.306826667,0.068153228,0,0.908754597,0,0.007610204,9.041986788,98.31937177,88.71394967,12.24594857,16.81537983,2.842933333,6423.984021,0.002986667,0.020010667,0.003024 +2195,2.384656523,0,0,0,2.491198767,0.443446667,0.090236667,2.41425778,0,0,0.025143088,0.40579,0.0044,46.64843333,0,1818.54332,383.3357785,387.7090586,0.44012925,0.007674197,0.003310826,5.7896619,4.270053333,2.265633333,0.066936206,0,0.892526837,0,0.007474307,9.029775189,98.22555829,87.80290635,12.1344452,16.76055245,2.792166667,6324.756238,0.002933333,0.019653333,0.00297 +2196,2.341299132,0,0,0,2.471841489,0.435384,0.088596,2.370362184,0,0,0.024685941,0.398412,0.00432,45.80028,0,1785.478896,382.1957916,385.7786812,0.4321269,0.007534666,0.003250629,5.68439532,4.192416,2.22444,0.065719184,0,0.876299076,0,0.007338411,9.017563589,98.13174481,86.89186304,12.02294183,16.70572507,2.7414,6225.528454,0.00288,0.019296,0.002916 +2197,2.297941741,0,0,0,2.452484211,0.427321333,0.086955333,2.326466588,0,0,0.024228794,0.391034,0.00424,44.95212667,0,1752.414472,381.0558047,383.8483038,0.42412455,0.007395135,0.003190433,5.57912874,4.114778667,2.183246667,0.064502162,0,0.860071315,0,0.007202514,9.005351989,98.03793133,85.98081973,11.91143846,16.65089769,2.690633333,6126.300671,0.002826667,0.018938667,0.002862 +2198,2.254584349,0,0,0,2.433126933,0.419258667,0.085314667,2.282570992,0,0,0.023771647,0.383656,0.00416,44.10397333,0,1719.350048,379.9158178,381.9179263,0.4161222,0.007255604,0.003130236,5.47386216,4.037141333,2.142053333,0.063285141,0,0.843843555,0,0.007066618,8.99314039,97.94411785,85.06977641,11.7999351,16.59607031,2.639866667,6027.072887,0.002773333,0.018581333,0.002808 +2199,2.211226958,0,0,0,2.413769655,0.411196,0.083674,2.238675396,0,0,0.0233145,0.376278,0.00408,43.25582,0,1686.285624,378.7758308,379.9875489,0.40811985,0.007116074,0.003070039,5.36859558,3.959504,2.10086,0.062068119,0,0.827615794,0,0.006930721,8.98092879,97.85030437,84.1587331,11.68843173,16.54124293,2.5891,5927.845103,0.00272,0.018224,0.002754 +2200,2.167869567,0,0,0,2.394412377,0.403133333,0.082033333,2.1947798,0,0,0.022857353,0.3689,0.004,42.40766667,0,1653.2212,377.6358439,378.0571715,0.4001175,0.006976543,0.003009842,5.263329,3.881866667,2.059666667,0.060851097,0,0.811388033,0,0.006794825,8.96871719,97.75649089,83.24768978,11.57692836,16.48641555,2.538333333,5828.61732,0.002666667,0.017866667,0.0027 +2201,2.124512175,0,0,0,2.3750551,0.395070667,0.080392667,2.150884204,0,0,0.022400206,0.361522,0.00392,41.55951333,0,1620.156776,376.495857,376.1267941,0.39211515,0.006837012,0.002949645,5.15806242,3.804229333,2.018473333,0.059634075,0,0.795160273,0,0.006658928,8.956505591,97.66267741,82.33664647,11.46542499,16.43158817,2.487566667,5729.389536,0.002613333,0.017509333,0.002646 +2202,2.081154784,0,0,0,2.355697822,0.387008,0.078752,2.106988608,0,0,0.021943059,0.354144,0.00384,40.71136,0,1587.092352,375.3558701,374.1964167,0.3841128,0.006697481,0.002889448,5.05279584,3.726592,1.97728,0.058417053,0,0.778932512,0,0.006523032,8.944293991,97.56886392,81.42560315,11.35392162,16.37676079,2.4368,5630.161753,0.00256,0.017152,0.002592 +2203,2.037797393,0,0,0,2.336340544,0.378945333,0.077111333,2.063093012,0,0,0.021485912,0.346766,0.00376,39.86320667,0,1554.027928,374.2158832,372.2660393,0.37611045,0.00655795,0.002829251,4.94752926,3.648954667,1.936086667,0.057200031,0,0.762704751,0,0.006387135,8.932082391,97.47505044,80.51455984,11.24241825,16.32193341,2.386033333,5530.933969,0.002506667,0.016794667,0.002538 +2204,1.994440001,0,0,0,2.316983266,0.370882667,0.075470667,2.019197416,0,0,0.021028765,0.339388,0.00368,39.01505333,0,1520.963504,373.0758963,370.3356619,0.3681081,0.006418419,0.002769055,4.84226268,3.571317333,1.894893333,0.055983009,0,0.746476991,0,0.006251239,8.919870792,97.38123696,79.60351653,11.13091489,16.26710603,2.335266667,5431.706186,0.002453333,0.016437333,0.002484 +2205,1.95108261,0,0,0,2.297625988,0.36282,0.07383,1.97530182,0,0,0.020571618,0.33201,0.0036,38.1669,0,1487.89908,371.9359094,368.4052845,0.36010575,0.006278888,0.002708858,4.7369961,3.49368,1.8537,0.054765987,0,0.73024923,0,0.006115342,8.907659192,97.28742348,78.69247321,11.01941152,16.21227865,2.2845,5332.478402,0.0024,0.01608,0.00243 +2206,1.907725219,0,0,0,2.278268711,0.354757333,0.072189333,1.931406224,0,0,0.020114471,0.324632,0.00352,37.31874667,0,1454.834656,370.7959224,366.4749071,0.3521034,0.006139358,0.002648661,4.63172952,3.416042667,1.812506667,0.053548965,0,0.714021469,0,0.005979446,8.895447592,97.19361,77.7814299,10.90790815,16.15745127,2.233733333,5233.250619,0.002346667,0.015722667,0.002376 +2207,1.864367827,0,0,0,2.258911433,0.346694667,0.070548667,1.887510628,0,0,0.019657324,0.317254,0.00344,36.47059333,0,1421.770232,369.6559355,364.5445297,0.34410105,0.005999827,0.002588464,4.52646294,3.338405333,1.771313333,0.052331943,0,0.697793709,0,0.005843549,8.883235993,97.09979652,76.87038658,10.79640478,16.10262389,2.182966667,5134.022835,0.002293333,0.015365333,0.002322 +2208,1.821010436,0,0,0,2.239554155,0.338632,0.068908,1.843615032,0,0,0.019200177,0.309876,0.00336,35.62244,0,1388.705808,368.5159486,362.6141522,0.3360987,0.005860296,0.002528267,4.42119636,3.260768,1.73012,0.051114921,0,0.681565948,0,0.005707653,8.871024393,97.00598304,75.95934327,10.68490141,16.04779651,2.1322,5034.795052,0.00224,0.015008,0.002268 +2209,1.777653045,0,0,0,2.220196877,0.330569333,0.067267333,1.799719436,0,0,0.018743029,0.302498,0.00328,34.77428667,0,1355.641384,367.3759617,360.6837748,0.32809635,0.005720765,0.00246807,4.31592978,3.183130667,1.688926667,0.049897899,0,0.665338187,0,0.005571756,8.858812793,96.91216956,75.04829995,10.57339804,15.99296913,2.081433333,4935.567268,0.002186667,0.014650667,0.002214 +2210,1.734295653,0,0,0,2.200839599,0.322506667,0.065626667,1.75582384,0,0,0.018285882,0.29512,0.0032,33.92613333,0,1322.57696,366.2359748,358.7533974,0.320094,0.005581234,0.002407874,4.2106632,3.105493333,1.647733333,0.048680877,0,0.649110427,0,0.00543586,8.846601194,96.81835608,74.13725664,10.46189468,15.93814175,2.030666667,4836.339485,0.002133333,0.014293333,0.00216 +2211,1.690938262,0,0,0,2.181482322,0.314444,0.063986,1.711928244,0,0,0.017828735,0.287742,0.00312,33.07798,0,1289.512536,365.0959879,356.82302,0.31209165,0.005441703,0.002347677,4.10539662,3.027856,1.60654,0.047463855,0,0.632882666,0,0.005299963,8.834389594,96.7245426,73.22621333,10.35039131,15.88331437,1.9799,4737.111701,0.00208,0.013936,0.002106 +2212,1.647580871,0,0,0,2.162125044,0.306381333,0.062345333,1.668032648,0,0,0.017371588,0.280364,0.00304,32.22982667,0,1256.448112,363.956001,354.8926426,0.3040893,0.005302172,0.00228748,4.00013004,2.950218667,1.565346667,0.046246833,0,0.616654905,0,0.005164067,8.822177995,96.63072912,72.31517001,10.23888794,15.82848699,1.929133333,4637.883917,0.002026667,0.013578667,0.002052 +2213,1.604223479,0,0,0,2.142767766,0.298318667,0.060704667,1.624137052,0,0,0.016914441,0.272986,0.00296,31.38167333,0,1223.383688,362.8160141,352.9622652,0.29608695,0.005162642,0.002227283,3.89486346,2.872581333,1.524153333,0.045029812,0,0.600427145,0,0.00502817,8.809966395,96.53691564,71.4041267,10.12738457,15.77365961,1.878366667,4538.656134,0.001973333,0.013221333,0.001998 +2214,1.560866088,0,0,0,2.123410488,0.290256,0.059064,1.580241456,0,0,0.016457294,0.265608,0.00288,30.53352,0,1190.319264,361.6760271,351.0318878,0.2880846,0.005023111,0.002167086,3.78959688,2.794944,1.48296,0.04381279,0,0.584199384,0,0.004892274,8.797754795,96.44310216,70.49308338,10.0158812,15.71883223,1.8276,4439.42835,0.00192,0.012864,0.001944 +2215,1.517508697,0,0,0,2.10405321,0.282193333,0.057423333,1.53634586,0,0,0.016000147,0.25823,0.0028,29.68536667,0,1157.25484,360.5360402,349.1015104,0.28008225,0.00488358,0.002106889,3.6843303,2.717306667,1.441766667,0.042595768,0,0.567971623,0,0.004756377,8.785543196,96.34928868,69.58204007,9.904377834,15.66400485,1.776833333,4340.200567,0.001866667,0.012506667,0.00189 +2216,1.474151305,0,0,0,2.084695932,0.274130667,0.055782667,1.492450264,0,0,0.015543,0.250852,0.00272,28.83721333,0,1124.190416,359.3960533,347.171133,0.2720799,0.004744049,0.002046693,3.57906372,2.639669333,1.400573333,0.041378746,0,0.551743863,0,0.004620481,8.773331596,96.2554752,68.67099675,9.792874465,15.60917747,1.726066667,4240.972783,0.001813333,0.012149333,0.001836 +2217,1.430793914,0,0,0,2.065338655,0.266068,0.054142,1.448554668,0,0,0.015085853,0.243474,0.00264,27.98906,0,1091.125992,358.2560664,345.2407556,0.26407755,0.004604518,0.001986496,3.47379714,2.562032,1.35938,0.040161724,0,0.535516102,0,0.004484584,8.761119996,96.16166172,67.75995344,9.681371097,15.55435009,1.6753,4141.745,0.00176,0.011792,0.001782 +2218,1.387436523,0,0,0,2.045981377,0.258005333,0.052501333,1.404659072,0,0,0.014628706,0.236096,0.00256,27.14090667,0,1058.061568,357.1160795,343.3103781,0.2560752,0.004464987,0.001926299,3.36853056,2.484394667,1.318186667,0.038944702,0,0.519288341,0,0.004348688,8.748908397,96.06784824,66.84891013,9.569867729,15.49952271,1.624533333,4042.517216,0.001706667,0.011434667,0.001728 +2219,1.344079131,0,0,0,2.026624099,0.249942667,0.050860667,1.360763476,0,0,0.014171559,0.228718,0.00248,26.29275333,0,1024.997144,355.9760926,341.3800007,0.24807285,0.004325456,0.001866102,3.26326398,2.406757333,1.276993333,0.03772768,0,0.503060581,0,0.004212791,8.736696797,95.97403476,65.93786681,9.45836436,15.44469533,1.573766667,3943.289433,0.001653333,0.011077333,0.001674 +2220,1.30072174,0,0,0,2.007266821,0.24188,0.04922,1.31686788,0,0,0.013714412,0.22134,0.0024,25.4446,0,991.93272,354.8361057,339.4496233,0.2400705,0.004185926,0.001805905,3.1579974,2.32912,1.2358,0.036510658,0,0.48683282,0,0.004076895,8.724485197,95.88022128,65.0268235,9.346860992,15.38986795,1.523,3844.061649,0.0016,0.01072,0.00162 +2221,1.257364349,0,0,0,1.987909543,0.233817333,0.047579333,1.272972284,0,0,0.013257265,0.213962,0.00232,24.59644667,0,958.868296,353.6961187,337.5192459,0.23206815,0.004046395,0.001745708,3.05273082,2.251482667,1.194606667,0.035293636,0,0.470605059,0,0.003940998,8.712273598,95.7864078,64.11578018,9.235357623,15.33504057,1.472233333,3744.833866,0.001546667,0.010362667,0.001566 +2222,1.214006957,0,0,0,1.968552266,0.225754667,0.045938667,1.229076688,0,0,0.012800118,0.206584,0.00224,23.74829333,0,925.803872,352.5561318,335.5888685,0.2240658,0.003906864,0.001685512,2.94746424,2.173845333,1.153413333,0.034076614,0,0.454377299,0,0.003805102,8.700061998,95.69259432,63.20473687,9.123854255,15.28021319,1.421466667,3645.606082,0.001493333,0.010005333,0.001512 +2223,1.170649566,0,0,0,1.949194988,0.217692,0.044298,1.185181092,0,0,0.012342971,0.199206,0.00216,22.90014,0,892.739448,351.4161449,333.6584911,0.21606345,0.003767333,0.001625315,2.84219766,2.096208,1.11222,0.032859592,0,0.438149538,0,0.003669205,8.687850398,95.59878084,62.29369355,9.012350887,15.22538581,1.3707,3546.378299,0.00144,0.009648,0.001458 +2224,1.127292175,0,0,0,1.92983771,0.209629333,0.042657333,1.141285496,0,0,0.011885824,0.191828,0.00208,22.05198667,0,859.675024,350.276158,331.7281137,0.2080611,0.003627802,0.001565118,2.73693108,2.018570667,1.071026667,0.03164257,0,0.421921777,0,0.003533309,8.675638799,95.50496736,61.38265024,8.900847518,15.17055843,1.319933333,3447.150515,0.001386667,0.009290667,0.001404 +2225,1.083934783,0,0,0,1.910480432,0.201566667,0.041016667,1.0973899,0,0,0.011428677,0.18445,0.002,21.20383333,0,826.6106,349.1361711,329.7977363,0.20005875,0.003488271,0.001504921,2.6316645,1.940933333,1.029833333,0.030425548,0,0.405694017,0,0.003397412,8.663427199,95.41115388,60.47160693,8.78934415,15.11573105,1.269166667,3347.922731,0.001333333,0.008933333,0.00135 +2226,1.040577392,0,0,0,1.891123154,0.193504,0.039376,1.053494304,0,0,0.010971529,0.177072,0.00192,20.35568,0,793.546176,347.9961842,327.8673589,0.1920564,0.00334874,0.001444724,2.52639792,1.863296,0.98864,0.029208526,0,0.389466256,0,0.003261516,8.651215599,95.3173404,59.56056361,8.677840782,15.06090367,1.2184,3248.694948,0.00128,0.008576,0.001296 +2227,0.997220001,0,0,0,1.871765876,0.185441333,0.037735333,1.009598708,0,0,0.010514382,0.169694,0.00184,19.50752667,0,760.481752,346.8561973,325.9369815,0.18405405,0.00320921,0.001384527,2.42113134,1.785658667,0.947446667,0.027991504,0,0.373238495,0,0.003125619,8.639004,95.22352692,58.6495203,8.566337413,15.00607629,1.167633333,3149.467164,0.001226667,0.008218667,0.001242 +2228,0.953862609,0,0,0,1.852408599,0.177378667,0.036094667,0.965703112,0,0,0.010057235,0.162316,0.00176,18.65937333,0,727.417328,345.7162104,324.006604,0.1760517,0.003069679,0.00132433,2.31586476,1.708021333,0.906253333,0.026774483,0,0.357010735,0,0.002989723,8.6267924,95.12971344,57.73847698,8.454834045,14.9512489,1.116866667,3050.239381,0.001173333,0.007861333,0.001188 +2229,0.910505218,0,0,0,1.833051321,0.169316,0.034454,0.921807516,0,0,0.009600088,0.154938,0.00168,17.81122,0,694.352904,344.5762234,322.0762266,0.16804935,0.002930148,0.001264134,2.21059818,1.630384,0.86506,0.025557461,0,0.340782974,0,0.002853826,8.6145808,95.03589996,56.82743367,8.343330677,14.89642152,1.0661,2951.011597,0.00112,0.007504,0.001134 +2230,0.867147827,0,0,0,1.813694043,0.161253333,0.032813333,0.87791192,0,0,0.009142941,0.14756,0.0016,16.96306667,0,661.28848,343.4362365,320.1458492,0.160047,0.002790617,0.001203937,2.1053316,1.552746667,0.823866667,0.024340439,0,0.324555213,0,0.00271793,8.602369201,94.94208648,55.91639035,8.231827308,14.84159414,1.015333333,2851.783814,0.001066667,0.007146667,0.00108 +2231,0.823790435,0,0,0,1.794336765,0.153190667,0.031172667,0.834016324,0,0,0.008685794,0.140182,0.00152,16.11491333,0,628.224056,342.2962496,318.2154718,0.15204465,0.002651086,0.00114374,2.00006502,1.475109333,0.782673333,0.023123417,0,0.308327453,0,0.002582033,8.590157601,94.848273,55.00534704,8.12032394,14.78676676,0.964566667,2752.55603,0.001013333,0.006789333,0.001026 +2232,0.780433044,0,0,0,1.774979487,0.145128,0.029532,0.790120728,0,0,0.008228647,0.132804,0.00144,15.26676,0,595.159632,341.1562627,316.2850944,0.1440423,0.002511555,0.001083543,1.89479844,1.397472,0.74148,0.021906395,0,0.292099692,0,0.002446137,8.577946001,94.75445952,54.09430373,8.008820571,14.73193938,0.9138,2653.328247,9.60E-04,0.006432,9.72E-04 +2233,0.737075653,0,0,0,1.75562221,0.137065333,0.027891333,0.746225132,0,0,0.0077715,0.125426,0.00136,14.41860667,0,562.095208,340.0162758,314.354717,0.13603995,0.002372025,0.001023346,1.78953186,1.319834667,0.700286667,0.020689373,0,0.275871931,0,0.00231024,8.565734402,94.66064604,53.18326041,7.897317203,14.677112,0.863033333,2554.100463,9.07E-04,0.006074667,9.18E-04 +2234,0.693718261,0,0,0,1.736264932,0.129002667,0.026250667,0.702329536,0,0,0.007314353,0.118048,0.00128,13.57045333,0,529.030784,338.8762889,312.4243396,0.1280376,0.002232494,9.63E-04,1.68426528,1.242197333,0.659093333,0.019472351,0,0.259644171,0,0.002174344,8.553522802,94.56683256,52.2722171,7.785813835,14.62228462,0.812266667,2454.87268,8.53E-04,0.005717333,8.64E-04 +2235,0.65036087,0,0,0,1.716907654,0.12094,0.02461,0.65843394,0,0,0.006857206,0.11067,0.0012,12.7223,0,495.96636,337.736302,310.4939622,0.12003525,0.002092963,9.03E-04,1.5789987,1.16456,0.6179,0.018255329,0,0.24341641,0,0.002038447,8.541311202,94.47301908,51.36117378,7.674310466,14.56745724,0.7615,2355.644896,8.00E-04,0.00536,8.10E-04 +2236,0.607003479,0,0,0,1.697550376,0.112877333,0.022969333,0.614538344,0,0,0.006400059,0.103292,0.00112,11.87414667,0,462.901936,336.596315,308.5635848,0.1120329,0.001953432,8.43E-04,1.47373212,1.086922667,0.576706667,0.017038307,0,0.227188649,0,0.001902551,8.529099603,94.3792056,50.45013047,7.562807098,14.51262986,0.710733333,2256.417113,7.47E-04,0.005002667,7.56E-04 +2237,0.563646087,0,0,0,1.678193098,0.104814667,0.021328667,0.570642748,0,0,0.005942912,0.095914,0.00104,11.02599333,0,429.837512,335.4563281,306.6332074,0.10403055,0.001813901,7.83E-04,1.36846554,1.009285333,0.535513333,0.015821285,0,0.210960889,0,0.001766654,8.516888003,94.28539212,49.53908715,7.45130373,14.45780248,0.659966667,2157.189329,6.93E-04,0.004645333,7.02E-04 +2238,0.520288696,0,0,0,1.65883582,0.096752,0.019688,0.526747152,0,0,0.005485765,0.088536,9.60E-04,10.17784,0,396.773088,334.3163412,304.7028299,0.0960282,0.00167437,7.22E-04,1.26319896,0.931648,0.49432,0.014604263,0,0.194733128,0,0.001630758,8.504676403,94.19157864,48.62804384,7.339800361,14.4029751,0.6092,2057.961545,6.40E-04,0.004288,6.48E-04 +2239,0.476931305,0,0,0,1.639478543,0.088689333,0.018047333,0.482851556,0,0,0.005028618,0.081158,8.80E-04,9.329686667,0,363.708664,333.1763543,302.7724525,0.08802585,0.001534839,6.62E-04,1.15793238,0.854010667,0.453126667,0.013387241,0,0.178505367,0,0.001494861,8.492464804,94.09776516,47.71700053,7.228296993,14.34814772,0.558433333,1958.733762,5.87E-04,0.003930667,5.94E-04 +2240,0.433573913,0,0,0,1.620121265,0.080626667,0.016406667,0.43895596,0,0,0.004571471,0.07378,8.00E-04,8.481533333,0,330.64424,332.0363674,300.8420751,0.0800235,0.001395309,6.02E-04,1.0526658,0.776373333,0.411933333,0.012170219,0,0.162277607,0,0.001358965,8.480253204,94.00395168,46.80595721,7.116793625,14.29332034,0.507666667,1859.505978,5.33E-04,0.003573333,5.40E-04 +2241,0.390216522,0,0,0,1.600763987,0.072564,0.014766,0.395060364,0,0,0.004114324,0.066402,7.20E-04,7.63338,0,297.579816,330.8963805,298.9116977,0.07202115,0.001255778,5.42E-04,0.94739922,0.698736,0.37074,0.010953197,0,0.146049846,0,0.001223068,8.468041605,93.9101382,45.8949139,7.005290256,14.23849296,0.4569,1760.278195,4.80E-04,0.003216,4.86E-04 +2242,0.346859131,0,0,0,1.581406709,0.064501333,0.013125333,0.351164768,0,0,0.003657176,0.059024,6.40E-04,6.785226667,0,264.515392,329.7563936,296.9813203,0.0640188,0.001116247,4.82E-04,0.84213264,0.621098667,0.329546667,0.009736175,0,0.129822085,0,0.001087172,8.455830005,93.81632472,44.98387058,6.893786888,14.18366558,0.406133333,1661.050411,4.27E-04,0.002858667,4.32E-04 +2243,0.303501739,0,0,0,1.562049431,0.056438667,0.011484667,0.307269172,0,0,0.003200029,0.051646,5.60E-04,5.937073333,0,231.450968,328.6164067,295.0509429,0.05601645,9.77E-04,4.21E-04,0.73686606,0.543461333,0.288353333,0.008519154,0,0.113594325,0,9.51E-04,8.443618405,93.72251124,44.07282727,6.782283519,14.1288382,0.355366667,1561.822628,3.73E-04,0.002501333,3.78E-04 +2244,0.260144348,0,0,0,1.542692154,0.048376,0.009844,0.263373576,0,0,0.002742882,0.044268,4.80E-04,5.08892,0,198.386544,327.4764197,293.1205655,0.0480141,8.37E-04,3.61E-04,0.63159948,0.465824,0.24716,0.007302132,0,0.097366564,0,8.15E-04,8.431406806,93.62869776,43.16178395,6.670780151,14.07401082,0.3046,1462.594844,3.20E-04,0.002144,3.24E-04 +2245,0.216786957,0,0,0,1.523334876,0.040313333,0.008203333,0.21947798,0,0,0.002285735,0.03689,4.00E-04,4.240766667,0,165.32212,326.3364328,291.1901881,0.04001175,6.98E-04,3.01E-04,0.5263329,0.388186667,0.205966667,0.00608511,0,0.081138803,0,6.79E-04,8.419195206,93.53488428,42.25074064,6.559276783,14.01918344,0.253833333,1363.367061,2.67E-04,0.001786667,2.70E-04 +2246,0.173429565,0,0,0,1.503977598,0.032250667,0.006562667,0.175582384,0,0,0.001828588,0.029512,3.20E-04,3.392613333,0,132.257696,325.1964459,289.2598107,0.0320094,5.58E-04,2.41E-04,0.42106632,0.310549333,0.164773333,0.004868088,0,0.064911043,0,5.44E-04,8.406983606,93.4410708,41.33969733,6.447773414,13.96435606,0.203066667,1264.139277,2.13E-04,0.001429333,2.16E-04 +2247,0.130072174,0,0,0,1.48462032,0.024188,0.004922,0.131686788,0,0,0.001371441,0.022134,2.40E-04,2.54446,0,99.193272,324.056459,287.3294333,0.02400705,4.19E-04,1.81E-04,0.31579974,0.232912,0.12358,0.003651066,0,0.048683282,0,4.08E-04,8.394772007,93.34725732,40.42865401,6.336270046,13.90952868,0.1523,1164.911494,1.60E-04,0.001072,1.62E-04 +2248,0.086714783,0,0,0,1.465263042,0.016125333,0.003281333,0.087791192,0,0,9.14E-04,0.014756,1.60E-04,1.696306667,0,66.128848,322.9164721,285.3990558,0.0160047,2.79E-04,1.20E-04,0.21053316,0.155274667,0.082386667,0.002434044,0,0.032455521,0,2.72E-04,8.382560407,93.25344384,39.5176107,6.224766678,13.8547013,0.101533333,1065.68371,1.07E-04,7.15E-04,1.08E-04 +2249,0.043357391,0,0,0,1.445905765,0.008062667,0.001640667,0.043895596,0,0,4.57E-04,0.007378,8.00E-05,0.848153333,0,33.064424,321.7764852,283.4686784,0.00800235,1.40E-04,6.02E-05,0.10526658,0.077637333,0.041193333,0.001217022,0,0.016227761,0,1.36E-04,8.370348807,93.15963036,38.60656738,6.113263309,13.79987392,0.050766667,966.4559265,5.33E-05,3.57E-04,5.40E-05 +2250,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2251,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2252,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2253,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2254,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2255,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2256,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2257,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2258,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2259,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2260,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2261,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2262,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2263,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2264,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2265,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2266,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2267,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2268,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2269,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2270,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2271,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2272,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2273,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2274,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2275,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2276,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2277,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2278,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2279,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2280,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2281,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2282,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2283,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2284,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2285,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2286,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2287,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2288,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2289,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2290,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2291,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2292,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2293,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2294,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2295,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2296,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2297,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2298,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2299,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 +2300,0,0,0,0,1.426548487,0,0,0,0,0,0,0,0,0,0,0,320.6364983,281.538301,0,0,0,0,0,0,0,0,0,0,0,8.358137208,93.06581688,37.69552407,6.001759941,13.74504654,0,867.228143,0,0,0 diff --git a/inst/shinyApp/www/inputs/ssp534-over_emissions.csv b/inst/shinyApp/www/inputs/ssp534-over_emissions.csv new file mode 100644 index 0000000..2222fdc --- /dev/null +++ b/inst/shinyApp/www/inputs/ssp534-over_emissions.csv @@ -0,0 +1,562 @@ +; ssp534-over from rcmip,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; hectordata 0.0.0.9000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; commit dab9aad8750535b,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; date Fri Nov 4 11:35:31 2022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; UNITS:,Pg C/yr,Pg C/yr,Pg C/yr,Pg C/yr,Tg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg CH4,Tg CO,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg N,Tg,Tg NMVOC,Tg N,Tg,Gg,Gg S,Gg,Gg,Gg +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_emissions,CCl4_emissions,CF4_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CFC11_emissions,CFC12_emissions,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_emissions,CH4_emissions,CO_emissions,HCFC141b_emissions,HCFC142b_emissions,HCFC22_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC23_emissions,HFC245fa_emissions,HFC32_emissions,HFC4310_emissions,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,SF6_emissions,SO2_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions +1745,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1746,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1747,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1748,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1749,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1750,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1751,0.002594106,0.08266927,0,0,2.072925926,0,0.024856862,0.010071225,0,0,0,0,0,105.1072,0,4276.7685,18.91510887,343.9263672,0,0,0,0,0,0,0,0,0,0,0,0.055785796,6.860142185,59.08812628,3.833772936,15.18871674,0,1206.06818,0.007723273,0,0 +1752,0.002595208,0.084190146,0,0,2.064311933,0,0.024856862,0.010071225,0,0,0,0,0,105.12502,0,4277.7049,18.88971181,341.8090339,0,0,0,0,0,0,0,0,0,0,0,0.056839716,6.819482037,58.63199703,3.834371851,15.03447574,0,1200.427847,0.007723273,0,0 +1753,0.002595302,0.085739002,0,0,2.071950564,0,0.024856862,0.010071225,0,0,0,0,0,105.10373,0,4276.586,19.12137723,343.6754562,0,0,0,0,0,0,0,0,0,0,0,0.057913547,6.881438529,59.0263494,3.817794323,15.18254515,0,1207.227099,0.007723273,0,0 +1754,0.002596404,0.087316353,0,0,2.099349783,0,0.024856862,0.010071225,0,0,0,0,0,105.07356,0,4274.9998,19.50906107,349.8156252,0,0,0,0,0,0,0,0,0,0,0,0.059007665,7.015189224,60.26994517,3.847331337,15.55877305,0,1232.953114,0.007723273,0,0 +1755,0.002597506,0.088922722,0,0,2.099173165,0,0.024856862,0.010071225,0,0,0,0,0,105.09182,0,4275.9598,19.50045493,348.144668,0,0,0,0,0,0,0,0,0,0,0,0.060122454,6.943989043,59.82493372,3.886652888,15.35818253,0,1223.082685,0.007723273,0,0 +1756,0.00277509,0.090558644,0,0,2.068915407,0,0.024856862,0.010071225,0,0,0,0,0,105.08556,0,4275.6306,19.4625366,343.3231517,0,0,0,0,0,0,0,0,0,0,0,0.061258303,6.922711557,58.94682931,3.780146274,15.19577663,0,1211.479202,0.007723273,0,0 +1757,0.002776193,0.092224663,0,0,2.147923676,0,0.024856862,0.010071225,0,0,0,0,0,105.09137,0,4275.9361,20.02354066,355.9418923,0,0,0,0,0,0,0,0,0,0,0,0.062415611,7.047674129,61.263693,3.998436266,15.70481912,0,1255.688247,0.007723273,0,0 +1758,0.002777295,0.093921331,0,0,2.12061141,0,0.024856862,0.010071225,0,0,0,0,0,105.09662,0,4276.2118,19.93400533,351.839749,0,0,0,0,0,0,0,0,0,0,0,0.063594783,6.995459768,60.43461244,3.95160932,15.51461163,0,1241.80619,0.007723273,0,0 +1759,0.002778397,0.095649213,0,0,2.117267431,0,0.024856862,0.010071225,0,0,0,0,0,105.08372,0,4275.5338,20.14146621,351.5077627,0,0,0,0,0,0,0,0,0,0,0,0.064796232,7.045958325,60.44526305,3.882559461,15.57401349,0,1238.693446,0.007723273,0,0 +1760,0.002778491,0.097408883,0,0,2.127804105,0,0.024856862,0.010071225,0,0,0,0,0,105.04022,0,4273.2473,20.41679714,354.4182853,0,0,0,0,0,0,0,0,0,0,0,0.06602038,7.128048286,61.05172479,3.870426966,15.81906393,0,1250.820917,0.007723273,0,0 +1761,0.0030418,0.099200926,0,0,2.137756989,0,0.024856862,0.010071225,0,0,0,0,0,105.09143,0,4275.9395,20.45599017,354.7079679,0,0,0,0,0,0,0,0,0,0,0,0.067267654,7.080969808,60.9842272,3.947785545,15.69191588,0,1256.548122,0.007723273,0,0 +1762,0.003042907,0.101025937,0,0,2.101748109,0,0.024856862,0.010071225,0,0,0,0,0,105.08127,0,4275.4052,20.45168738,349.2496972,0,0,0,0,0,0,8.32E-08,0,0,1.51E-06,0,0.068538493,7.072547337,60.02708933,3.805606722,15.52593531,0,1235.176016,0.007723273,0,0 +1763,0.003044015,0.102884523,0,0,2.107029758,0,0.024856862,0.010071225,0,0,0,0,0,105.09332,0,4276.0386,20.54517934,350.0593349,0,0,0,0,0,0,6.68E-07,0,0,1.24E-05,0,0.06983334,7.067982584,60.12706627,3.846149431,15.52676249,0,1242.431334,0.007723273,0,0 +1764,0.003045122,0.104777302,0,0,2.071549227,0,0.024856862,0.010071225,0,0,0,0,0,105.1104,0,4276.9364,20.26091721,342.0446107,0,0,0,0,0,0,1.27E-06,0,0,2.50E-05,0,0.07115265,6.89874574,58.43835717,3.829003368,14.95869898,0,1212.823098,0.007723273,0,0 +1765,0.003046229,0.106704903,0,0,2.123600022,0,0.024856862,0.010071225,0,0,0,0,0,105.07293,0,4274.9668,20.919155,352.9327258,0,0,0,0,0,0,1.39E-06,0,0,3.03E-05,0,0.072496884,7.112382325,60.62945786,3.878155223,15.67992411,0,1250.725203,0.007723273,0,0 +1766,0.003396267,0.108667966,0,0,2.110459977,0,0.024856862,0.010071225,0,0,0,0,0,105.07758,0,4275.2111,20.8535919,349.380645,0,0,0,0,0,0,1.42E-06,0,0,3.44E-05,0,0.073866514,7.036296531,59.85878463,3.884852898,15.35883081,0,1244.142077,0.007723273,0,0 +1767,0.003397374,0.110667143,0,0,2.112460701,0,0.024856862,0.010071225,0,0,0,0,0,105.08566,0,4275.6359,20.99917946,349.616099,0,0,0,0,0,0,1.46E-06,0,0,3.84E-05,0,0.07526202,7.045382427,59.8910269,3.880476349,15.4005645,0,1243.308056,0.007723273,0,0 +1768,0.003398482,0.1127031,0,0,2.18313204,0,0.024856862,0.010071225,0,0,0,0,0,105.04673,0,4273.5893,21.65945211,362.6536848,0,0,0,0,0,0,1.49E-06,0,0,4.25E-05,0,0.07668389,7.223617821,62.36582555,4.039005154,16.0637302,0,1294.705423,0.007723273,0,0 +1769,0.003399589,0.114776512,0,0,2.137633742,0,0.024856862,0.010071225,0,0,0,0,0,105.0767,0,4275.165,21.49633535,355.0254185,0,0,0,0,0,0,1.53E-06,0,0,4.65E-05,0,0.078132622,7.157863703,60.95040361,3.914619863,15.73509479,0,1273.362221,0.007723273,0,0 +1770,0.003400696,0.116888069,0,0,2.139364739,0,0.024856862,0.010071225,0,0,0,0,0,105.04544,0,4273.5216,21.63439757,355.3605476,0,0,0,0,0,0,1.57E-06,0,0,5.06E-05,0,0.079608724,7.155978284,60.96602721,3.927122991,15.74271509,0,1277.49221,0.007723273,0,0 +1771,0.003768892,0.119038473,0,0,2.100909701,0,0.024856862,0.010071225,0,0,0,0,0,105.07227,0,4274.9318,21.4289211,347.8619883,0,0,0,0,0,0,1.60E-06,0,0,5.47E-05,0,0.081112713,7.069218405,59.42424033,3.843192573,15.32197739,0,1230.128239,0.007723273,0,0 +1772,0.003770005,0.121228438,0,0,2.087077541,0,0.024856862,0.010071225,0,0,0,0,0,105.08887,0,4275.8046,21.39461572,344.6134738,0,0,0,0,0,0,1.64E-06,0,0,5.87E-05,0,0.082645116,7.043230562,58.72495295,3.812980037,15.11418329,0,1217.836348,0.007723273,0,0 +1773,0.003771118,0.123458692,0,0,2.092755603,0,0.024856862,0.010071225,0,0,0,0,0,105.06952,0,4274.7874,21.59523139,345.7768091,0,0,0,0,0,0,1.67E-06,0,0,6.28E-05,0,0.084206469,7.104503735,58.91656885,3.795742519,15.20466379,0,1220.686645,0.007723273,0,0 +1774,0.003772231,0.125729977,0,0,2.154900741,0,0.024856862,0.010071225,0,0,0,0,0,105.0265,0,4272.5262,22.25970773,358.103585,0,0,0,0,0,0,1.71E-06,0,0,6.68E-05,0,0.08579732,7.347701469,61.31335787,3.892106055,15.87559318,0,1266.428616,0.007723273,0,0 +1775,0.003773344,0.128043046,0,0,2.148996597,0,0.024856862,0.010071225,0,0,0,0,0,105.05246,0,4273.8905,22.20096329,355.0471729,0,0,0,0,0,0,1.75E-06,0,0,7.09E-05,0,0.087418226,7.26964482,60.54083046,3.918102925,15.5891357,0,1250.604504,0.007723273,0,0 +1776,0.004161709,0.13039867,0,0,2.112143132,0,0.024856862,0.010071225,0,0,0,0,0,105.03944,0,4273.2061,22.14194213,348.8985525,0,0,0,0,0,0,1.78E-06,0,0,7.49E-05,0,0.089069754,7.261469977,59.3811448,3.777483547,15.37007702,0,1235.260121,0.007723273,0,0 +1777,0.004162822,0.132797629,0,0,2.170244784,0,0.024856862,0.010071225,0,0,0,0,0,105.05273,0,4273.9048,22.56871006,357.545361,0,0,0,0,0,0,1.82E-06,0,0,7.90E-05,0,0.090752483,7.355973763,60.89349007,3.937981414,15.67345753,0,1262.643552,0.007723273,0,0 +1778,0.004163935,0.135240723,0,0,2.198001402,0,0.024856862,0.010071225,0,0,0,0,0,105.04465,0,4273.48,22.85608093,362.7554135,0,0,0,0,0,0,1.85E-06,0,0,8.30E-05,0,0.092467003,7.434606067,61.78348695,4.021077007,15.89945625,0,1282.280293,0.007723273,0,0 +1779,0.004165048,0.137728763,0,0,2.159615777,0,0.024856862,0.010071225,0,0,0,0,0,105.03691,0,4273.0734,22.82063569,355.9261715,0,0,0,0,0,0,1.89E-06,0,0,8.71E-05,0,0.094213914,7.418773457,60.50081488,3.865645204,15.62745786,0,1253.809198,0.007723273,0,0 +1780,0.00416717,0.140262576,0,0,2.189267588,0,0.024856862,0.010071225,0,0,0,0,0,104.98817,0,4270.511,23.24616665,361.6140422,0,0,0,0,0,0,1.92E-06,0,0,9.10E-05,0,0.095993828,7.569429121,61.61859566,3.871147964,16.0183808,0,1274.797709,0.007723273,0,0 +1781,0.004659413,0.142843003,0,0,2.1894412,0,0.024856862,0.010071225,0,0,0,0,0,105.04236,0,4273.3596,23.24965548,360.0900539,0,0,0,0,0,0,1.96E-06,0,0,9.52E-05,0,0.097807369,7.505783353,61.19330647,3.920723923,15.80695227,0,1277.536252,0.007723273,0,0 +1782,0.004660532,0.145470903,0,0,2.160522701,0,0.024856862,0.010071225,0,0,0,0,0,105.03125,0,4272.7759,23.34175812,356.0465546,0,0,0,0,0,0,2.00E-06,0,0,9.92E-05,0,0.099655171,7.519625788,60.48572145,3.793838185,15.71282083,0,1261.050876,0.007723273,0,0 +1783,0.004662661,0.148147149,0,0,2.15072559,0,0.024856862,0.010071225,0,0,0,0,0,105.0436,0,4273.4248,23.37991679,354.2869243,0,0,0,0,0,0,2.03E-06,0,0,1.03E-04,0,0.101537883,7.496232273,60.10171272,3.788738178,15.60726047,0,1258.691216,0.007723273,0,0 +1784,0.00466378,0.150872629,0,0,2.140542212,0,0.024856862,0.010071225,0,0,0,0,0,105.05531,0,4274.0405,23.2940423,350.5694963,0,0,0,0,0,0,2.07E-06,0,0,1.07E-04,0,0.103456163,7.3811564,59.21225989,3.835360348,15.22814126,0,1241.091384,0.007723273,0,0 +1785,0.004666993,0.153648251,0,0,2.165839691,0,0.024856862,0.010071225,0,0,0,0,0,105.02817,0,4272.6136,23.80210554,356.8051254,0,0,0,0,0,0,2.10E-06,0,0,1.11E-04,0,0.105410684,7.538152323,60.49447936,3.821649192,15.73271148,0,1266.56815,0.007723273,0,0 +1786,0.00529538,0.156474937,0,0,2.158683485,0,0.024856862,0.010071225,0,0,0,0,0,105.02684,0,4272.5442,23.831995,354.2058773,0,0,0,0,0,0,2.14E-06,0,0,1.15E-04,0,0.107402131,7.491084254,59.91468241,3.826316215,15.46715712,0,1263.905903,0.007723273,0,0 +1787,0.005297508,0.159353625,0,0,2.185179294,0,0.024856862,0.010071225,0,0,0,0,0,105.03415,0,4272.9283,24.17652818,358.7933683,0,0,0,0,0,0,2.18E-06,0,0,1.19E-04,0,0.1094312,7.55517197,60.75335708,3.885107996,15.71033146,0,1281.331419,0.007723273,0,0 +1788,0.005298627,0.162285272,0,0,2.255223484,0,0.024856862,0.010071225,0,0,0,0,0,104.9922,0,4270.7227,24.85592892,371.3570923,0,0,0,0,0,0,2.21E-06,0,0,1.23E-04,0,0.111498603,7.730934741,63.12433047,4.038519355,16.34335434,0,1326.080725,0.007723273,0,0 +1789,0.005300755,0.165270854,0,0,2.207664632,0,0.024856862,0.010071225,0,0,0,0,0,105.0242,0,4272.405,24.71707284,363.4416446,0,0,0,0,0,0,2.25E-06,0,0,1.28E-04,0,0.113605064,7.663516243,61.63229238,3.911091424,16.00040861,0,1300.935055,0.007723273,0,0 +1790,0.005302883,0.168311362,0,0,2.216436996,0,0.024856862,0.010071225,0,0,0,0,0,104.99139,0,4270.6805,24.94220857,364.8802164,0,0,0,0,0,0,2.28E-06,0,0,1.32E-04,0,0.115751321,7.680254371,61.84599181,3.937203207,16.05674391,0,1304.800481,0.007723273,0,0 +1791,0.005920183,0.171407806,0,0,2.172583556,0,0.024856862,0.010071225,0,0,0,0,0,105.02128,0,4272.2515,24.77843217,356.6583862,0,0,0,0,0,0,2.32E-06,0,0,1.36E-04,0,0.117938125,7.556943543,60.2187392,3.848117366,15.61644988,0,1284.768804,0.007723273,0,0 +1792,0.006098811,0.174561216,0,0,2.161650793,0,0.024856862,0.010071225,0,0,0,0,0,105.04466,0,4273.4807,24.81889294,354.2515376,0,0,0,0,0,0,2.36E-06,0,0,1.40E-04,0,0.120166243,7.499155045,59.70568574,3.852168551,15.44666919,0,1279.936623,0.007723273,0,0 +1793,0.006105082,0.17777264,0,0,2.153273834,0,0.024856862,0.010071225,0,0,0,0,0,105.02605,0,4272.5025,25.03153141,353.3723093,0,0,0,0,0,0,2.39E-06,0,0,1.44E-04,0,0.122436456,7.518120739,59.5849395,3.798134648,15.47797954,0,1276.675891,0.007723273,0,0 +1794,0.006092419,0.181043144,0,0,2.213843116,0,0.024856862,0.010071225,0,0,0,0,0,104.98417,0,4270.301,25.76753778,365.721914,0,0,0,0,0,0,2.43E-06,0,0,1.48E-04,0,0.124749558,7.731535991,62.03822453,3.901984421,16.16525997,0,1323.391544,0.007723273,0,0 +1795,0.006095933,0.184373817,0,0,2.202692273,0,0.024856862,0.010071225,0,0,0,0,0,105.01093,0,4271.7076,25.77334281,362.1921227,0,0,0,0,0,0,2.46E-06,0,0,1.52E-04,0,0.127106359,7.626169221,61.24273214,3.919106621,15.88313195,0,1307.117791,0.007723273,0,0 +1796,0.006396386,0.187765764,0,0,2.153154616,0,0.024856862,0.010071225,0,0,0,0,0,104.99978,0,4271.1214,25.74058407,354.4783029,0,0,0,0,0,0,2.50E-06,0,0,1.56E-04,0,0.129507686,7.581863097,59.86424243,3.749609514,15.6283698,0,1286.414837,0.007723273,0,0 +1797,0.006712627,0.191220113,0,0,2.213475036,0,0.024856862,0.010071225,0,0,0,0,0,105.01623,0,4271.986,26.23006226,363.5482372,0,0,0,0,0,0,2.54E-06,0,0,1.60E-04,0,0.131954379,7.636302582,61.47137695,3.940974102,15.93865305,0,1322.1792,0.007723273,0,0 +1798,0.006990649,0.194738012,0,0,2.234056283,0,0.024856862,0.010070485,0,0,0,0,0,105.0081,0,4271.559,26.54644012,367.6501028,0,0,0,0,0,0,2.57E-06,0,0,1.64E-04,0,0.134447296,7.671017716,62.19763903,4.015700361,16.12667274,0,1344.494311,0.007723273,0,0 +1799,0.007363034,0.198320631,0,0,2.207292165,0,0.024856862,0.010071964,0,0,0,0,0,104.99068,0,4270.6431,26.70648817,363.4860469,0,0,0,0,0,0,2.61E-06,0,0,1.68E-04,0,0.13698731,7.67446285,61.4962302,3.882903388,16.03734279,0,1332.732765,0.007723273,0,0 +1800,0.007853248,0.201969159,0,0,2.215974055,0,0.024856862,0.010071225,0,0,0,0,0,104.95838,0,4268.9449,27.05634308,365.8466368,0,0,0,0,0,0,2.64E-06,0,0,1.72E-04,0,0.13957531,7.740645322,62.00320914,3.867691465,16.2421417,0,1351.401885,0.007723273,0,0 +1801,0.007792363,0.20568481,0,0,2.21940169,0,0.024856862,0.010071225,0,0,0,0,0,105.01099,0,4271.7107,27.12488718,364.9170684,0,0,0,0,0,0,2.68E-06,0,0,1.76E-04,0,0.142212204,7.701186978,61.66564779,3.921843763,16.06373322,0,1346.312669,0.007723273,0,0 +1802,0.010116776,0.209468818,0,0,2.202692661,0,0.024856862,0.010071225,0,0,0,0,0,104.99468,0,4270.8532,27.33978432,362.9627075,0,0,0,0,0,0,2.72E-06,0,0,1.80E-04,0,0.144898914,7.763054085,61.32615659,3.814905719,16.07582361,0,1365.792459,0.007723273,0,0 +1803,0.008763958,0.213322441,0,0,2.180015828,0,0.024856862,0.010071225,0,0,0,0,0,105.0108,0,4271.7009,27.32049985,358.65078,0,0,0,0,0,0,2.75E-06,0,0,1.84E-04,0,0.147636382,7.720863757,60.40434182,3.773697199,15.83103088,0,1340.023262,0.007723273,0,0 +1804,0.00956559,0.21724696,0,0,2.197298087,0,0.024856862,0.010071225,0,0,0,0,0,105.0121,0,4271.7691,27.46474997,359.528696,0,0,0,0,0,0,2.79E-06,0,0,1.88E-04,0,0.150425568,7.68708673,60.36470275,3.871473305,15.67624811,0,1347.990682,0.007723273,0,0 +1805,0.009351564,0.221243678,0,0,2.215042398,0,0.024856862,0.010071225,0,0,0,0,0,104.98963,0,4270.588,27.9507982,364.3037043,0,0,0,0,0,0,2.82E-06,0,0,1.92E-04,0,0.153267447,7.835162209,61.31991146,3.843518327,16.0941548,0,1367.021932,0.007723273,0,0 +1806,0.009786482,0.225313924,0,0,2.222822585,0,0.024856862,0.010071225,0,0,0,0,0,104.98239,0,4270.2074,28.13437245,364.3432293,0,0,0,0,0,0,2.86E-06,0,0,1.96E-04,0,0.156163016,7.843541453,61.22344968,3.877012285,15.95144317,0,1370.297233,0.007723273,0,0 +1807,0.010470139,0.229459052,0,0,2.239871982,0,0.024856862,0.010071225,0,0,0,0,0,104.99423,0,4270.8298,28.45865603,367.2349328,0,0,0,0,0,0,2.90E-06,0,0,2.00E-04,0,0.159113289,7.906227329,61.70646914,3.906741383,16.11756408,0,1389.725529,0.007723273,0,0 +1808,0.009785087,0.233680437,0,0,2.311936484,0,0.024856862,0.010071225,0,0,0,0,0,104.95199,0,4268.6094,29.18524117,380.035272,0,0,0,0,0,0,2.93E-06,0,0,2.04E-04,0,0.162119299,8.095303457,64.08195973,4.070358273,16.7315469,0,1425.575123,0.007723273,0,0 +1809,0.009793704,0.237979484,0,0,2.26744264,0,0.024856862,0.010071225,0,0,0,0,0,104.979,0,4270.0292,29.12865813,372.8486855,0,0,0,0,0,0,2.97E-06,0,0,2.08E-04,0,0.1651821,8.062766978,62.71002213,3.940068496,16.44016599,0,1403.131587,0.007723273,0,0 +1810,0.010412685,0.242357621,0,0,2.279523716,0,0.024856862,0.010071225,0,0,0,0,0,104.93988,0,4267.9729,29.42453242,374.7180119,0,0,0,0,0,0,3.00E-06,0,0,2.12E-04,0,0.168302763,8.107079152,62.97351665,3.9615916,16.52538808,0,1414.194561,0.007723273,0,0 +1811,0.011014901,0.246816304,0,0,2.252530236,0,0.024856862,0.010071225,0,0,0,0,0,104.96903,0,4269.505,29.40578756,369.2694863,0,0,0,0,0,0,3.04E-06,0,0,2.17E-04,0,0.171482384,8.026948341,61.829606,3.9187457,16.18886557,0,1403.686743,0.007723273,0,0 +1812,0.011395912,0.251357013,0,0,2.228006935,0,0.024856862,0.010071225,0,0,0,0,0,104.99029,0,4270.6225,29.4202985,364.5806875,0,0,0,0,0,0,3.07E-06,0,0,2.21E-04,0,0.174722074,7.965169636,60.85746997,3.875988658,15.92905063,0,1394.884132,0.007723273,0,0 +1813,0.011449081,0.255981258,0,0,2.231996859,0,0.024856862,0.010071225,0,0,0,0,0,104.97005,0,4269.5589,29.77847603,365.9138874,0,0,0,0,0,0,3.11E-06,0,0,2.25E-04,0,0.178022969,8.032995952,61.1361302,3.844088557,16.06491504,0,1400.325553,0.007723273,0,0 +1814,0.011703716,0.260690576,0,0,2.291579691,0,0.024856862,0.010071225,0,0,0,0,0,104.93884,0,4267.9182,30.54785186,377.9855417,0,0,0,0,0,0,3.14E-06,0,0,2.29E-04,0,0.181386226,8.255365792,63.49192823,3.946873452,16.71992349,0,1449.11988,0.007723273,0,0 +1815,0.012094117,0.265486531,0,0,2.287324694,0,0.024856862,0.010071225,0,0,0,0,0,104.94955,0,4268.4808,30.64433954,375.5806648,0,0,0,0,0,0,3.18E-06,0,0,2.33E-04,0,0.184813022,8.178894558,62.8715757,3.977998266,16.48749688,0,1442.834604,0.007723273,0,0 +1816,0.013382563,0.270370719,0,0,2.261022,0,0.024856862,0.010071225,0,0,0,0,0,104.93504,0,4267.7184,30.79985622,371.6298228,0,0,0,0,0,0,3.22E-06,0,0,2.37E-04,0,0.188304559,8.188247477,62.14643252,3.866008445,16.39503385,0,1449.517631,0.007723273,0,0 +1817,0.013970106,0.275344761,0,0,2.296180569,0,0.024856862,0.010071225,0,0,0,0,0,104.95336,0,4268.6815,31.19839541,376.4429441,0,0,0,0,0,0,3.25E-06,0,0,2.41E-04,0,0.191862058,8.220825384,62.94153101,3.981202576,16.51722865,0,1472.005827,0.007723273,0,0 +1818,0.014054847,0.280410312,0,0,2.335490105,0,0.024856862,0.010071225,0,0,0,0,0,104.94012,0,4267.9855,31.68760832,383.9142096,0,0,0,0,0,0,3.29E-06,0,0,2.45E-04,0,0.195486767,8.306817108,64.26768049,4.109295846,16.84964888,0,1503.330753,0.007723273,0,0 +1819,0.01412101,0.285569054,0,0,2.304129482,0,0.024856862,0.010071225,0,0,0,0,0,104.92235,0,4267.0511,31.84544135,378.3325838,0,0,0,0,0,0,3.32E-06,0,0,2.49E-04,0,0.199179954,8.302878859,63.25758927,3.96351919,16.66519821,0,1480.397209,0.007723273,0,0 +1820,0.014336733,0.290822702,0,0,2.321048766,0,0.024856862,0.010071225,0,0,0,0,0,104.88909,0,4265.3029,32.33339467,382.4197483,0,0,0,0,0,0,3.36E-06,0,0,2.53E-04,0,0.202942914,8.416077975,64.0766433,3.958562233,16.96356441,0,1500.127423,0.007723273,0,0 +1821,0.014562069,0.296173002,0,0,2.333483777,0,0.024856862,0.010071225,0,0,0,0,0,104.93899,0,4267.9261,32.52138863,382.8975341,0,0,0,0,0,0,3.40E-06,0,0,2.57E-04,0,0.206776965,8.396299171,63.98744909,4.029731628,16.86010032,0,1506.00016,0.007723273,0,0 +1822,0.015133379,0.301621733,0,0,2.302515118,0,0.024856862,0.010071225,0,0,0,0,0,104.92104,0,4266.9822,32.73451052,378.6708004,0,0,0,0,0,0,3.43E-06,0,0,2.61E-04,0,0.21068345,8.447852069,63.22724653,3.871133523,16.79629808,0,1499.477254,0.007723273,0,0 +1823,0.016038149,0.307170704,0,0,2.282471765,0,0.024856862,0.010071225,0,0,0,0,0,104.94096,0,4268.0293,32.75571509,374.3931813,0,0,0,0,0,0,3.47E-06,0,0,2.65E-04,0,0.214663737,8.395261064,62.26076437,3.846052063,16.53271228,0,1499.604752,0.007723273,0,0 +1824,0.016501009,0.31282176,0,0,2.310947811,0,0.024856862,0.010071225,0,0,0,0,0,104.93425,0,4267.6765,33.0519787,377.0407114,0,0,0,0,0,0,3.50E-06,0,0,2.69E-04,0,0.218719221,8.395833943,62.5634338,3.956577313,16.47072526,0,1512.912552,0.007723273,0,0 +1825,0.017222663,0.318576779,0,0,2.322703112,0,0.024856862,0.010071225,0,0,0,0,0,104.91652,0,4266.7449,33.52533882,380.3167498,0,0,0,0,0,0,3.54E-06,0,0,2.73E-04,0,0.222851322,8.516236489,63.18578955,3.919068065,16.80867752,0,1538.203336,0.007723273,0,0 +1826,0.01738223,0.324437675,0,0,2.320968834,0,0.024856862,0.010071225,0,0,0,0,0,104.90841,0,4266.3186,33.7481029,378.8222655,0,0,0,0,0,0,3.57E-06,0,0,2.77E-04,0,0.227061488,8.523620414,62.81594151,3.911604483,16.62077908,0,1531.982813,0.007723273,0,0 +1827,0.018639877,0.330406393,0,0,2.346337782,0,0.024856862,0.010071225,0,0,0,0,0,104.91515,0,4266.6729,34.15505001,382.4773392,0,0,0,0,0,0,3.61E-06,0,0,2.81E-04,0,0.231351194,8.585850324,63.38999011,3.962793591,16.79991923,0,1566.092214,0.007723273,0,0 +1828,0.018824746,0.336484919,0,0,2.420774153,0,0.024856862,0.010071225,0,0,0,0,0,104.87222,0,4264.4159,34.99912851,395.9754325,0,0,0,0,0,0,3.64E-06,0,0,2.85E-04,0,0.235721941,8.801495947,65.90535949,4.116354977,17.4805645,0,1618.020723,0.007723273,0,0 +1829,0.018664196,0.342675273,0,0,2.379376332,0,0.024856862,0.010071225,0,0,0,0,0,104.90025,0,4265.8895,35.01640513,389.1746282,0,0,0,0,0,0,3.68E-06,0,0,2.89E-04,0,0.240175262,8.767229394,64.57289824,4.000350816,17.19408165,0,1597.238302,0.007723273,0,0 +1830,0.024933734,0.348979511,0,0,2.403159831,0,0.024856862,0.010071225,0,0,0,0,0,104.8667,0,4264.1256,35.40215534,392.1065329,0,0,0,0,0,0,3.72E-06,0,0,2.93E-04,0,0.244712716,8.818806446,64.94076179,4.03843029,17.31425157,0,1705.903254,0.007723273,0,0 +1831,0.023660178,0.355399729,0,0,2.361347125,0,0.024856862,0.010071225,0,0,0,0,0,104.89174,0,4265.442,35.37418705,384.2012507,0,0,0,0,0,0,3.75E-06,0,0,2.97E-04,0,0.249335894,8.731507392,63.33682174,3.947409453,16.87772867,0,1661.03313,0.007723273,0,0 +1832,0.023685925,0.36193806,0,0,2.353863299,0,0.024856862,0.010071225,0,0,0,0,0,104.90924,0,4266.362,35.56272349,382.363398,0,0,0,0,0,0,3.79E-06,0,0,3.01E-04,0,0.254046413,8.712430009,62.87089656,3.946175053,16.73898675,0,1660.610583,0.007723273,0,0 +1833,0.024226693,0.368596678,0,0,2.356959381,0,0.024856862,0.010070485,0,0,0,0,0,104.89175,0,4265.4426,35.98083111,383.4537928,0,0,0,0,0,0,3.82E-06,0,0,3.05E-04,0,0.258845925,8.790922957,63.0695837,3.905335594,16.86449692,0,1673.874936,0.007723273,0,0 +1834,0.024702586,0.375377795,0,0,2.412445466,0,0.024856862,0.010071964,0,0,0,0,0,104.854,0,4263.4584,36.76106097,394.1429023,0,0,0,0,0,0,3.86E-06,0,0,3.09E-04,0,0.26373611,9.001420472,65.10499264,3.989061294,17.45428534,0,1721.269347,0.007723273,0,0 +1835,0.025273638,0.382283665,0,0,2.405456375,0,0.024856862,0.010071225,0,0,0,0,0,104.8698,0,4264.2887,36.88278973,390.5551392,0,0,0,0,0,0,3.90E-06,0,0,3.13E-04,0,0.268718682,8.925548286,64.23544317,3.998558037,17.17048679,0,1718.222125,0.007723273,0,0 +1836,0.029221069,0.389316584,0,0,2.404187956,0,0.024856862,0.010071225,0,0,0,0,0,104.84901,0,4263.1961,37.24729235,389.9786644,0,0,0,0,0,0,3.93E-06,0,0,3.17E-04,0,0.273795386,8.993015086,64.08016333,3.917445996,17.23500429,0,1783.083419,0.007723273,0,0 +1837,0.029260399,0.396478888,0,0,2.440210174,0,0.024856862,0.010071225,0,0,0,0,0,104.86946,0,4264.2707,37.69980678,394.7565038,0,0,0,0,0,0,3.97E-06,0,0,3.21E-04,0,0.278968001,9.027059824,64.82242714,4.040217213,17.35383524,0,1798.088197,0.007723273,0,0 +1838,0.030288693,0.403772957,0,0,2.477311746,0,0.024856862,0.010071225,0,0,0,0,0,104.85548,0,4263.5362,38.24210962,401.296187,0,0,0,0,0,0,4.00E-06,0,0,3.25E-04,0,0.284238338,9.122535895,65.94724657,4.142172855,17.64153847,0,1841.543139,0.007723273,0,0 +1839,0.031310557,0.411201217,0,0,2.452638138,0,0.024856862,0.010071225,0,0,0,0,0,104.83788,0,4262.6108,38.51117556,396.9116369,0,0,0,0,0,0,4.04E-06,0,0,3.29E-04,0,0.289608243,9.139608329,65.11131218,4.015311872,17.50517633,0,1843.080824,0.007723273,0,0 +1840,0.033542974,0.418766135,0,0,2.443877522,0,0.024856862,0.010071225,0,0,0,0,0,104.80755,0,4261.0163,38.88776194,395.8809162,0,0,0,0,0,0,4.07E-06,0,0,3.33E-04,0,0.295079598,9.211326299,64.92298176,3.92426914,17.57513248,0,1874.141828,0.007723273,0,0 +1841,0.034601229,0.426470225,0,0,2.490489852,0,0.024856862,0.010071225,0,0,0,0,0,104.84789,0,4263.137,39.38162317,402.3727418,0,0,0,0,0,0,4.11E-06,0,0,3.37E-04,0,0.30065432,9.249453202,65.94544518,4.089445548,17.74554357,0,1916.264207,0.007723273,0,0 +1842,0.03663998,0.434316049,0,0,2.449170469,0,0.024856862,0.010070485,0,0,0,0,0,104.84034,0,4262.7403,39.61872888,396.9951221,0,0,0,0,0,0,4.14E-06,0,0,3.41E-04,0,0.30633436,9.261381852,64.92167359,3.936168061,17.59096172,0,1931.462508,0.007723273,0,0 +1843,0.037450386,0.442306214,0,0,2.411136271,0,0.024856862,0.010071964,0,0,0,0,0,104.85726,0,4263.6297,39.65326382,389.7367809,0,0,0,0,0,0,4.18E-06,0,0,3.45E-04,0,0.31212171,9.185852612,63.42406091,3.846066212,17.21821832,0,1929.660398,0.007723273,0,0 +1844,0.039846973,0.450443374,0,0,2.443825896,0,0.024856862,0.010071225,0,0,0,0,0,104.85117,0,4263.3094,40.04426499,392.7074417,0,0,0,0,0,0,4.22E-06,0,0,3.49E-04,0,0.318018395,9.178913526,63.7624543,3.965309781,17.1801219,0,1991.445647,0.007723273,0,0 +1845,0.043792129,0.458730235,0,0,2.471371875,0,0.024856862,0.010071225,0,0,0,0,0,104.83257,0,4262.3319,40.66967667,397.850056,0,0,0,0,0,0,4.25E-06,0,0,3.53E-04,0,0.324026483,9.307905911,64.68556723,3.957876345,17.5993633,0,2080.381092,0.007723273,0,0 +1846,0.044197374,0.46716955,0,0,2.471198742,0,0.024856862,0.010071225,0,0,0,0,0,104.82423,0,4261.8933,40.97519975,395.9082622,0,0,0,0,0,0,4.29E-06,0,0,3.57E-04,0,0.330148076,9.302498358,64.24405153,3.94954154,17.39887857,0,2072.290434,0.007723273,0,0 +1847,0.047464619,0.475764124,0,0,2.521115228,0,0.024856862,0.010071225,0,0,0,0,0,104.82758,0,4262.0693,41.61647168,402.9851575,0,0,0,0,0,0,4.32E-06,0,0,3.61E-04,0,0.336385321,9.401962019,65.44362075,4.0405661,17.76051419,0,2154.230603,0.007723273,0,0 +1848,0.047117807,0.484516814,0,0,2.5773718,1.49E-05,0.024856862,0.010070485,0,0,0,0,0,104.78829,0,4260.004,42.44947063,413.5582929,0,0,0,0,0,0,4.36E-06,0,0,3.65E-04,0,0.342740401,9.573238567,67.39824375,4.1550565,18.30069373,0,2204.416735,0.007723273,0,0 +1849,0.048851442,0.493430528,0,0,2.552394089,1.20E-04,0.024856862,0.010071964,0,0,0,0,0,104.81678,0,4261.5016,42.63396461,408.9399341,0,0,0,0,0,0,4.39E-06,0,0,3.69E-04,0,0.349215542,9.543358834,66.42707154,4.087020956,18.07478627,0,2224.89572,0.007723273,0,0 +1850,0.051384895,0.502508228,0,0,2.571124479,2.25E-04,0.024856862,0.010071225,0,0,0,0,0,104.93295,0,4267.6083,43.14236365,411.4628743,0,0,0,0,0,0,4.44E-06,0,0,3.74E-04,0,0.355813014,9.604162557,66.78304875,4.096904208,18.22682479,0,2275.776711,0.007723273,0,0 +1851,0.051562308,0.494656367,0,0,2.526692589,2.41E-04,0.024856862,0.010071225,0,0,0,0,0,104.96457,0,4269.2706,43.15191371,402.2448153,0,0,0,0,0,0,4.48E-06,0,0,3.78E-04,0,0.363793441,9.478471328,64.95004659,4.010397678,17.72630049,0,2256.815147,0.007723273,0,0 +1852,0.05364238,0.550685869,0,0,2.50763416,2.42E-04,0.024856862,0.010071225,0,0,0,0,0,104.98199,0,4270.1861,43.34412933,397.49852,0,0,0,0,0,0,4.51E-06,0,0,3.83E-04,0,0.372424224,9.424520247,63.95789986,3.958451611,17.47926155,0,2277.634405,0.007723273,0,0 +1853,0.055952349,0.548631086,0,0,2.527811743,2.43E-04,0.024856862,0.010071225,0,0,0,0,0,104.9693,0,4269.5191,43.88435963,400.3388041,0,0,0,0,0,0,4.55E-06,0,0,3.87E-04,0,0.380109709,9.493187126,64.44555418,3.968326235,17.65848988,0,2326.420616,0.007723273,0,0 +1854,0.065895655,0.546739774,0,0,2.610048543,2.44E-04,0.024856862,0.010071225,0,0,0,0,0,104.9226,0,4267.0641,44.80907906,413.3991315,0,0,0,0,0,0,4.58E-06,0,0,3.90E-04,0,0.388118038,9.708926054,66.79469522,4.086374133,18.34043133,0,2535.158195,0.007723273,0,0 +1855,0.066560595,0.543758287,0,0,2.593264313,2.45E-04,0.024856862,0.010070485,0,0,0,0,0,104.95064,0,4268.5385,44.9570539,408.1104539,0,0,0,0,0,0,4.62E-06,0,0,3.95E-04,0,0.395154931,9.60821845,65.65156398,4.071657216,17.9916486,0,2531.882071,0.007723273,0,0 +1856,0.071195717,0.549725266,0,0,2.573430007,2.47E-04,0.024856862,0.010071964,0,0,0,0,0,104.92886,0,4267.3934,45.32147323,404.8549167,0,0,0,0,0,0,4.65E-06,0,0,3.98E-04,0,0.401213616,9.648967408,65.0425347,3.941501863,17.95411805,0,2598.32335,0.007723273,0,0 +1857,0.071893947,0.555060913,0,0,2.636452577,2.49E-04,0.024856862,0.010071225,0,0,0,0,0,104.94976,0,4268.4922,46.01300694,414.6731918,0,0,0,0,0,0,4.69E-06,0,0,4.03E-04,0,0.40752619,9.717987449,66.72779877,4.159141007,18.29156565,0,2646.996287,0.007723273,0,0 +1858,0.07302816,0.55973691,0,0,2.660122642,2.51E-04,0.024856862,0.010071225,0,0,0,0,0,104.93987,0,4267.9722,46.54057729,419.0140236,0,0,0,0,0,0,4.73E-06,0,0,4.07E-04,0,0.412517456,9.773872717,67.47060376,4.240872485,18.4792763,0,2684.853418,0.007723273,0,0 +1859,0.077852113,0.567385369,0,0,2.64820325,2.53E-04,0.024856862,0.010071225,0,0,0,0,0,104.91443,0,4266.635,46.94962615,416.2997485,0,0,0,0,0,0,4.76E-06,0,0,4.10E-04,0,0.416997408,9.815633788,66.95694734,4.119710729,18.44950598,0,2765.351504,0.007723273,0,0 +1860,0.08580579,0.57190571,0,0,2.648404731,2.55E-04,0.024856862,0.010810676,0,0,0,0,0,104.89112,0,4265.4096,47.37614023,416.0639966,0,0,0,0,0,0,4.79E-06,0,0,4.14E-04,0,0.420752578,9.868462594,66.84953493,4.060976263,18.520468,0,2898.377784,0.007723273,0,0 +1861,0.090437572,0.583095346,0,0,2.670268663,2.57E-04,0.024856862,0.010810691,0,0,0,0,0,104.94268,0,4268.1198,48.2346867,417.2441372,0,0,0,0,0,0,4.83E-06,0,0,4.19E-04,0,0.42335986,9.857135646,66.88575551,4.161212988,18.43711983,0,2971.278843,0.007723273,0,0 +1862,0.091865591,0.522956563,0,0,2.648564983,2.60E-04,0.024856862,0.010071254,0,0,0,0,0,104.93302,0,4267.612,49.13056212,414.1628066,0,0,0,0,0,0,4.87E-06,0,0,4.23E-04,0,0.425968395,9.918881972,66.35896016,4.042449359,18.41589321,0,2976.388043,0.007723273,0,0 +1863,0.097488554,0.523134297,0,0,2.629269514,2.62E-04,0.024856862,0.010071254,0,0,0,0,0,104.9509,0,4268.552,49.71022253,408.1224194,0,0,0,0,0,0,4.91E-06,0,0,4.27E-04,0,0.428432683,9.868665854,65.0096354,3.971519356,18.09141101,0,3064.446907,0.007723273,0,0 +1864,0.104725139,0.523481383,0,0,2.667755634,2.65E-04,0.024856862,0.010071254,0,0,0,0,0,104.94467,0,4268.2247,50.66032473,411.3310643,0,0,0,0,0,0,4.94E-06,0,0,4.31E-04,0,0.431014196,9.887134077,65.39906664,4.087458726,18.0938173,0,3193.218259,0.007723273,0,0 +1865,0.110936319,0.524250384,0,0,2.720201066,2.68E-04,0.024856862,0.010810706,0,0,0,0,0,104.93017,0,4267.4623,51.9800751,420.489005,0,0,0,0,0,0,4.98E-06,0,0,4.35E-04,0,0.433438772,10.07353478,67.10347351,4.157661467,18.66656838,0,3327.080176,0.007723273,0,0 +1866,0.114738508,0.524386363,0,0,2.710298337,2.71E-04,0.024856862,0.01081072,0,0,0,0,0,104.92398,0,4267.1368,52.74699293,417.1011849,0,0,0,0,0,0,5.01E-06,0,0,4.39E-04,0,0.435744776,10.06454912,66.37528156,4.133671178,18.39468019,0,3388.258078,0.007723273,0,0 +1867,0.12258204,0.522876455,0,0,2.761022671,2.74E-04,0.024856862,0.010070544,0,0,0,0,0,104.93094,0,4267.5026,53.94102178,424.2969753,0,0,0,0,0,0,5.05E-06,0,0,4.43E-04,0,0.438210649,10.1891331,67.66026449,4.231180961,18.76835617,0,3565.435535,0.007723273,0,0 +1868,0.125609442,0.521415398,0,0,2.825140562,2.77E-04,0.024856862,0.010072023,0,0,0,0,0,104.89186,0,4265.4483,55.28767356,434.9302283,0,0,0,0,0,0,5.08E-06,0,0,4.47E-04,0,0.441434256,10.37220092,69.64729381,4.363304735,19.30124757,0,3668.308732,0.007723273,0,0 +1869,0.133291522,0.519770898,0,0,2.785004317,2.81E-04,0.024856862,0.010810735,0,0,0,0,0,104.93014,0,4267.4609,55.83359728,426.4036167,0,0,0,0,0,0,5.12E-06,0,0,4.51E-04,0,0.443908266,10.31106127,67.92949559,4.245329954,18.88882504,0,3791.462745,0.007723273,0,0 +1870,0.136674384,0.51867186,0,0,2.831200782,2.84E-04,0.024856862,0.01081075,0,0,0,0,0,104.89317,0,4265.5174,56.99659231,433.2287624,0,0,0,0,0,0,5.15E-06,0,0,4.55E-04,0,0.446639961,10.44102397,69.12187694,4.32346865,19.25812075,0,3887.529335,0.007723273,0,0 +1871,0.145249161,0.538815215,0,0,2.797830347,2.88E-04,0.024856862,0.010071314,0,0,0,0,0,104.92871,0,4267.3856,57.57401422,425.1606513,0,0,0,0,0,0,5.19E-06,0,0,4.59E-04,0,0.454335934,10.3694977,67.42862358,4.269404037,18.76177377,0,4016.032279,0.007723273,0,0 +1872,0.160346513,0.624237802,0,0,2.771292694,2.92E-04,0.024856862,0.010810765,0,0,0,0,0,104.95075,0,4268.5441,58.18710545,417.7442734,0,0,0,0,0,0,5.23E-06,0,0,4.63E-04,0,0.470862622,10.33038424,65.84553711,4.178709817,18.36534165,0,4250.256916,0.007723273,0,0 +1873,0.170095482,0.635197776,0,0,2.841633848,2.96E-04,0.024856862,0.01081078,0,0,0,0,0,104.93223,0,4267.5705,59.62016165,429.280289,0,0,0,0,0,0,5.26E-06,0,0,4.67E-04,0,0.49389425,10.56453512,67.99437045,4.309987324,18.9372989,0,4473.449628,0.007723273,0,0 +1874,0.161012643,0.642458922,0,0,2.86805891,3.00E-04,0.024856862,0.010810794,0,0,0,0,0,104.88493,0,4265.0843,60.88850035,435.80418,0,0,0,0,0,0,5.30E-06,0,0,4.71E-04,0,0.521735812,10.75161101,69.34908007,4.369596918,19.30481072,0,4382.176552,0.007723273,0,0 +1875,0.173259068,0.650321509,0,0,2.833489105,3.05E-04,0.024856862,0.010810809,0,0,0,0,0,104.93101,0,4267.5065,61.4471703,426.8934955,0,0,0,0,0,0,5.33E-06,0,0,4.75E-04,0,0.552163614,10.66354523,67.4820886,4.311546236,18.75387609,0,4552.510356,0.007723273,0,0 +1876,0.175938232,0.65804039,0,0,2.843125267,3.09E-04,0.024856862,0.010810824,0,0,0,0,0,104.90175,0,4265.968,62.60294811,429.4805477,0,0,0,0,0,0,5.37E-06,0,0,4.79E-04,0,0.58288316,10.83189303,68.07266489,4.273649915,19.00214066,0,4640.322706,0.007723273,0,0 +1877,0.179825348,0.664694086,0,0,2.881579173,3.14E-04,0.024856862,0.010810839,0,0,0,0,0,104.92824,0,4267.3608,63.64524259,434.060346,0,0,0,0,0,0,5.41E-06,0,0,4.83E-04,0,0.612226706,10.8970216,68.77838073,4.413505724,19.0890591,0,4762.604755,0.007723273,0,0 +1878,0.180776983,0.671585762,0,0,2.905036494,3.19E-04,0.024856862,0.010810853,0,0,0,0,0,104.92472,0,4267.1759,64.71120383,437.9599498,0,0,0,0,0,0,5.44E-06,0,0,4.87E-04,0,0.637718424,10.99894534,69.46979574,4.503130841,19.22817131,0,4806.316495,0.007723273,0,0 +1879,0.193175438,0.678615294,0,0,2.92925864,3.23E-04,0.024856862,0.010810868,0,0,0,0,0,104.88028,0,4264.8396,65.90279841,440.8517591,0,0,0,0,0,0,5.47E-06,0,0,4.91E-04,0,0.658926777,11.18150569,70.08572002,4.447158396,19.48731539,0,5054.634873,0.007723273,0,0 +1880,0.219340005,0.684857424,0,0,2.921172062,3.29E-04,0.024856862,0.010810144,0,0,0,0,0,104.88174,0,4264.9162,66.6649843,437.3657275,0,0,0,0,0,0,5.51E-06,0,0,4.95E-04,0,0.672777776,11.21057035,69.18788119,4.386751757,19.32682128,0,5476.691841,0.007723273,0,0 +1881,0.22522318,0.722626203,0,0,2.962877226,3.34E-04,0.024856862,0.011551088,0,0,0,0,0,104.92914,0,4267.4079,67.70670095,440.9737248,0,0,0,0,0,0,5.55E-06,0,0,4.99E-04,0,0.680636704,11.27474846,69.70896889,4.531822011,19.32716624,0,5655.562653,0.007723273,0,0 +1882,0.236948997,0.674378608,0,0,2.944345851,3.39E-04,0.024856862,0.011550379,0,0,0,0,0,104.92759,0,4267.3266,68.57787524,436.0786301,0,0,0,0,0,0,5.59E-06,0,0,5.04E-04,0,0.689255681,11.34322096,68.75016749,4.409841205,19.15816229,0,5878.580768,0.007723273,0,0 +1883,0.250894677,0.681454028,0,0,2.918084088,3.45E-04,0.024856862,0.010810957,0,0,0,0,0,104.95902,0,4268.979,69.1859791,428.2212034,0,0,0,0,0,0,5.62E-06,0,0,5.08E-04,0,0.695872552,11.30107278,67.06254476,4.344707595,18.70936137,0,6136.750815,0.007723273,0,0 +1884,0.252849902,0.684683542,0,0,2.97815874,3.50E-04,0.024856862,0.010810972,0,0,0,0,0,104.93535,0,4267.7345,70.48060515,436.5183492,0,0,0,0,0,0,5.66E-06,0,0,5.12E-04,0,0.70169045,11.46377857,68.59402326,4.507763748,19.00988998,0,6243.347605,0.007723273,0,0 +1885,0.254442991,0.690863781,0,0,2.987658653,3.56E-04,0.024856862,0.011550438,0,0,0,0,0,104.93798,0,4267.8727,71.60546241,438.1415385,0,0,0,0,0,0,5.69E-06,0,0,5.16E-04,0,0.707890871,11.60315357,68.94977818,4.492846371,19.20686906,0,6294.938313,0.007723273,0,0 +1886,0.258326127,0.691934912,0,0,3.000148376,3.62E-04,0.024856862,0.011550467,0,0,0,0,0,104.9357,0,4267.7531,72.58254388,437.7333269,0,0,0,0,0,0,5.73E-06,0,0,5.20E-04,0,0.712632779,11.67579747,68.86926284,4.534738954,19.06781958,0,6353.027294,0.007723273,0,0 +1887,0.270973326,0.691885463,0,0,3.044590075,3.68E-04,0.024856862,0.011550497,0,0,0,0,0,104.94903,0,4268.4538,73.77743063,443.1077381,0,0,0,0,0,0,5.77E-06,0,0,5.24E-04,0,0.71821666,11.82565523,69.79403942,4.618994874,19.32845364,0,6605.766965,0.007723273,0,0 +1888,0.299024069,0.691539784,0,0,3.123484052,3.74E-04,0.024856862,0.011550526,0,0,0,0,0,104.91459,0,4266.6433,75.11035553,452.502308,0,0,0,0,0,0,5.80E-06,0,0,5.28E-04,0,0.724224235,12.04162329,71.42723744,4.741896917,19.78574643,0,7182.264809,0.007723273,0,0 +1889,0.29939589,0.691049208,0,0,3.104668338,3.81E-04,0.024856862,0.011550556,0,0,0,0,0,104.95877,0,4268.9657,75.92960019,448.6908696,0,0,0,0,0,0,5.84E-06,0,0,5.32E-04,0,0.730764112,12.07532791,70.65718772,4.727164288,19.55277705,0,7178.592239,0.007723273,0,0 +1890,0.32528597,0.68776294,0,0,3.159194949,3.87E-04,0.024856862,0.011550586,0,0,0,0,0,104.9317,0,4267.5425,77.07862319,453.8990323,0,0,0,0,0,0,5.87E-06,0,0,5.36E-04,0,0.755661554,12.22188071,71.47659717,4.807916688,19.77806486,0,7728.431301,0.007723273,0,0 +1891,0.340453909,0.684411407,0,0,3.125180696,3.94E-04,0.024856862,0.011550615,0,0,0,0,0,104.97344,0,4269.7366,77.68229292,444.3827318,0,0,0,0,0,0,5.91E-06,0,0,5.40E-04,0,0.766996007,12.1596402,69.53172191,4.743306066,19.19967303,0,8025.900173,0.007723273,0,0 +1892,0.342946092,0.69893132,0,0,3.110528365,4.01E-04,0.024856862,0.011550645,0,0,0,0,0,104.99082,0,4270.6504,78.54558089,439.808659,0,0,0,0,0,0,5.95E-06,0,0,5.45E-04,0,0.778272468,12.19914652,68.66391959,4.695682305,18.94952176,0,8166.143155,0.007723273,0,0 +1893,0.33787039,0.699713125,0,0,3.125430895,4.08E-04,0.024856862,0.012290126,0,0,0,0,0,104.97994,0,4270.0783,79.81501329,443.3506558,0,0,0,0,0,0,5.99E-06,0,0,5.49E-04,0,0.789729823,12.37945386,69.48705802,4.715239733,19.1784562,0,8120.644735,0.007723273,0,0 +1894,0.351124504,0.715581396,0,0,3.205110618,4.15E-04,0.024856862,0.01229017,0,0,0,0,0,104.93101,0,4267.5063,81.38345626,456.6960325,0,0,0,0,0,0,6.02E-06,0,0,5.52E-04,0,0.802004637,12.66238559,71.90804381,4.888948538,19.83612848,0,8411.388473,0.007723273,0,0 +1895,0.371712037,0.720945096,0,0,3.216163845,4.22E-04,0.024856862,0.011550763,0,0,0,0,0,104.96751,0,4269.4251,82.23116014,453.551885,0,0,0,0,0,0,6.06E-06,0,0,5.57E-04,0,0.812887633,12.67244423,71.15178658,4.919171254,19.52250048,0,8846.66701,0.007723273,0,0 +1896,0.383674818,0.723440788,0,0,3.170768747,4.30E-04,0.024856862,0.012290244,0,0,0,0,0,104.96751,0,4269.4252,83.00005426,444.0944278,0,0,0,0,0,0,6.09E-06,0,0,5.61E-04,0,0.824102858,12.72059369,69.42267706,4.733994615,19.17728772,0,9089.598433,0.007723273,0,0 +1897,0.401981164,0.725878271,0,0,3.268702112,4.37E-04,0.024856862,0.012290288,0,0,0,0,0,104.99693,0,4270.9718,84.39253635,456.4122055,0,0,0,0,0,0,6.13E-06,0,0,5.65E-04,0,0.834637127,12.8902171,71.5467325,5.026760132,19.58218288,0,9520.393854,0.007723273,0,0 +1898,0.42330421,0.72837657,0,0,3.296870259,4.45E-04,0.02485618,0.012290333,0,0,0,0,0,105.01512,0,4271.9281,85.36127162,456.6037674,0,0,0,0,0,0,6.17E-06,0,0,5.69E-04,0,0.844305316,12.95906823,71.45665952,5.098029535,19.50168111,0,10010.09583,0.007723236,0,0 +1899,0.463317192,0.728556158,0,0,3.355831345,4.86E-04,0.024857703,0.012290377,0,0,0,0,0,104.97653,0,4269.8993,86.70543387,462.1035994,0,0,0,0,0,0,6.20E-06,0,0,5.73E-04,0,0.853783366,13.20706844,72.46072256,5.094979384,19.86870993,0,10838.11345,0.007723233,0,0 +1900,0.488155862,0.73057236,0,0,3.361821037,0.002392668,0.024856437,0.028558348,0,0,0,0,0,104.98481,0,4270.3344,87.61328845,459.5444669,0,0,0,0,0,0,6.24E-06,0,0,5.77E-04,0,0.863169654,13.27666955,71.90656631,5.089168388,19.75078793,0,11348.7275,0.007723268,0,0 +1901,0.504485719,0.796906313,0,0,3.382952935,0.004820097,0.024857442,0.047784449,0,0,0,0,0,105.04131,0,4273.3046,88.39116711,457.6168305,0,0,0,0,0,0,6.28E-06,0,0,5.82E-04,0,0.871405959,13.3014099,71.63263161,5.202144138,19.48762217,0,11775.2552,0.007723268,0,0 +1902,0.519345117,0.800278636,0,0,3.38154147,0.005778122,0.024856062,0.050743008,0,0,0,0,0,105.04898,0,4273.708,89.26282464,455.0261768,0,0,0,0,0,0,6.32E-06,0,0,5.86E-04,0,0.881215447,13.41248803,71.24149846,5.179688037,19.3580615,0,12100.54877,0.007723268,0,0 +1903,0.566454621,0.829571146,0,0,3.389386332,0.006957613,0.024857979,0.05591998,0,0,0,0,0,105.09555,0,4276.1561,89.89074057,449.9625304,0,0,0,0,0,0,6.36E-06,0,0,5.90E-04,0,0.890660734,13.43752052,70.25376393,5.190103458,19.03059788,0,13044.15816,0.007723268,0,0 +1904,0.575152133,0.856100074,0,0,3.4640583,0.009436339,0.024855289,0.068491568,0,0,0,0,0,105.07939,0,4275.3063,91.35674943,462.621765,0,0,0,0,0,0,6.39E-06,0,0,5.94E-04,0,0.900998672,13.7314717,72.88437625,5.400226563,19.65611973,0,13274.43719,0.007723268,0,0 +1905,0.612296247,0.883090418,0,0,3.525334738,0.013412831,0.024859105,0.087718467,0,0,0,0,0,105.08907,0,4275.8152,92.40132432,467.4401288,0,0,0,0,0,0,6.43E-06,0,0,5.99E-04,0,0.911796751,13.85510547,73.70973522,5.570897784,19.75296716,0,14100.97838,0.007723268,0,0 +1906,0.644276357,0.913945895,0,0,3.54932448,0.018196454,0.024853655,0.11138246,0,0,0,0,0,105.10645,0,4276.7286,93.24998316,466.4356479,0,0,0,0,0,0,6.47E-06,0,0,6.03E-04,0,0.922864309,13.95964537,73.46173851,5.607842107,19.60693136,0,14766.45012,0.007723268,0,0 +1907,0.726915977,0.922997028,0,0,3.674457368,0.016966195,0.025812945,0.10398923,0,0,0,0,0,105.14627,0,4278.822,94.56080194,480.3174564,0,0,0,0,0,0,6.51E-06,0,0,6.07E-04,0,0.933557019,14.21677499,76.00444514,5.92575152,20.14449075,0,16264.98721,0.007723268,0,0 +1908,0.703232591,0.932378464,0,0,3.67587664,0.021404879,0.029231937,0.12765503,0,0,0,0,0,105.12414,0,4277.6586,95.71237193,482.582634,0,0,0,0,0,0,6.54E-06,0,0,6.11E-04,0,0.943978146,14.40742286,76.856238,5.975251674,20.34218955,0,15590.71312,0.007723268,0,0 +1909,0.7293531,0.939463987,0,0,3.690048662,0.036714367,0.765086,0.21121463,0,0,0,0,0,105.16533,0,4279.824,96.4666946,480.6894688,0,0,0,0,0,0,6.58E-06,0,0,6.16E-04,0,0.954146693,14.46573428,76.4408771,6.041715332,20.10967131,0,16371.00547,0.007723268,0,0 +1910,0.765726395,0.945592087,0,0,3.767608107,0.042342327,1.0366888,0.24301505,0,0,0,0,0,105.14442,0,4278.7248,97.77187103,491.4713622,0,0,0,0,0,0,6.62E-06,0,0,6.20E-04,0,0.964867509,14.73060447,78.48124343,6.225241543,20.6023284,0,17123.07052,0.007723268,0,0 +1911,0.781014654,0.887403675,0,0,3.725917532,0.047217079,0.55672031,0.27037941,0,0,0,0,0,105.20214,0,4281.7592,98.42938116,482.3736484,0,0,0,0,0,0,6.66E-06,0,0,6.24E-04,0,0.976172007,14.67937454,76.73370569,6.205453711,20.00760743,0,17244.18549,0.007723268,0,0 +1912,0.819966191,0.85083987,0,0,3.709100468,0.055977137,1.3372385,0.31844894,0,0,0,0,0,105.23472,0,4283.4718,99.26614632,477.9889215,0,0,0,0,0,0,6.70E-06,0,0,6.29E-04,0,0.99242033,14.7136648,75.83160819,6.219463911,19.68089243,0,17989.19691,0.007723268,0,0 +1913,0.88953397,0.82034848,0,0,3.787939036,0.05934571,2.7874772,0.33694139,0,0,0,0,0,105.25437,0,4284.5046,100.6125584,488.2676035,0,0,0,0,0,0,6.74E-06,0,0,6.33E-04,0,1.011440097,14.92180765,77.5799616,6.45387962,20.00732869,0,19072.75319,0.007723268,0,0 +1914,0.811491369,0.809204505,0,0,3.764418792,0.064801984,4.5655912,0.36726542,0,0,0,0,0,105.19867,0,4281.5767,102.2840587,494.4978826,0,0,0,0,0,0,6.77E-06,0,0,6.36E-04,0,1.032129514,15.24149746,79.77807343,6.499176733,20.59248109,0,17594.43406,0.007723268,0,0 +1915,0.802991659,0.797401958,0,0,3.722337783,0.084000629,6.2098372,0.47153519,0,0,0,0,0,105.2716,0,4285.4105,103.0579197,484.2476849,0,0,0,0,0,0,6.81E-06,0,0,6.41E-04,0,1.054619583,15.23213103,78.35040062,6.482772073,20.06142458,0,17573.11604,0.007723268,0,0 +1916,0.86533079,0.799710226,0,0,3.744207069,0.10465075,5.9968917,0.58467971,0,0,0,0,0,105.29863,0,4286.831,104.0889435,482.954266,0,0,0,0,0,0,6.85E-06,0,0,6.46E-04,0,1.077791382,15.34284718,78.27985155,6.601680858,19.90829861,0,19065.48428,0.007723268,0,0 +1917,0.896621585,0.802745574,0,0,3.826396856,0.11034348,5.1585271,0.61870744,0,0,0,0,0,105.37275,0,4290.7275,105.4397415,492.9600448,0,0,0,0,0,0,6.89E-06,0,0,6.51E-04,0,1.100255613,15.500365,80.45481807,7.003710361,20.17756104,0,19906.99893,0.007723268,0,0 +1918,0.887395559,0.80603585,0,0,3.83059738,0.10461425,4.2721672,0.58914082,0,0,0,0,0,105.37311,0,4290.7462,106.7459316,496.2420731,0,0,0,0,0,0,6.93E-06,0,0,6.55E-04,0,1.121226709,15.70439103,81.61294814,7.118191256,20.36895158,0,19743.24497,0.007723268,0,0 +1919,0.780860402,0.811159148,0,0,3.722641135,0.10155164,3.196035,0.57214502,0,0,0,0,0,105.33647,0,4288.8202,108.095107,490.9794171,0,0,0,0,0,0,6.96E-06,0,0,6.59E-04,0,1.140233478,15.91565271,81.67724386,6.926922673,20.36863821,0,16994.78687,0.007723268,0,0 +1920,0.903060101,0.813518455,0,0,3.813010121,0.071874804,4.0059497,0.41169313,0,0,0,0,0,105.40157,0,4292.2427,109.1336385,498.8745999,0,0,0,0,0,0,7.01E-06,0,0,6.64E-04,0,1.157633765,16.03665614,82.96992111,7.318815146,20.4023951,0,18802.69892,0.007723268,0,0 +1921,0.793835864,0.861299333,0,0,3.661222702,0.05599481,6.3575755,0.32444592,0,0,0,0,0,105.42979,0,4293.7261,109.809348,486.6136242,0,0,0,0,0,0,7.05E-06,0,0,6.68E-04,0,1.173417685,16.0101613,81.18725519,7.146950074,19.84610877,0,16049.70593,0.007723268,0,0 +1922,0.843896663,0.853369204,0,0,3.658333723,0.10093674,7.5196689,0.56921203,0,0,0,0,0,105.47367,0,4296.0327,110.4858104,484.8273418,0,0,0,0,0,0,7.09E-06,0,0,6.73E-04,0,1.188779372,16.07300912,80.53069431,7.252038815,19.4742784,0,16950.896,0.007723268,0,0 +1923,0.959559001,0.86148441,0,0,3.88124621,0.13753371,8.1995609,0.77479139,0,0,0,0,0,105.54539,0,4299.8026,112.2535641,514.2343951,0,0,0,0,0,0,7.13E-06,0,0,6.78E-04,0,1.205120978,16.4693053,86.27583424,8.013836332,20.41782521,0,19723.67202,0.007723268,0,0 +1924,0.970359441,0.867663331,0,0,3.774809016,0.14595489,10.064032,0.82730698,0,0,0,0,0,105.55899,0,4300.5175,112.633506,499.0974144,0,0,0,0,0,0,7.17E-06,0,0,6.82E-04,0,1.222219042,16.41564777,83.21123114,7.790296572,19.77882376,0,19521.89407,0.007723268,0,0 +1925,0.983699121,0.870847171,0,0,3.790606982,0.15281139,9.887985,0.86947278,0,0,0,0,0,105.60265,0,4302.8128,113.6704269,502.6957688,0,0,0,0,0,0,7.21E-06,0,0,6.87E-04,0,1.237791101,16.84168156,84.06174423,7.983263812,19.75345484,0,19738.88984,0.007723268,0,0 +1926,0.971193664,0.875288161,0,0,3.724383638,0.16877181,10.020584,0.96266008,0,0,0,0,0,105.65209,0,4305.4116,114.5456303,499.0418204,0,0,0,0,0,0,7.25E-06,0,0,6.92E-04,0,1.252612106,17.14732508,84.16877083,8.057166102,19.57302011,0,19808.91323,0.007723268,0,0 +1927,1.071982298,0.914815243,0,0,3.850357382,0.19366311,13.691728,1.1076116,0,0,0,0,0,105.65063,0,4305.3352,115.74748,515.0910884,0,0,0,0,0,0,7.29E-06,0.004945027,0,6.96E-04,0,1.266765284,17.43232174,86.52753525,8.499773807,19.87550986,0,21139.78229,0.007723268,0,0 +1928,1.076174298,0.918261907,0,0,3.828134932,0.2132805,16.914307,1.2252077,0.020814729,0,0,0,0,105.59392,0,4302.3537,116.7958666,515.8400889,0,0,0,0,0,0,7.32E-06,0.030139896,0,6.99E-04,0,1.279785085,17.62700285,87.11586337,8.569023695,19.91593076,0,21065.04746,0.007723269,0,0 +1929,1.156951387,0.945536477,0,0,3.890215994,0.20802541,19.38339,1.2037865,0.33502494,0,0,0,0,105.60372,0,4297.9849,118.0199977,527.0535755,0,0,0,0,0,0,7.35E-06,0.003329301,0,7.02E-04,0,1.290827582,17.86727278,89.37670247,8.894481948,20.27497394,0,22402.21952,0.007723266,0,0 +1930,1.072886478,1.022800884,0,0,3.907622806,0.17035764,20.571834,0.99750344,1.1701026,0,0,0,0,105.91829,0,4287.8382,119.6701788,535.0349028,0,0,0,0,0,0,7.36E-06,-0.026051043,0,7.03E-04,0,1.300370355,18.10997615,91.59573863,8.841770878,20.95238859,0,20792.33986,0.007723273,0,0 +1931,0.968671726,1.033130291,0,0,3.699193086,0.11326202,21.232329,0.6766021,1.6600329,0,0,0,0,106.6887,0,4282.6938,119.9075078,504.8981345,0,0,0,0,0,0,7.38E-06,-0.003829208,0,7.06E-04,0,1.307318192,17.9582942,86.48531867,8.206316153,19.78298346,0,18348.146,0.007723259,0,0 +1932,0.880274393,0.934985061,0,0,3.701120519,0.085847633,23.837144,0.51911084,1.6167368,0,0,0,0,107.41813,0,4276.7559,121.4219873,510.1823315,0,0,0.005764349,0,0,0,7.40E-06,7.43E-04,0,7.08E-04,0,1.314106352,18.10001304,87.90725373,8.142484302,20.16181555,0,16151.1052,0.007723289,0,0 +1933,0.923452608,0.931801343,0,0,3.673991696,0.1016274,28.120028,0.61081444,1.6336582,0,0,0,0,108.09758,0,4271.2585,122.3437659,508.1160121,0,0,0.14482802,0,0,0,7.43E-06,8.08E-04,0,7.11E-04,0,1.319777787,18.14058312,87.73926442,8.102332977,20.01961331,0,16995.04081,0.007723222,0,0 +1934,1.000687974,0.920029755,0,0,3.817622407,0.15202423,34.519287,0.91252255,1.6505883,0,0,0,0,108.91202,0,4272.3774,123.9532999,528.033166,0,0,0.60639434,0,0,0,7.47E-06,8.78E-04,0,7.15E-04,0,1.326062979,18.32411359,91.49703968,8.603675585,20.70261784,0,18679.91277,0.007723374,0,0 +1935,1.050596869,0.918684315,0,0,3.826763235,0.22028466,40.132859,1.3303298,1.6675173,0,0,0,0,109.70014,0,4272.1486,124.8946044,529.4409406,0,0,0.97427321,0,0,0,7.50E-06,9.54E-04,0,7.19E-04,0,1.33245233,18.31731965,91.90214074,8.779424673,20.54319704,0,20077.94332,0.007723023,0,0 +1936,1.150366722,0.927069389,0,0,3.972008023,0.28820401,42.33712,1.7570203,1.6844464,0,0,0,0,110.56758,0,4275.9063,126.4647048,550.0398549,0,0,1.0455299,0,0,0,7.55E-06,0.001037276,0,7.24E-04,0,1.338689989,18.65286964,95.83484543,9.362043925,21.16418654,0,21597.57179,0.007723846,0,0 +1937,1.231103105,0.904516492,0,0,3.977215074,0.34372195,44.188471,2.1186454,1.7013755,0.006390022,0,0,0,111.3625,0,4275.9946,127.1823371,550.6109419,0,0,1.1131878,0,0,0,7.58E-06,0.001127477,0,7.28E-04,0,1.346525353,18.735883,95.84567433,9.575630542,20.85060471,0,23231.71203,0.00772185,0,0 +1938,1.161421971,0.907321542,0,0,3.879546431,0.39883954,49.06474,2.4891541,1.7183047,0.1328808,0,0,0,112.0603,0,4271.2734,127.905393,535.4268485,0,0,1.185033,0,0,0,7.61E-06,0.001225424,0,7.31E-04,0,1.355126677,18.72062801,93.23706062,9.133612085,20.283818,0,21542.97587,0.007728553,0,0 +1939,1.232613704,0.905880028,0,0,4.010820601,0.43390074,56.683054,2.745053,1.7352338,0.68779311,0,0,0,112.8293,0,4270.1197,129.5013568,554.5379171,0,0,1.2571398,0,0,0,7.64E-06,0.001332062,0,7.35E-04,0,1.366829172,18.98792969,97.34535423,9.632984019,21.02085333,0,23010.26881,0.11813875,0,0 +1940,1.332494478,0.893463629,0,0,4.026253626,0.50172554,67.980741,3.2190952,1.7521629,1.4928916,0,0,0,113.75015,0,4276.3916,130.1349943,550.4654056,0,0,1.3304594,0,0,0,7.69E-06,0.001448183,0,7.41E-04,0,1.379589207,18.93380648,96.49612887,9.961368881,20.56627575,0,25159.07412,0.21814961,0,0 +1941,1.35733239,0.876081403,0,0,4.050294267,0.64957282,81.740279,4.2240743,1.769092,2.2339929,0,0,0,114.54353,0,4282.9257,132.2180939,552.9500651,0,0,1.4028748,0,0,0,7.73E-06,0.00157415,0,7.45E-04,0,1.427063176,19.03403078,97.09407345,10.19371174,20.46203137,0,26113.9497,0.1951164,0,0 +1942,1.359049319,0.897314522,0,0,4.114193284,0.84353078,95.021136,5.585489,1.7860212,2.976471,0,0,0.19841173,115.26991,0,4303.7401,134.7060241,560.1841861,0,0,1.4745564,0,0,0,7.76E-06,0.001710955,0,7.48E-04,0,1.529818545,19.21018323,98.65719695,10.34548378,21.01419377,0,26702.04279,0.16898031,0,0 +1943,1.402945825,0.892124843,0,0,4.114085782,0.80476688,89.521615,5.4576739,1.8029502,3.7199961,0,0.056451758,4.3053247,116.04761,0,4331.4951,136.6296869,561.0185503,0,0,1.5467027,0,0,0,7.79E-06,0.001859737,0,7.52E-04,0,1.677793207,19.22648995,99.48634644,10.64406286,20.76469901,0,27110.34859,0.14684461,0,0 +1944,1.387913119,0.898318952,0,0,4.111269896,0.41764093,72.694302,2.9606569,1.8198794,4.4638059,0,0.97266311,16.545617,116.85265,0,4354.745,138.9310562,569.4275578,0,0,1.6191675,0,0,0,7.83E-06,0.002021507,0,7.56E-04,0,1.853743997,19.45467137,102.0083052,10.97214997,20.91812228,0,26578.15151,0.11439264,0,0 +1945,1.180916482,0.898822172,0,0,3.970406317,0.20111842,68.369262,1.5076942,1.8368084,5.2077233,0,3.4593405,24.846154,117.6118,0,4376.5008,141.022964,562.3881403,0,0,1.69101,0,0,0,7.86E-06,0.002197258,0,7.60E-04,0,2.046836624,19.53099873,102.3868629,10.81105837,20.63041519,0,23414.92286,0.080798572,0,0 +1946,1.294211066,0.982947007,0,0,3.971696435,0.27970458,74.717234,2.0726649,1.8537378,5.9856104,0,4.9404679,24.839378,118.39896,0,4399.6117,142.7064022,555.289963,0,0,1.7631908,0,0,0,7.89E-06,0.002388349,0,7.64E-04,0,2.242235208,19.68948842,102.6581835,10.80993836,20.3059335,0,23137.29124,0.064300427,0,0 +1947,1.449894938,1.013635265,0,0,4.004289599,0.34838359,84.081746,2.6369074,1.8706665,6.4443541,0,4.8390374,24.982371,119.2973,0,4428.0553,144.7944965,563.4037754,0,0,1.8372679,0,0,0,7.94E-06,0.002596315,0,7.69E-04,0,2.428654505,19.91609513,104.1573676,11.48967842,20.19099947,0.003372839,25978.58013,0.046731228,0,0 +1948,1.541746758,1.021788966,0,0,4.123520873,0.33316898,90.670686,2.6243892,1.8875961,6.6649072,0,4.8563661,24.987103,120.08364,0,4451.0369,147.2720295,586.53608,0,0,1.966277,0,0,0,7.98E-06,0.003327672,0,7.73E-04,0,2.589644896,20.34906056,108.0964174,12.19576499,20.65035706,0.023611977,27162.31675,0.020169381,0,0 +1949,1.51503408,1.032229109,0,0,4.095746551,0.31424196,91.962416,2.5926444,1.8955033,7.1640705,0,5.561141,27.295461,120.70601,0,4466.7618,150.2157149,588.4410387,0,0,1.6426278,0,0,0,7.99E-06,0.02463759,0,7.75E-04,0,2.714013981,20.9091959,109.1544258,11.86397123,21.08117938,0.063741035,26198.85137,-0.001578436,0,0 +1950,1.695680787,1.04543439,0,0,4.331260791,0.32876887,78.580053,2.8441101,1.9897329,7.4706053,0,8.1460574,32.673745,121.62274,0,4499.2896,152.2010084,619.9439709,0,0,1.0661465,0,0,0,8.05E-06,0.10531435,0,7.81E-04,0,2.786823806,21.60140457,113.8598472,13.13214183,22.10581056,0.16053368,29148.54682,2.43E-04,0,0 +1951,1.817356704,1.263788462,0,0,4.212336067,0.33222262,70.47669,3.0430784,2.1685287,7.5542237,0,12.050138,36.815853,122.51807,0.014330518,4529.1876,155.2719352,593.1994506,0,0,1.0527789,0,0,0,8.09E-06,0.2343219,0,7.85E-04,0,2.830792646,21.71096706,109.0909544,13.15219389,20.39818818,0.23983988,30378.93497,0.001166432,0,0 +1952,1.85187593,1.291508658,0,0,4.278249967,0.32854487,76.508762,3.2228257,2.4120426,7.6734014,0,16.078842,40.441283,123.26435,0.21725302,4558.7052,160.5733576,606.95634,0,0,1.4414744,0,0,0,8.10E-06,0.3628351,0,7.87E-04,0,2.873469224,22.39378605,112.6182109,13.48661504,20.95793435,0.24565292,30772.87938,-0.002030065,0,0 +1953,1.905887196,1.288662579,0,0,4.400134891,0.31999622,81.681224,3.3863087,2.8478934,7.7034458,0,20.201055,45.581432,124.06078,1.3575508,4600.7084,165.6818323,623.9750548,0,0,2.100408,0,0,0,8.12E-06,0.48047903,0,7.90E-04,0,2.918473221,23.08627653,116.7765378,14.05062035,21.60093971,0.24572915,31392.44296,-2.28E-04,0,0 +1954,1.955325831,1.342683244,0,0,4.475107773,0.29457384,86.86347,3.4048632,3.2763156,7.760213,0,25.212381,51.892411,124.75392,3.6198833,4629.2231,170.3710079,628.9096635,0,0,2.8888848,0,0,0,8.14E-06,0.59576061,0,7.91E-04,0,2.965305231,23.5182693,118.7896929,14.35262782,21.65473895,0.24580572,31601.64062,-0.004070821,0,0 +1955,2.138786817,1.387820683,0,0,4.585745112,0.26311875,91.980019,3.3346824,3.6788015,7.6370702,0,30.727319,59.871881,125.74327,6.4848679,4666.3367,174.7404471,641.3267253,0,0,3.5564777,0,0,0,8.18E-06,0.70910415,0,7.96E-04,0,3.016004168,23.78869162,122.5425815,15.35988489,21.61194057,0.24588273,34555.40272,0.001049355,0,0 +1956,2.291039468,1.446283643,0,0,4.844401489,0.22075982,97.008491,3.0796375,4.2759912,7.5430316,0,33.546756,66.950489,126.58168,9.1561662,4699.2729,180.6711175,673.806229,0,0,4.5322658,0,0,0,8.21E-06,0.82044371,0,8.00E-04,0,3.06769313,24.39548109,129.82302,16.40773077,22.72448276,0.24595899,37118.77109,0.006640162,0,0 +1957,2.384773,1.477494579,0,0,5.084522572,0.18587639,102.11597,2.8571248,4.9612019,7.3765313,0,32.871446,72.204141,127.41838,11.488509,4733.2024,186.0555677,695.9496131,0,0,5.9875108,0,0,0,8.25E-06,0.92977447,0,8.03E-04,0,3.122765936,25.10938271,135.5915206,17.20228851,23.82634945,0.24603635,38873.75431,0.004342369,0,0 +1958,2.467095469,1.528597347,0,0,5.060488043,0.17928487,107.206,2.9954591,5.6330503,6.9087313,0,34.746284,80.925329,128.42262,14.781202,4771.3965,188.3855399,661.2854858,0,0,7.120204,0,0,0,8.29E-06,1.0371306,0,8.08E-04,0,3.184188319,25.26871426,129.2085836,17.04310474,22.2466504,0.2461131,39341.99136,0.002605294,1.53E-05,1.55E-04 +1959,2.603672914,1.473668289,0,0,5.186762349,0.18081021,112.29185,3.2476716,6.3880226,6.8760458,0,43.506257,93.983467,129.47587,18.063698,4808.726,192.6867573,665.4367222,0,0,8.0253807,0,0,0,8.33E-06,1.1424694,0,8.12E-04,0,3.250322629,25.78456832,131.2104974,17.51526633,22.13695045,0.30755864,41319.47351,8.68E-04,1.22E-04,0.001246036 +1960,2.728446849,1.461519532,0,0,5.288213084,0.17259465,117.2597,3.3209398,7.3201718,7.2392631,0,56.281481,107.5417,130.53321,21.750437,4847.0424,197.2611005,668.565663,0,0,9.5885732,0,0,0,8.37E-06,1.2458107,0,8.17E-04,0,3.323928526,26.12794679,133.3368149,18.13798676,22.06866314,0.4304021,42970.73471,-8.68E-04,2.31E-04,0.002375087 +1961,2.75210185,1.531158202,0,0,5.280187775,0.16861102,121.58986,3.4304351,8.4287849,7.4514735,0.001861801,70.618557,123.80387,131.26152,27.278298,4864.0212,205.1383413,701.0053453,0,0,11.884386,0,0,0,8.37E-06,1.346892,0,8.17E-04,0,3.545375735,26.8897385,143.5652635,18.73899699,23.37357314,0.55328481,48370.7476,-0.002605324,2.49E-04,0.003546415 +1962,2.868392579,1.520724684,0,0,5.268371109,0.17112099,125.71015,3.6249821,9.6127678,7.5805279,0.045181371,86.214551,144.89716,132.4011,32.049021,4895.6486,207.2122992,678.8492234,0,0,14.500089,0,0,0,8.41E-06,1.4460951,0,8.21E-04,0,3.678783292,27.3913443,140.105892,19.33292939,22.55009464,0.61483924,49373.46267,-0.004342521,2.53E-04,0.004920676 +1963,3.036186161,1.527209311,0,0,5.437875743,0.18314033,128.88013,3.9881367,10.949721,7.9110854,0.24720738,101.83231,167.67883,132.99126,37.52532,4904.2354,216.1922656,741.3196016,0,0,17.280228,0,0,0,8.39E-06,1.5429261,0,8.19E-04,0,3.803776307,28.74464761,156.130954,20.52084737,24.60921093,0.55366285,50918.54792,-0.007869931,3.52E-04,0.005972759 +1964,3.193585727,1.518253087,0,0,5.259909465,0.20130699,129.76929,4.4326257,12.657214,8.4778946,0.46848862,116.30072,189.8766,134.07707,49.914046,4933.087,216.556163,689.11146,0,0,20.771971,0,0,0,8.44E-06,1.6379776,0,8.24E-04,0,3.945754292,28.60741633,146.4547756,21.25062666,22.37762398,0.49245891,52831.63767,-7.60E-04,0.001030371,0.033580017 +1965,3.342046615,1.549410355,0,0,5.270010253,0.2250418,129.69213,4.9089192,14.528257,9.0358315,0.58010695,130.83984,213.3919,135.19804,70.507935,4953.0596,222.6664157,709.3122963,0,0,25.0603,0,0,0,8.46E-06,1.7308461,0,8.27E-04,0,4.115195266,29.97215368,153.4053912,22.08301054,22.64997293,0.4926084,54063.80178,0.015948649,0.002140689,0.11324642 +1966,3.50172055,1.551765281,0,0,5.285174796,0.26721734,129.70542,5.6248074,16.547774,9.5008952,0.77191369,147.99606,240.15802,136.46754,94.258765,4976.4474,226.3106958,710.9414665,0,0,30.477075,0,0,0,8.51E-06,1.8217969,0,8.32E-04,0,4.311197356,31.55306755,156.4949809,22.8477914,22.43429714,0.61550021,55269.31676,0.069786165,0.003103097,0.20275693 +1967,3.625966014,1.595865386,0,0,5.390458849,0.32052973,129.68847,6.3547572,18.918172,9.9208119,1.0373,169.42177,269.58286,137.66763,116.32544,4995.4184,232.3331465,746.2098209,0,0,36.036945,1.25E-05,0,6.90E-05,8.54E-06,1.9105949,0,8.37E-04,0,4.481777635,33.16777605,164.7753162,24.19623738,23.58529354,0.7384486,54762.8971,0.24404072,0.003754249,0.26151045 +1968,3.834595266,1.546993091,0,0,5.370373092,0.40423022,129.73308,7.3324415,21.713594,10.295172,1.3673824,195.13757,299.71437,139.24379,133.08156,5029.5667,235.3354027,740.4824182,0,0.009237978,40.359034,8.80E-05,0,4.86E-04,8.63E-06,1.9976935,0,8.46E-04,0,4.618299686,34.38157284,165.0957088,25.41081254,22.82579691,0.67731523,56868.37887,0.44305972,0.005543179,0.29037411 +1969,4.061567727,1.543708902,0,0,5.404091613,0.5206411,129.76058,8.4831718,24.938178,10.638634,1.7120901,220.72612,327.55328,140.05867,146.61896,5026.2804,239.1848516,747.0297315,0,0.18322115,44.144508,9.37E-05,0,5.04E-04,0.009824818,2.0817369,0,8.45E-04,0,4.732615323,34.96181251,169.6815713,26.06506901,22.10048951,0.67751619,58467.8108,0.55613635,0.03648951,0.30862539 +1970,4.323514044,1.531929069,0,0,5.549708797,0.6581692,129.69302,9.5318801,28.576904,11.00827,1.8909658,245.38621,354.60102,141.52757,173.56366,5048.3132,244.4183955,781.0375523,0,0.60795801,49.037394,2.47E-05,0,1.09E-04,0.036330653,2.1644992,0,8.52E-04,0,4.714190308,37.46957853,179.6859547,27.82408407,22.78022432,0.80047128,61529.77979,0.64373178,0.11813403,0.34789664 +1971,4.510244869,1.405554242,0,0,5.703748992,0.82992065,129.60227,10.711494,32.729139,11.452529,2.1402118,276.44309,387.53989,143.1196,217.72405,5067.5026,249.2895331,796.2029425,0,0.8564576,55.790888,1.33E-05,0,4.26E-05,0.064586906,2.2451174,0,8.59E-04,0,4.663522046,38.13342516,183.5355579,28.61726398,23.19511601,0.86210262,61716.79563,0.78786166,0.2232129,0.40686343 +1972,4.706494312,1.326937135,0,0,5.971153375,1.0559029,129.65777,12.24311,37.465523,11.97792,2.5517628,314.22879,427.68026,144.52172,267.60333,5079.1924,257.2102054,868.4735708,0,0.87667663,61.456633,1.35E-05,0,4.30E-05,0.082580189,2.3233295,0,8.64E-04,0,4.93074212,39.56446297,196.6655247,30.23622151,25.52743454,0.86237286,63465.10424,1.0951867,0.31882408,0.4721474 +1973,4.975651786,1.318385656,0,0,5.895831576,1.330787,129.79157,14.085332,42.979262,12.585161,2.92937,338.0693,454.71123,146.54158,301.85553,5118.3195,260.294725,826.0293132,0,0.82240702,65.420113,1.38E-05,0,5.50E-05,0.090214925,2.4006492,0,8.77E-04,0,5.050826137,39.95714271,186.5259319,31.24009688,23.45564811,0.92401065,66317.71189,1.5930673,0.39726303,0.54390644 +1974,4.948149198,1.290549,0,0,5.971643938,1.4191691,129.76026,14.311146,49.247959,13.447442,3.5184015,340.6055,453.22872,147.80664,327.35544,5113.8208,261.8082771,824.6214022,0,0.76119143,71.666995,1.40E-05,0,0.052416219,0.087063163,2.474116,0,8.78E-04,0,5.034419125,40.69211664,183.6005251,31.07740605,23.59962462,1.0394718,65371.62667,2.1806547,0.67241083,0.65809554 +1975,4.9286224,1.303204964,0,0,5.998431374,1.4004084,129.65616,14.321042,57.565811,14.538442,4.2176868,337.71465,440.16522,148.91662,384.99818,5104.4298,263.0585486,816.9194859,0,0.80304672,79.153904,1.42E-05,0,0.19213674,0.072875586,2.545125,0,8.78E-04,0,5.206812767,41.4767259,177.5130673,30.76637271,23.12965379,1.1646458,64182.76882,2.8018363,1.2682709,0.8287437 +1976,5.194661022,1.320205358,0,0,6.237496532,1.5554771,129.63321,16.011714,57.24638,15.386466,4.743647,329.27602,426.10768,150.23158,475.43135,5104.2152,269.9482097,856.0634915,0,0.82394648,92.664426,1.44E-05,0,0.33759564,0.047412585,2.614347,0,8.80E-04,0,5.352361697,42.52135697,186.2474273,32.28663209,24.40571792,1.4235416,67153.40876,3.4107057,1.8435573,0.98712807 +1977,5.36442864,1.352097971,0,0,6.353178768,1.692355,129.63647,16.762577,55.875241,15.71703,5.1782548,306.11158,404.2283,152.04264,533.0325,5117.6518,274.0301524,868.4313097,0,0.93269902,109.06413,2.14E-06,0,0.42456315,0.022180513,3.5323931,0,8.87E-04,0,5.499463795,43.27485688,189.2255323,33.05929028,24.38724427,2.1583469,67777.19082,3.8826089,2.1420878,1.0852977 +1978,5.581802903,1.2993019,0,0,6.579044818,1.7691766,130.48849,16.898235,72.245349,15.529417,5.5214166,278.45958,383.9896,153.91731,529.79652,5132.0601,276.3333545,897.4051484,0,1.277913,112.78031,-6.25E-05,0,0.45249588,-0.059867027,4.661461,0,8.95E-04,0,5.625120896,44.24089207,192.9347955,34.2691933,25.01974419,2.8286901,68023.04188,4.2701212,2.1599238,1.1209157 +1979,5.73073214,1.252317648,0,0,6.677231649,1.9203395,128.37989,17.898313,94.634628,14.991238,6.1020639,271.13342,394.80033,155.58904,518.50501,5138.651,281.6000656,900.4664227,0,1.7595655,113.22088,-2.04E-06,0,0.42017076,-0.17766763,5.0937882,0,9.00E-04,0,5.807081799,45.13478108,196.0169029,35.01398718,25.21247986,2.8296177,69119.86371,4.6513697,2.0579417,1.1328091 +1980,5.650947967,1.244135794,0,0,6.618387125,1.9633226,125.08456,17.664267,120.23426,14.760861,7.2362595,276.09356,398.43779,157.04196,513.02719,5131.8984,283.3464702,890.5114952,0,2.0330453,118.29604,7.94E-05,0,0.35605477,-0.12485274,5.1732709,0,9.02E-04,8.17E-05,5.872959052,45.97852705,194.391242,34.76440147,25.23254566,2.8304823,68783.84557,5.1129913,2.1545661,1.1562096 +1981,5.539335981,1.252813549,0,0,6.57778223,1.7391266,126.52811,16.187192,128.45086,13.920115,8.6372447,271.00597,403.07178,158.51506,516.86109,5123.4643,279.7894207,875.7816094,0,1.96562,122.37567,1.71E-05,0,0.32601335,0.11779446,4.4274361,0,9.03E-04,6.97E-04,5.805407446,46.37436562,189.1686139,34.11541673,24.87329597,2.9541119,66688.82722,6.0090215,2.4863888,1.1742814 +1982,5.477249508,1.258145478,0,0,6.915258578,1.6205522,129.38621,15.97381,128.57689,13.885459,9.2748324,277.72577,391.79861,159.18065,532.93449,5083.3728,287.6693154,967.4292983,0,1.6573364,125.26367,-8.23E-05,0,0.33083911,0.22216908,3.5575865,0,8.94E-04,0.001578501,6.043062728,47.66689068,206.8844648,34.15609141,28.27220571,2.9550432,65532.30175,6.4693449,3.0131287,1.352411 +1983,5.483062193,1.433024176,0,0,6.625402214,1.8456854,130.75989,16.384525,150.74703,15.564841,9.057039,353.29433,385.70972,160.09109,547.19948,5047.3484,281.6176584,862.0214943,0,1.3378778,129.4055,-2.71E-05,0,0.33559498,0.09748991,3.8040369,0,8.87E-04,0.002017846,6.06583408,47.6454021,183.8358223,33.28512898,24.45951343,3.2014371,64552.41617,6.0034055,3.8198142,1.378774 +1984,5.619005091,1.461224853,0,0,6.815018955,1.954181,134.9934,14.927399,167.86607,17.177696,10.537606,352.61795,438.30954,162.15076,546.6524,5054.1956,285.0030452,889.7020107,0,1.2391705,137.14097,8.66E-05,0,0.48356263,0.027417786,4.8805395,0,8.93E-04,0.004307161,5.996375963,48.69349353,189.3335257,34.32486538,25.32627636,3.570683,65309.89915,6.3412338,4.7987259,1.1329507 +1985,5.678895003,1.499743779,0,0,6.922761989,1.930951,138.44665,13.863624,191.20489,18.042992,12.093107,321.80334,487.46531,164.43684,559.24581,5072.7864,285.6752697,906.9368199,0,1.4290266,148.48134,2.16E-04,0,0.56320674,0.085787554,5.2553933,0,9.02E-04,0.012966035,5.996554239,49.41563613,190.4568857,34.8615092,25.83243998,3.6945657,65474.08715,7.6862714,5.5359652,1.1864916 +1986,5.784334368,1.530113569,0,0,7.013703662,2.0447892,134.66824,14.595216,226.48099,17.343175,11.156209,363.19165,561.19711,166.53505,605.54478,5079.9439,290.8084488,914.5218093,0,2.1480617,163.26271,2.16E-04,6.84E-04,0.57273931,0.044305139,5.6896951,0,9.08E-04,0.028102657,6.123193923,50.21167874,195.6652235,35.24652923,25.91211685,3.9411958,65479.27148,8.6199267,5.6626388,1.453026 +1987,5.942054872,1.515689335,0,0,7.200139154,2.1868179,140.05915,15.122737,234.71551,15.986362,11.176584,377.17492,543.59326,168.70781,636.85035,5087.8651,295.0485147,952.0611492,0.001157823,3.2631248,177.25124,5.82E-05,0.004878587,0.79616882,-0.099665792,6.5386064,0,9.14E-04,0.044783508,6.350228642,51.33101366,203.5851701,36.43815818,27.25186717,4.3106697,66721.094,9.1692428,5.2412687,1.7364871 +1988,6.133362797,1.515094775,0,0,7.39663506,2.2384091,134.89421,15.295333,225.34631,14.052169,12.063592,324.40759,433.01446,171.54521,645.54402,5119.7697,298.6854951,950.4151874,0.34924766,5.2661192,185.3279,0.021115007,0.06849384,0.88192316,-0.073662439,6.6278139,0,9.28E-04,0.060567348,6.188309996,51.72677742,203.5322276,37.79778929,27.18506613,4.6802608,67287.4839,10.094657,4.7030971,1.770198 +1989,6.211121149,1.53212989,0,0,7.320233668,2.2075539,105.50252,15.212081,212.83728,10.119863,11.292045,246.46809,357.7641,174.22363,713.52261,5139.3872,302.1641744,930.8467755,0.72136249,10.730464,189.56819,0.31476996,0.67304705,0.82629641,0.054397397,6.6572182,0,0.006065534,0.076147787,6.264529715,52.06403696,200.3165052,38.13825088,26.33140677,5.0499664,67312.93275,10.904862,4.3864096,1.6702493 +1990,6.186811699,1.445096887,0,0,7.508271532,2.1076967,86.426532,14.407865,176.8456,7.0905085,10.591201,208.25652,333.97703,176.36773,658.40311,5137.248,305.2725547,940.5626313,1.5203264,17.768055,192.30881,0.96053501,1.7208698,0.69729352,0.18589003,6.6838429,0,0.02696988,0.091767095,6.277152283,52.52170068,203.021231,38.25721546,27.36536835,5.1743108,67094.07179,10.051338,4.2741531,1.7373255 +1991,6.190131152,1.63686011,0,0,8.011536269,1.982897,85.142226,12.924815,120.64491,6.9542228,10.775591,159.81289,286.27307,177.30503,474.47964,5089.9323,318.7311921,1129.983883,6.9394223,22.06288,185.52075,1.727734,2.7251313,0.70613627,0.24819351,7.0572566,0,0.058141591,0.10715402,6.344945592,54.26130892,244.4286341,39.69249193,34.39493833,5.29866,66472.31502,9.6580528,4.1585749,1.6735462 +1992,6.145912973,1.683057085,0,0,7.364888993,1.9500444,85.437279,11.907588,74.361852,5.3089984,10.120439,106.91739,227.43518,179.3441,361.04368,5056.1355,299.4017955,913.3754186,22.26499,24.233416,194.061,2.4767485,4.0250116,1.0018637,0.18194194,7.9102615,0,0.088755914,0.12273589,6.358476439,52.37759099,198.238473,38.71717596,26.64897689,5.4230636,64223.92565,10.784362,3.8127392,1.4631107 +1993,6.193394815,1.54672743,0,0,7.531122847,1.9984803,84.458339,11.381334,50.567396,3.463778,8.6771649,84.3251,231.9618,179.76429,256.33383,5078.4684,299.4425141,941.8816353,34.33223,22.551362,208.33854,3.0949997,11.967198,1.5166355,0.157163,8.3534838,0,0.1188094,0.13825367,6.310752017,52.78275226,203.7757832,39.74372709,28.11499626,5.424762,63195.55052,11.612337,3.3180441,1.2514505 +1994,6.240067755,1.503716685,0,0,7.895732734,2.1430557,86.05046,11.006658,37.565451,4.6095776,8.163643,85.893495,238.58315,178.03958,159.08791,5003.2837,310.2518368,1060.282744,45.287421,24.423112,237.88968,3.5515518,24.558229,2.3253155,0.20390529,8.737968,0,0.14808425,0.15358509,6.441827,54.21042307,231.0503543,40.27137016,33.14335063,5.5491826,61820.50124,11.303115,2.9604627,1.1962062 +1995,6.377386454,1.486080505,0,0,7.813189501,2.3880707,80.480245,10.682998,23.473127,5.7076242,7.6747577,86.264975,210.72453,180.13151,95.783763,5016.3948,305.4095889,955.0363062,51.095458,27.59918,230.3453,3.8771223,36.211193,3.4395305,0.29614801,9.315257,0,0.17780027,0.16982122,6.504076136,53.41671788,206.4742485,40.45040793,29.71540754,5.6736625,60635.50707,11.011358,2.8923304,1.0842597 +1996,6.511379279,1.470193985,0,0,7.686339551,2.6638414,75.256035,10.505743,13.005309,4.6522227,5.5242189,85.278741,170.78176,183.444,59.514335,5297.7083,307.2912075,930.0218807,53.568363,26.00128,224.86947,4.0579149,48.538296,4.5014521,0.39044285,9.7707047,0,0.20547879,0.23841137,6.542220103,53.42127729,200.8724208,40.45019229,28.71419152,5.5527008,59650.01603,10.510994,2.8654227,0.84755661 +1997,6.574573879,2.18331399,0,0,8.269788743,2.8728437,75.489912,10.417958,10.398164,3.7691062,3.4559389,86.341446,160.63531,180.149,29.550907,5288.9251,331.2889198,1204.992305,55.763481,29.370536,240.5221,4.6266327,58.758537,5.5717023,0.427562,9.7952259,4.96E-05,0.25820595,0.31501343,6.740456045,56.11803189,264.6751503,41.89315592,38.34138232,5.7834259,59868.27682,9.8242768,2.8566852,0.76826308 +1998,6.590459871,1.541245282,0,0,8.412226876,2.9899069,72.916263,10.335348,12.992477,3.9615346,2.9318362,86.348141,156.67666,176.1082,23.412636,5175.5355,315.3326212,1085.430599,55.956781,28.471196,234.46613,6.9049469,70.049792,6.8917397,0.54029666,10.02529,3.58E-04,0.60512272,0.38665542,6.446521521,56.58934432,232.3180182,42.33468434,37.8122783,5.6031107,58604.36759,10.323837,2.701239,0.76943857 +1999,6.661329053,1.303430472,0,0,7.698162125,2.9607505,72.96355,10.216505,14.054175,3.9749853,3.1538842,82.703538,140.42544,168.37661,18.420173,5112.4264,309.4083709,940.700678,58.338707,25.741051,252.31636,8.6848445,91.978363,7.9486502,0.7424207,10.07373,0.003108151,1.0699013,0.49435229,6.281150807,54.7693723,205.1118782,40.94720104,30.44917133,5.1676463,55523.54474,10.262658,2.1509855,0.7706312 +2000,6.893167303,1.201338049,0,0,7.457347232,2.8153943,72.651408,9.9231457,9.4043884,3.9867142,2.3476518,76.330076,122.76605,165.25876,19.471227,5074.2696,310.1868098,886.5647302,56.341686,25.730152,263.60627,10.640667,99.657424,8.5987563,0.86319988,9.2978389,0.034006926,1.411492,0.57423278,6.112229814,54.50959652,195.3241582,41.26362178,27.9819784,5.2735332,55661.00151,9.4801348,1.9694412,0.77151922 +2001,6.957086928,0.961802096,0,0,7.591758769,3.0480682,70.656969,10.593275,5.9590471,3.2771364,1.1600545,68.271466,111.64066,165.599,19.806901,5094.2258,312.8963787,881.6703956,56.368781,24.490463,261.60586,11.075295,96.243251,9.8521252,0.94275566,8.9840003,0.80619906,1.6540309,0.63867332,6.188009183,54.70989639,196.1877828,41.37717554,27.87799844,5.3282102,56049.16643,8.8337936,2.3248261,0.74608572 +2002,7.097947295,1.070652511,0,0,8.046474187,3.4534372,70.456674,11.982167,3.1513602,2.420559,0.95011524,63.484809,101.90454,161.14055,12.302716,5096.5932,322.2788312,970.7244172,50.843174,25.156097,270.32175,12.214474,102.73275,11.617585,1.2107813,9.7208997,2.9170651,2.8037817,0.73327062,6.359556248,57.07665954,218.4604141,41.89878327,33.80824329,5.4976481,55687.52236,8.3685909,2.2797577,0.67660085 +2003,7.424688348,0.901041903,0,0,8.241697598,3.16329,69.839024,12.579882,5.7693016,1.7336337,0.74505988,62.277955,97.844828,158.92828,10.122917,5113.7538,328.1242242,944.7470786,44.441172,25.070909,287.30923,15.640539,117.40605,13.114832,1.560512,11.005369,5.226518,4.7856897,0.85366012,6.428305305,57.69037488,214.4033914,42.68216556,34.36218135,5.5417194,57641.7237,8.0831154,2.0262772,0.60195554 +2004,7.812644316,1.038213168,0,0,8.542465507,2.2029533,66.998563,12.194883,9.216749,1.4729969,0.75667708,60.966802,87.654103,156.21655,9.7469995,5141.4447,338.9417722,945.5469501,49.135801,28.554887,307.57676,15.758879,125.65071,13.097501,2.0510461,12.712613,6.6512131,5.4873038,0.97410928,6.590470047,58.11358477,216.6872834,44.5568559,32.33033041,5.6480085,60340.85189,7.5267646,2.1192661,0.55294607 +2005,8.093491316,1.025657164,0,0,8.840128386,1.9480504,63.195607,11.060838,4.6297025,1.8139658,0.58070615,60.331179,71.956593,154.12291,7.5405195,5209.9819,346.3955546,950.5924444,53.955471,33.447493,329.52471,16.143675,126.49199,12.434284,2.365528,14.626529,7.0791974,6.3606922,1.0845927,6.693579484,58.88341048,218.7880648,45.62238086,32.72399071,6.2799143,62587.82672,6.9433284,1.8947828,0.46971744 +2006,8.35813441,1.092642828,0,0,8.92564815,2.045423,60.048081,10.21735,0.6450641,1.7510311,0.58710647,63.037203,65.575271,152.41471,9.3190485,5272.2746,356.4696896,986.1510089,51.911598,36.489809,346.30497,19.891066,133.41048,14.118518,2.3531588,12.639849,6.8754044,8.3862482,1.1852524,6.875606953,60.37974253,229.8954395,46.63913374,34.3551466,6.9409178,63046.34515,6.3118449,1.5902358,0.43579597 +2007,8.681148087,0.966211967,0,0,9.284494092,1.7666158,57.257154,9.3272415,4.5089203,1.5545493,0.78280059,64.737513,61.623755,147.28895,9.6981304,5250.6823,355.0225755,945.8695944,49.953532,37.109679,357.26506,26.595246,127.25708,16.399738,2.4154053,9.3262891,6.6980995,8.4029745,1.2649376,6.596141361,60.96582609,219.7058707,48.13085999,33.27729799,6.9754073,62641.3592,5.7707437,1.7021554,0.59162888 +2008,8.733139806,0.668337987,0,0,9.091850914,1.746034,56.837697,9.0353429,8.3395339,1.9164483,0.45696793,63.060877,57.108479,144.47281,6.337645,5191.6855,360.4917105,912.5104843,54.881457,33.091627,362.72449,30.815622,138.28669,17.544095,2.6196596,8.8123411,7.076053,10.669375,1.3164863,6.638276368,61.31644175,214.695495,48.0350761,31.61901151,6.8835341,61275.77058,5.5737514,1.6171325,0.63840472 +2009,8.584990107,0.754863283,0,0,9.109514002,1.7995507,55.355253,9.6854874,5.7877004,1.6755174,0.3835494,60.065148,54.788238,144.24254,3.7694324,5145.2658,364.2003634,917.7292309,61.506343,32.081369,366.5558,33.926872,160.10848,21.142804,2.9666725,9.9336003,7.8522494,16.223306,1.4335012,6.712782947,61.3779593,218.7581143,46.48309573,31.77247637,7.159861,58721.16171,5.2570896,1.7272846,0.47723148 +2010,8.975543684,0.885110055,0,0,9.665129376,1.7742176,56.090865,10.48947,4.4070317,1.4644148,0.65896445,58.86009,52.271203,142.6745,2.4614781,5179.9719,370.8962528,953.2286303,65.209531,29.851794,361.74691,35.069515,165.044,20.460881,3.1827017,11.247607,8.7778712,15.914528,1.3375544,6.708375368,62.44447212,224.6021121,47.31829704,34.61053251,7.2759031,58249.45527,4.8975548,1.8511656,0.39655186 +2011,9.25596626,0.91365454,0,0,9.478876566,1.8467555,57.565927,11.056837,4.6237938,2.0468287,0.85601742,62.415615,52.120722,140.42156,3.0036158,5252.9333,372.6576832,906.7673675,67.690592,28.645628,366.94427,43.330418,190.47655,22.158614,3.410604,12.498165,9.4654578,20.415233,1.1291345,6.648935415,62.39874927,218.628754,48.49222156,32.51825927,7.4656928,58834.52202,4.3361773,2.096153,0.39105944 +2012,9.386649745,0.970689078,0,0,9.705285171,1.794986,59.464919,9.6609456,5.4529267,2.0520518,0.7168607,70.235225,53.35878,136.71475,3.0096674,5232.3317,380.8097666,949.6022184,63.311547,25.468261,356.29002,45.81505,205.00564,21.423,3.2771162,12.591587,9.054248,24.0671,0.98551995,6.742796632,63.84845417,229.1069362,48.17674509,35.82690196,7.7062836,57925.01408,3.8379813,1.7328717,0.41594871 +2013,9.659396496,0.91865757,0,0,9.560553735,1.6324652,62.512861,8.3027436,6.5167934,1.9408617,0.61330322,75.740842,54.819887,133.39273,1.8384424,5231.2321,381.5943928,901.2387566,59.817791,19.467118,342.89828,38.8888,202.01825,23.8069,2.9986006,11.604213,9.7859,21.452891,0.87225171,6.847910646,63.65097665,219.3811793,47.50620674,33.24556583,7.686158,57413.51787,3.5745493,0.96258078,0.44442215 +2014,9.719224641,1.095764818,0,0,9.744379658,1.6517,53.5475,9.8735,2.8024,1.6696,1.114899,54.9365,28.9612,133.6791,1.2625,5358.4982,387.8735392,964.0476182,59.82,22.47,358.8813,57.1243,200.0249,25.2487,3.5393,12.991,10.1025,30.4858,1.1516,6.916164551,65.03685366,233.525518,47.38523786,36.14582139,7.8784,57093.26142,3.481,1.2299,0.3854 +2015,9.724603237,0.959883081,0,0,9.727423577,1.57,47.5476,10.8699,0.8742,1.6696,1.6714,43.5734,14.6096,133.823,0,5404.8069,388.0727957,934.3498847,59.82,22.47,358.8813,78.7906,201.9534,32.381,3.6633,14.4857,11.7285,38.5792,1.1516,6.937624392,65.27970313,227.2448193,47.34877178,34.74602423,8.02,50464.18814,3.2933,1.3378,0.3481 +2016,9.949869256,0.98348971,0,0,9.665241152,1.65952,45.01716,11.2451366,0.78156,1.515231454,1.61422146,41.88082,12.88774,135.46146,0,5443.7829,389.9511154,924.3121223,60.8428786,21.9901556,351.625206,97.9818,214.41974,38.63372,4.05325878,12.12156,13.658721,32.28288,1.18008914,7.043620069,66.16008017,227.6426909,47.78426143,33.98323709,8.09854,48398.93583,3.07158,1.29166,0.33428 +2017,10.17513528,1.00709634,0,0,9.603058728,1.74904,42.48672,11.6203732,0.68892,1.360862908,1.55704292,40.18824,11.16588,137.09992,0,5482.7589,391.8294351,914.2743599,61.8657572,21.5103112,344.369112,117.173,226.88608,44.88644,4.44321756,9.75742,15.588942,25.98656,1.20857828,7.149615746,67.0404572,228.0405626,48.21975107,33.22044995,8.17708,46333.68352,2.84986,1.24552,0.32046 +2018,10.40040129,1.030702969,0,0,9.540876303,1.83856,39.95628,11.9956098,0.59628,1.206494362,1.49986438,38.49566,9.44402,138.73838,0,5521.7349,393.7077548,904.2365975,62.8886358,21.0304668,337.113018,136.3642,239.35242,51.13916,4.83317634,7.39328,17.519163,19.69024,1.23706742,7.255611423,67.92083423,228.4384342,48.65524072,32.4576628,8.25562,44268.43121,2.62814,1.19938,0.30664 +2019,10.62566731,1.054309598,0,0,9.478693879,1.92808,37.42584,12.3708464,0.50364,1.052125816,1.44268584,36.80308,7.72216,140.37684,0,5560.7109,395.5860746,894.1988351,63.9115144,20.5506224,329.856924,155.5554,251.81876,57.39188,5.22313512,5.02914,19.449384,13.39392,1.26555656,7.3616071,68.80121127,228.8363058,49.09073036,31.69487566,8.33416,42203.1789,2.40642,1.15324,0.29282 +2020,10.85093333,1.077916228,0,0,9.416511454,2.0176,34.8954,12.746083,0.411,0.89775727,1.3855073,35.1105,6.0003,142.0153,0,5599.6869,397.4643943,884.1610727,64.934393,20.070778,322.60083,174.7466,264.2851,63.6446,5.6130939,2.665,21.379605,7.0976,1.2940457,7.467602777,69.6815883,229.2341774,49.52622001,30.93208852,8.4127,40137.92659,2.1847,1.1071,0.279 +2021,11.15076166,1.094299057,0,0,9.318521072,1.95172,33.28538,12.5072952,0.37899,0.833926213,1.342148655,33.87909,5.50149,140.80952,0,5574.8839,403.1647109,871.2058361,63.8401921,19.2265454,304.67177,190.678475,269.17534,69.25233,5.84986144,2.48147,23.2108326,6.60881,1.27822932,7.525782921,70.42946495,228.1913852,49.51701374,30.27921928,8.50082,39705.18638,2.06237,1.07222,0.26903 +2022,11.45058999,1.110681886,0,0,9.22053069,1.88584,31.67536,12.2685074,0.34698,0.770095156,1.29879001,32.64768,5.00268,139.60374,0,5550.0809,408.8650274,858.2505995,62.7459912,18.3823128,286.74271,206.61035,274.06558,74.86006,6.08662898,2.29794,25.0420602,6.12002,1.26241294,7.583963065,71.1773416,227.148593,49.50780748,29.62635004,8.58894,39272.44617,1.94004,1.03734,0.25906 +2023,11.75041832,1.127064714,0,0,9.122540308,1.81996,30.06534,12.0297196,0.31497,0.706264099,1.255431365,31.41627,4.50387,138.39796,0,5525.2779,414.565344,845.2953629,61.6517903,17.5380802,268.81365,222.542225,278.95582,80.46779,6.32339652,2.11441,26.8732878,5.63123,1.24659656,7.642143209,71.92521824,226.1058008,49.49860121,28.9734808,8.67706,38839.70596,1.81771,1.00246,0.24909 +2024,12.05024665,1.143447543,0,0,9.024549926,1.75408,28.45532,11.7909318,0.28296,0.642433042,1.21207272,30.18486,4.00506,137.19218,0,5500.4749,420.2656606,832.3401263,60.5575894,16.6938476,250.88459,238.4741,283.84606,86.07552,6.56016406,1.93088,28.7045154,5.14244,1.23078018,7.700323354,72.67309489,225.0630086,49.48939495,28.32061156,8.76518,38406.96576,1.69538,0.96758,0.23912 +2025,12.35007498,1.159830372,0,0,8.926559544,1.6882,26.8453,11.552144,0.25095,0.578601985,1.168714075,28.95345,3.50625,135.9864,0,5475.6719,425.9659772,819.3848897,59.4633885,15.849615,232.95553,254.405975,288.7363,91.68325,6.7969316,1.74735,30.535743,4.65365,1.2149638,7.758503498,73.42097154,224.0202165,49.48018868,27.66774232,8.8533,37974.22555,1.57305,0.9327,0.22915 +2026,12.64990331,1.176213201,0,0,8.828569162,1.62232,25.23528,11.3133562,0.21894,0.514770928,1.12535543,27.72204,3.00744,134.78062,0,5450.8689,431.6662937,806.4296531,58.3691876,15.0053824,215.02647,270.33785,293.62654,97.29098,7.03369914,1.56382,32.3669706,4.16486,1.19914742,7.816683642,74.16884819,222.9774243,49.47098242,27.01487307,8.94142,37541.48534,1.45072,0.89782,0.21918 +2027,12.94973164,1.19259603,0,0,8.73057878,1.55644,23.62526,11.0745684,0.18693,0.450939871,1.081996785,26.49063,2.50863,133.57484,0,5426.0659,437.3666103,793.4744165,57.2749867,14.1611498,197.09741,286.269725,298.51678,102.89871,7.27046668,1.38029,34.1981982,3.67607,1.18333104,7.874863787,74.91672483,221.9346321,49.46177615,26.36200383,9.02954,37108.74514,1.32839,0.86294,0.20921 +2028,13.24955996,1.208978859,0,0,8.632588398,1.49056,22.01524,10.8357806,0.15492,0.387108814,1.03863814,25.25922,2.00982,132.36906,0,5401.2629,443.0669269,780.5191799,56.1807858,13.3169172,179.16835,302.2016,303.40702,108.50644,7.50723422,1.19676,36.0294258,3.18728,1.16751466,7.933043931,75.66460148,220.8918399,49.45256989,25.70913459,9.11766,36676.00493,1.20606,0.82806,0.19924 +2029,13.54938829,1.225361688,0,0,8.534598016,1.42468,20.40522,10.5969928,0.12291,0.323277757,0.995279495,24.02781,1.51101,131.16328,0,5376.4599,448.7672435,767.5639433,55.0865849,12.4726846,161.23929,318.133475,308.29726,114.11417,7.74400176,1.01323,37.8606534,2.69849,1.15169828,7.991224075,76.41247813,219.8490477,49.44336362,25.05626535,9.20578,36243.26472,1.08373,0.79318,0.18927 +2030,13.84921662,1.241744517,0,0,8.436607634,1.3588,18.7952,10.358205,0.0909,0.2594467,0.95192085,22.7964,1.0122,129.9575,0,5351.6569,454.46756,754.6087067,53.992384,11.628452,143.31023,334.06535,313.1875,119.7219,7.9807693,0.8297,39.691881,2.2097,1.1358819,8.04940422,77.16035477,218.8062555,49.43415736,24.40339611,9.2939,35810.52452,0.9614,0.7583,0.1793 +2031,14.2473737,1.211299492,0,0,8.399193441,1.31663,17.92802,10.20601637,0.08382,0.241007612,0.922171126,21.99688,0.92805,129.18567,0,5335.84899,463.2500777,749.767513,51.7698,10.82562094,131.008084,342.701149,313.95416,123.37401,8.03104942,0.79985,40.9593659,2.1302,1.118346335,8.09606417,77.5339096,217.8821935,49.65505515,24.09682947,9.3593,35808.74627,0.90757,0.7344,0.1729 +2032,14.64553079,1.180854467,0,0,8.361779249,1.27446,17.06084,10.05382774,0.07674,0.222568525,0.892421402,21.19736,0.8439,128.41384,0,5320.04108,472.0325954,744.9263192,49.547216,10.02278988,118.705938,351.336948,314.72082,127.02612,8.08132954,0.77,42.2268508,2.0507,1.10081077,8.142724119,77.90746443,216.9581315,49.87595295,23.79026283,9.4247,35806.96801,0.85374,0.7105,0.1665 +2033,15.04368787,1.150409443,0,0,8.324365056,1.23229,16.19366,9.90163911,0.06966,0.204129437,0.862671678,20.39784,0.75975,127.64201,0,5304.23317,480.8151131,740.0851255,47.324632,9.21995882,106.403792,359.972747,315.48748,130.67823,8.13160966,0.74015,43.4943357,1.9712,1.083275205,8.189384069,78.28101926,216.0340695,50.09685075,23.48369619,9.4901,35805.18976,0.79991,0.6866,0.1601 +2034,15.44184495,1.119964418,0,0,8.286950864,1.19012,15.32648,9.74945048,0.06258,0.18569035,0.832921954,19.59832,0.6756,126.87018,0,5288.42526,489.5976308,735.2439317,45.102048,8.41712776,94.101646,368.608546,316.25414,134.33034,8.18188978,0.7103,44.7618206,1.8917,1.06573964,8.236044019,78.65457409,215.1100075,50.31774854,23.17712955,9.5555,35803.41151,0.74608,0.6627,0.1537 +2035,15.84000203,1.089519394,0,0,8.249536671,1.14795,14.4593,9.59726185,0.0555,0.167251262,0.80317223,18.7988,0.59145,126.09835,0,5272.61735,498.3801486,730.4027379,42.879464,7.6142967,81.7995,377.244345,317.0208,137.98245,8.2321699,0.68045,46.0293055,1.8122,1.048204075,8.282703969,79.02812892,214.1859455,50.53864634,22.87056291,9.6209,35801.63326,0.69225,0.6388,0.1473 +2036,16.23815912,1.059074369,0,0,8.212122479,1.10578,13.59212,9.44507322,0.04842,0.148812174,0.773422506,17.99928,0.5073,125.32652,0,5256.80944,507.1626663,725.5615442,40.65688,6.81146564,69.497354,385.880144,317.78746,141.63456,8.28245002,0.6506,47.2967904,1.7327,1.03066851,8.329363919,79.40168375,213.2618835,50.75954414,22.56399627,9.6863,35799.85501,0.63842,0.6149,0.1409 +2037,16.6363162,1.028629345,0,0,8.174708286,1.06361,12.72494,9.29288459,0.04134,0.130373087,0.743672782,17.19976,0.42315,124.55469,0,5241.00153,515.945184,720.7203504,38.434296,6.00863458,57.195208,394.515943,318.55412,145.28667,8.33273014,0.62075,48.5642753,1.6532,1.013132945,8.376023868,79.77523858,212.3378215,50.98044193,22.25742963,9.7517,35798.07676,0.58459,0.591,0.1345 +2038,17.03447328,0.99818432,0,0,8.137294094,1.02144,11.85776,9.14069596,0.03426,0.111933999,0.713923058,16.40024,0.339,123.78286,0,5225.19362,524.7277017,715.8791567,36.211712,5.20580352,44.893062,403.151742,319.32078,148.93878,8.38301026,0.5909,49.8317602,1.5737,0.99559738,8.422683818,80.1487934,211.4137595,51.20133973,21.95086299,9.8171,35796.29851,0.53076,0.5671,0.1281 +2039,17.43263036,0.967739296,0,0,8.099879901,0.97927,10.99058,8.98850733,0.02718,0.093494912,0.684173334,15.60072,0.25485,123.01103,0,5209.38571,533.5102194,711.0379629,33.989128,4.40297246,32.590916,411.787541,320.08744,152.59089,8.43329038,0.56105,51.0992451,1.4942,0.978061815,8.469343768,80.52234823,210.4896975,51.42223753,21.64429635,9.8825,35794.52026,0.47693,0.5432,0.1217 +2040,17.83078745,0.937294271,0,0,8.062465709,0.9371,10.1234,8.8363187,0.0201,0.075055824,0.65442361,14.8012,0.1707,122.2392,0,5193.5778,542.2927371,706.1967692,31.766544,3.6001414,20.28877,420.42334,320.8541,156.243,8.4835705,0.5312,52.36673,1.4147,0.96052625,8.516003718,80.89590306,209.5656355,51.64313532,21.3377297,9.9479,35792.74201,0.4231,0.5193,0.1153 +2041,17.34569618,0.918747854,0,0,7.812736341,0.88249,9.65632,8.41457258,0.01853,0.0697235,0.633957487,14.28209,0.15651,121.23969,0,5149.77082,514.2980411,695.4447613,30.4061322,3.34120265,18.44822429,405.768564,308.29824,150.99893,8.14344805,0.49365,50.7147932,1.3147,0.915999682,8.281679912,80.92310566,206.4640066,50.25889934,21.06832212,9.56928,34123.82426,0.39941,0.50294,0.11118 +2042,16.86060491,0.900201436,0,0,7.563006973,0.82788,9.18924,7.99282646,0.01696,0.064391176,0.613491364,13.76298,0.14232,120.24018,0,5105.96384,486.3033452,684.6927534,29.0457204,3.0822639,16.60767858,391.113788,295.74238,145.75486,7.8033256,0.4561,49.0628564,1.2147,0.871473114,8.047356106,80.95030826,203.3623777,48.87466337,20.79891453,9.19066,32454.90651,0.37572,0.48658,0.10706 +2043,16.37551364,0.881655019,0,0,7.313277604,0.77327,8.72216,7.57108034,0.01539,0.059058851,0.593025241,13.24387,0.12813,119.24067,0,5062.15686,458.3086493,673.9407455,27.6853086,2.82332515,14.76713287,376.459012,283.18652,140.51079,7.46320315,0.41855,47.4109196,1.1147,0.826946546,7.813032301,80.97751086,200.2607488,47.49042739,20.52950694,8.81204,30785.98877,0.35203,0.47022,0.10294 +2044,15.89042237,0.863108601,0,0,7.063548236,0.71866,8.25508,7.14933422,0.01382,0.053726527,0.572559118,12.72476,0.11394,118.24116,0,5018.34988,430.3139533,663.1887375,26.3248968,2.5643864,12.92658716,361.804236,270.63066,135.26672,7.1230807,0.381,45.7589828,1.0147,0.782419978,7.578708495,81.00471346,197.1591198,46.10619141,20.26009935,8.43342,29117.07102,0.32834,0.45386,0.09882 +2045,15.40533111,0.844562183,0,0,6.813818868,0.66405,7.788,6.7275881,0.01225,0.048394203,0.552092995,12.20565,0.09975,117.24165,0,4974.5429,402.3192574,652.4367296,24.964485,2.30544765,11.08604145,347.14946,258.0748,130.02265,6.78295825,0.34345,44.107046,0.9147,0.73789341,7.344384689,81.03191607,194.0574909,44.72195543,19.99069176,8.0548,27448.15327,0.30465,0.4375,0.0947 +2046,14.92023984,0.826015766,0,0,6.5640895,0.60944,7.32092,6.30584198,0.01068,0.043061879,0.531626872,11.68654,0.08556,116.24214,0,4930.73592,374.3245615,641.6847217,23.6040732,2.0465089,9.24549574,332.494684,245.51894,124.77858,6.4428358,0.3059,42.4551092,0.8147,0.693366842,7.110060884,81.05911867,190.955862,43.33771945,19.72128417,7.67618,25779.23552,0.28096,0.42114,0.09058 +2047,14.43514857,0.807469348,0,0,6.314360132,0.55483,6.85384,5.88409586,0.00911,0.037729555,0.511160749,11.16743,0.07137,115.24263,0,4886.92894,346.3298655,630.9327138,22.2436614,1.78757015,7.40495003,317.839908,232.96308,119.53451,6.10271335,0.26835,40.8031724,0.7147,0.648840274,6.875737078,81.08632127,187.8542331,41.95348347,19.45187658,7.29756,24110.31778,0.25727,0.40478,0.08646 +2048,13.9500573,0.788922931,0,0,6.064630764,0.50022,6.38676,5.46234974,0.00754,0.03239723,0.490694626,10.64832,0.05718,114.24312,0,4843.12196,318.3351696,620.1807059,20.8832496,1.5286314,5.56440432,303.185132,220.40722,114.29044,5.7625909,0.2308,39.1512356,0.6147,0.604313706,6.641413272,81.11352387,184.7526042,40.5692475,19.18246899,6.91894,22441.40003,0.23358,0.38842,0.08234 +2049,13.46496603,0.770376513,0,0,5.814901396,0.44561,5.91968,5.04060362,0.00597,0.027064906,0.470228503,10.12921,0.04299,113.24361,0,4799.31498,290.3404736,609.428698,19.5228378,1.26969265,3.72385861,288.530356,207.85136,109.04637,5.42246845,0.19325,37.4992988,0.5147,0.559787138,6.407089467,81.14072647,181.6509753,39.18501152,18.9130614,6.54032,20772.48228,0.20989,0.37206,0.07822 +2050,12.97987476,0.751830096,0,0,5.565172027,0.391,5.4526,4.6188575,0.0044,0.021732582,0.44976238,9.6101,0.0288,112.2441,0,4755.508,262.3457777,598.6766901,18.162426,1.0107539,1.8833129,273.87558,195.2955,103.8023,5.082346,0.1557,35.847362,0.4147,0.51526057,6.172765661,81.16792907,178.5493464,37.80077554,18.64365381,6.1617,19103.56453,0.1862,0.3557,0.0741 +2051,12.00419293,0.806870068,0,0,5.472894625,0.3588,5.20103,4.26219078,0.00406,0.020186656,0.435696317,9.27305,0.02641,111.65475,0,4718.46084,252.5819882,593.24927,17.3846094,0.938056143,1.712466056,248.343711,177.02609,94.12945,4.604193112,0.14065,32.51562222,0.37461,0.466743065,6.332726478,81.91865415,176.5609104,36.90394967,18.48889459,5.68404,18474.28786,0.17577,0.34449,0.07145 +2052,11.02851109,0.861910041,0,0,5.380617223,0.3266,4.94946,3.90552406,0.00372,0.01864073,0.421630254,8.936,0.02402,111.0654,0,4681.41368,242.8181987,587.82185,16.6067928,0.865358386,1.541619212,222.811842,158.75668,84.4566,4.126040224,0.1256,29.18388244,0.33452,0.41822556,6.492687295,82.66937923,174.5724745,36.00712379,18.33413537,5.20638,17845.01119,0.16534,0.33328,0.0688 +2053,10.05282925,0.916950013,0,0,5.288339821,0.2944,4.69789,3.54885734,0.00338,0.017094804,0.407564191,8.59895,0.02163,110.47605,0,4644.36652,233.0544092,582.3944299,15.8289762,0.792660629,1.370772368,197.279973,140.48727,74.78375,3.647887336,0.11055,25.85214266,0.29443,0.369708055,6.652648112,83.42010431,172.5840386,35.11029792,18.17937615,4.72872,17215.73452,0.15491,0.32207,0.06615 +2054,9.077147409,0.971989986,0,0,5.196062418,0.2622,4.44632,3.19219062,0.00304,0.015548878,0.393498128,8.2619,0.01924,109.8867,0,4607.31936,223.2906197,576.9670098,15.0511596,0.719962872,1.199925524,171.748104,122.21786,65.1109,3.169734448,0.0955,22.52040288,0.25434,0.32119055,6.812608929,84.17082939,170.5956027,34.21347205,18.02461692,4.25106,16586.45785,0.14448,0.31086,0.0635 +2055,8.101465571,1.027029958,0,0,5.103785016,0.23,4.19475,2.8355239,0.0027,0.014002952,0.379432065,7.92485,0.01685,109.29735,0,4570.2722,213.5268302,571.5395897,14.273343,0.647265115,1.02907868,146.216235,103.94845,55.43805,2.69158156,0.08045,19.1886631,0.21425,0.272673045,6.972569746,84.92155447,168.6071668,33.31664617,17.8698577,3.7734,15957.18118,0.13405,0.29965,0.06085 +2056,7.125783732,1.082069931,0,0,5.011507614,0.1978,3.94318,2.47885718,0.00236,0.012457026,0.365366002,7.5878,0.01446,108.708,0,4533.22504,203.7630407,566.1121697,13.4955264,0.574567358,0.858231836,120.684366,85.67904,45.7652,2.213428672,0.0654,15.85692332,0.17416,0.224155539,7.132530563,85.67227955,166.6187309,32.4198203,17.71509848,3.29574,15327.9045,0.12362,0.28844,0.0582 +2057,6.150101893,1.137109904,0,0,4.919230212,0.1656,3.69161,2.12219046,0.00202,0.0109111,0.351299939,7.25075,0.01207,108.11865,0,4496.17788,193.9992512,560.6847496,12.7177098,0.501869601,0.687384992,95.152497,67.40963,36.09235,1.735275784,0.05035,12.52518354,0.13407,0.175638034,7.29249138,86.42300462,164.630295,31.52299443,17.56033926,2.81808,14698.62783,0.11319,0.27723,0.05555 +2058,5.174420054,1.192149876,0,0,4.826952809,0.1334,3.44004,1.76552374,0.00168,0.009365174,0.337233876,6.9137,0.00968,107.5293,0,4459.13072,184.2354617,555.2573295,11.9398932,0.429171844,0.516538148,69.620628,49.14022,26.4195,1.257122896,0.0353,9.19344376,0.09398,0.127120529,7.452452197,87.1737297,162.6418591,30.62616855,17.40558004,2.34042,14069.35116,0.10276,0.26602,0.0529 +2059,4.198738215,1.247189849,0,0,4.734675407,0.1012,3.18847,1.40885702,0.00134,0.007819249,0.323167813,6.57665,0.00729,106.93995,0,4422.08356,174.4716722,549.8299095,11.1620766,0.356474087,0.345691304,44.088759,30.87081,16.74665,0.778970008,0.02025,5.86170398,0.05389,0.078603024,7.612413014,87.92445478,160.6534231,29.72934268,17.25082081,1.86276,13440.07449,0.09233,0.25481,0.05025 +2060,3.223056376,1.302229821,0,0,4.642398005,0.069,2.9369,1.0521903,0.001,0.006273323,0.30910175,6.2396,0.0049,106.3506,0,4385.0364,164.7078827,544.4024894,10.38426,0.28377633,0.17484446,18.55689,12.6014,7.0738,0.30081712,0.0052,2.5299642,0.0138,0.030085519,7.772373831,88.67517986,158.6649872,28.83251681,17.09606159,1.3851,12810.79782,0.0819,0.2436,0.0476 +2061,2.675095567,1.240255912,0,0,4.547445921,0.06663,2.80139,1.035990451,9.20E-04,0.005825228,0.299431331,6.02076,0.00449,106.30722,0,4383.35372,162.1388698,539.0797939,9.93955833,0.263361767,0.158985329,18.9496986,12.84362,7.23788,0.303024071,0.00499,2.59481267,0.01325,0.030355675,7.807936527,89.12949597,156.2269268,28.05218796,16.99116814,1.37208,12433.54245,0.07732,0.23592,0.0459 +2062,2.127134758,1.178282002,0,0,4.452493836,0.06426,2.66588,1.019790602,8.40E-04,0.005377134,0.289760912,5.80192,0.00408,106.26384,0,4381.67104,159.569857,533.7570984,9.49485666,0.242947203,0.143126197,19.3425072,13.08584,7.40196,0.305231022,0.00478,2.65966114,0.0127,0.03062583,7.843499223,89.58381208,153.7888663,27.27185912,16.88627468,1.35906,12056.28708,0.07274,0.22824,0.0442 +2063,1.579173949,1.116308093,0,0,4.357541752,0.06189,2.53037,1.003590753,7.60E-04,0.004929039,0.280090493,5.58308,0.00367,106.22046,0,4379.98836,157.0008441,528.4344029,9.05015499,0.22253264,0.127267066,19.7353158,13.32806,7.56604,0.307437973,0.00457,2.72450961,0.01215,0.030895986,7.879061919,90.03812819,151.3508059,26.49153028,16.78138123,1.34604,11679.03171,0.06816,0.22056,0.0425 +2064,1.03121314,1.054334183,0,0,4.262589668,0.05952,2.39486,0.987390904,6.80E-04,0.004480945,0.270420074,5.36424,0.00326,106.17708,0,4378.30568,154.4318312,523.1117074,8.60545332,0.202118076,0.111407935,20.1281244,13.57028,7.73012,0.309644924,0.00436,2.78935808,0.0116,0.031166142,7.914624615,90.49244429,148.9127454,25.71120144,16.67648777,1.33302,11301.77634,0.06358,0.21288,0.0408 +2065,0.483252331,0.992360274,0,0,4.167637584,0.05715,2.25935,0.971191055,6.00E-04,0.00403285,0.260749655,5.1454,0.00285,106.1337,0,4376.623,151.8628183,517.7890119,8.16075165,0.181703513,0.095548804,20.520933,13.8125,7.8942,0.311851875,0.00415,2.85420655,0.01105,0.031436298,7.950187311,90.9467604,146.4746849,24.93087259,16.57159432,1.32,10924.52097,0.059,0.2052,0.0391 +2066,0,0.930386365,0.064708479,0,4.0726855,0.05478,2.12384,0.954991206,5.20E-04,0.003584756,0.251079236,4.92656,0.00244,106.09032,0,4374.94032,149.2938054,512.4663164,7.71604998,0.16128895,0.079689672,20.9137416,14.05472,8.05828,0.314058826,0.00394,2.91905502,0.0105,0.031706453,7.985750007,91.40107651,144.0366245,24.15054375,16.46670086,1.30698,10547.2656,0.05442,0.19752,0.0374 +2067,0,0.868412455,0.612669288,0,3.977733416,0.05241,1.98833,0.938791357,4.40E-04,0.003136661,0.241408817,4.70772,0.00203,106.04694,0,4373.25764,146.7247925,507.1436209,7.27134831,0.140874386,0.063830541,21.3065502,14.29694,8.22236,0.316265777,0.00373,2.98390349,0.00995,0.031976609,8.021312703,91.85539262,141.598564,23.37021491,16.36180741,1.29396,10170.01023,0.04984,0.18984,0.0357 +2068,0,0.806438546,1.160630097,0,3.882781332,0.05004,1.85282,0.922591508,3.60E-04,0.002688567,0.231738398,4.48888,0.00162,106.00356,0,4371.57496,144.1557796,501.8209253,6.82664664,0.120459823,0.04797141,21.6993588,14.53916,8.38644,0.318472728,0.00352,3.04875196,0.0094,0.032246765,8.056875399,92.30970873,139.1605036,22.58988607,16.25691395,1.28094,9792.754864,0.04526,0.18216,0.034 +2069,0,0.744464636,1.708590906,0,3.787829248,0.04767,1.71731,0.906391659,2.80E-04,0.002240472,0.222067979,4.27004,0.00121,105.96018,0,4369.89228,141.5867667,496.4982298,6.38194497,0.100045259,0.032112278,22.0921674,14.78138,8.55052,0.320679679,0.00331,3.11360043,0.00885,0.03251692,8.092438095,92.76402483,136.7224431,21.80955722,16.1520205,1.26792,9415.499495,0.04068,0.17448,0.0323 +2070,0,0.682490727,2.256551715,0,3.692877163,0.0453,1.5818,0.89019181,2.00E-04,0.001792378,0.21239756,4.0512,8.00E-04,105.9168,0,4368.2096,139.0177538,491.1755343,5.9372433,0.079630696,0.016253147,22.484976,15.0236,8.7146,0.32288663,0.0031,3.1784489,0.0083,0.032787076,8.128000791,93.21834094,134.2843826,21.02922838,16.04712704,1.2549,9038.244125,0.0361,0.1668,0.0306 +2071,0,0.63890568,2.460951497,0,3.611722597,0.04399,1.50882,0.879431909,1.80E-04,0.00165795,0.205751345,3.90912,7.30E-04,105.89282,0,4367.09196,137.916484,488.0955206,5.68298413,0.073907751,0.014775588,22.8043935,15.27262,8.84893,0.32427797,0.00296,3.23532481,0.00792,0.033020392,8.100306078,93.06940868,132.3561168,20.57575721,15.99919844,1.24151,8833.411395,0.03408,0.16155,0.02951 +2072,0,0.595320634,2.665351278,0,3.53056803,0.04268,1.43584,0.868672008,1.60E-04,0.001523521,0.19910513,3.76704,6.60E-04,105.86884,0,4365.97432,136.8152142,485.0155069,5.42872496,0.068184805,0.013298029,23.123811,15.52164,8.98326,0.32566931,0.00282,3.29220072,0.00754,0.033253709,8.072611365,92.92047641,130.4278509,20.12228605,15.95126984,1.22812,8628.578664,0.03206,0.1563,0.02842 +2073,0,0.551735588,2.869751059,0,3.449413464,0.04137,1.36286,0.857912107,1.40E-04,0.001389093,0.192458915,3.62496,5.90E-04,105.84486,0,4364.85668,135.7139443,481.9354931,5.17446579,0.06246186,0.011820471,23.4432285,15.77066,9.11759,0.32706065,0.00268,3.34907663,0.00716,0.033487025,8.044916652,92.77154415,128.499585,19.66881488,15.90334124,1.21473,8423.745933,0.03004,0.15105,0.02733 +2074,0,0.508150541,3.07415084,0,3.368258897,0.04006,1.28988,0.847152206,1.20E-04,0.001254665,0.1858127,3.48288,5.20E-04,105.82088,0,4363.73904,134.6126745,478.8554794,4.92020662,0.056738915,0.010342912,23.762646,16.01968,9.25192,0.32845199,0.00254,3.40595254,0.00678,0.033720341,8.017221939,92.62261188,126.5713191,19.21534371,15.85541265,1.20134,8218.913203,0.02802,0.1458,0.02624 +2075,0,0.464565495,3.278550621,0,3.287104331,0.03875,1.2169,0.836392305,1.00E-04,0.001120236,0.179166485,3.3408,4.50E-04,105.7969,0,4362.6214,133.5114047,475.7754657,4.66594745,0.05101597,0.008865353,24.0820635,16.2687,9.38625,0.32984333,0.0024,3.46282845,0.0064,0.033953658,7.989527226,92.47367962,124.6430532,18.76187255,15.80748405,1.18795,8014.080472,0.026,0.14055,0.02515 +2076,0,0.420980449,3.482950402,0,3.205949764,0.03744,1.14392,0.825632404,8.00E-05,9.86E-04,0.17252027,3.19872,3.80E-04,105.77292,0,4361.50376,132.4101348,472.6954519,4.41168828,0.045293024,0.007387794,24.401481,16.51772,9.52058,0.33123467,0.00226,3.51970436,0.00602,0.034186974,7.961832513,92.32474736,122.7147873,18.30840138,15.75955545,1.17456,7809.247741,0.02398,0.1353,0.02406 +2077,0,0.377395403,3.687350184,0,3.124795197,0.03613,1.07094,0.814872503,6.00E-05,8.51E-04,0.165874055,3.05664,3.10E-04,105.74894,0,4360.38612,131.308865,469.6154382,4.15742911,0.039570079,0.005910235,24.7208985,16.76674,9.65491,0.33262601,0.00212,3.57658027,0.00564,0.03442029,7.934137799,92.17581509,120.7865214,17.85493021,15.71162685,1.16117,7604.41501,0.02196,0.13005,0.02297 +2078,0,0.333810356,3.891749965,0,3.043640631,0.03482,0.99796,0.804112602,4.00E-05,7.17E-04,0.15922784,2.91456,2.40E-04,105.72496,0,4359.26848,130.2075951,466.5354245,3.90316994,0.033847134,0.004432676,25.040316,17.01576,9.78924,0.33401735,0.00198,3.63345618,0.00526,0.034653606,7.906443086,92.02688283,118.8582555,17.40145905,15.66369825,1.14778,7399.58228,0.01994,0.1248,0.02188 +2079,0,0.29022531,4.096149746,0,2.962486064,0.03351,0.92498,0.793352701,2.00E-05,5.83E-04,0.152581625,2.77248,1.70E-04,105.70098,0,4358.15084,129.1063253,463.4554107,3.64891077,0.028124188,0.002955118,25.3597335,17.26478,9.92357,0.33540869,0.00184,3.69033209,0.00488,0.034886923,7.878748373,91.87795056,116.9299896,16.94798788,15.61576965,1.13439,7194.749549,0.01792,0.11955,0.02079 +2080,0,0.246640264,4.300549527,0,2.881331498,0.0322,0.852,0.7825928,0,4.48E-04,0.14593541,2.6304,1.00E-04,105.677,0,4357.0332,128.0050555,460.375397,3.3946516,0.022401243,0.001477559,25.679151,17.5138,10.0579,0.33680003,0.0017,3.747208,0.0045,0.035120239,7.85105366,91.7290183,115.0017237,16.49451671,15.56784105,1.121,6989.916818,0.0159,0.1143,0.0197 +2081,0,0.223562289,4.37846668,0,2.834081757,0.03104,0.81269,0.771572901,0,4.26E-04,0.141363939,2.53814,9.00E-05,105.65577,0,4355.88856,126.9229839,458.7871564,3.24927085,0.020790643,0.00134622,25.7665821,17.64934,10.09125,0.335660571,0.00162,3.77240947,0.00429,0.035120239,7.819547031,91.91239774,114.1759161,16.32572665,15.50546172,1.10624,6900.56143,0.01501,0.1107,0.01899 +2082,0,0.200484314,4.456383832,0,2.786832017,0.02988,0.77338,0.760553002,0,4.03E-04,0.136792468,2.44588,8.00E-05,105.63454,0,4354.74392,125.8409123,457.1989158,3.1038901,0.019180042,0.001214882,25.8540132,17.78488,10.1246,0.334521112,0.00154,3.79761094,0.00408,0.035120239,7.788040402,92.09577717,113.3501085,16.15693658,15.44308238,1.09148,6811.206042,0.01412,0.1071,0.01828 +2083,0,0.177406339,4.534300984,0,2.739582276,0.02872,0.73407,0.749533103,0,3.81E-04,0.132220997,2.35362,7.00E-05,105.61331,0,4353.59928,124.7588406,455.6106752,2.95850935,0.017569442,0.001083543,25.9414443,17.92042,10.15795,0.333381653,0.00146,3.82281241,0.00387,0.035120239,7.756533772,92.27915661,112.5243008,15.98814651,15.38070305,1.07672,6721.850655,0.01323,0.1035,0.01757 +2084,0,0.154328364,4.612218136,0,2.692332536,0.02756,0.69476,0.738513204,0,3.58E-04,0.127649526,2.26136,6.00E-05,105.59208,0,4352.45464,123.676769,454.0224346,2.8131286,0.015958842,9.52E-04,26.0288754,18.05596,10.1913,0.332242194,0.00138,3.84801388,0.00366,0.035120239,7.725027143,92.46253605,111.6984932,15.81935644,15.31832372,1.06196,6632.495267,0.01234,0.0999,0.01686 +2085,0,0.131250389,4.690135289,0,2.645082796,0.0264,0.65545,0.727493305,0,3.36E-04,0.123078055,2.1691,5.00E-05,105.57085,0,4351.31,122.5946974,452.4341941,2.66774785,0.014348241,8.21E-04,26.1163065,18.1915,10.22465,0.331102735,0.0013,3.87321535,0.00345,0.035120239,7.693520514,92.64591549,110.8726856,15.65056638,15.25594439,1.0472,6543.139879,0.01145,0.0963,0.01615 +2086,0,0.108172414,4.768052441,0,2.597833055,0.02524,0.61614,0.716473406,0,3.14E-04,0.118506584,2.07684,4.00E-05,105.54962,0,4350.16536,121.5126258,450.8459535,2.5223671,0.012737641,6.90E-04,26.2037376,18.32704,10.258,0.329963276,0.00122,3.89841682,0.00324,0.035120239,7.662013885,92.82929493,110.0468779,15.48177631,15.19356505,1.03244,6453.784491,0.01056,0.0927,0.01544 +2087,0,0.085094439,4.845969593,0,2.550583315,0.02408,0.57683,0.705453507,0,2.91E-04,0.113935113,1.98458,3.00E-05,105.52839,0,4349.02072,120.4305542,449.2577129,2.37698635,0.011127041,5.58E-04,26.2911687,18.46258,10.29135,0.328823817,0.00114,3.92361829,0.00303,0.035120239,7.630507255,93.01267436,109.2210703,15.31298624,15.13118572,1.01768,6364.429103,0.00967,0.0891,0.01473 +2088,0,0.062016464,4.923886746,0,2.503333575,0.02292,0.53752,0.694433608,0,2.69E-04,0.109363642,1.89232,2.00E-05,105.50716,0,4347.87608,119.3484826,447.6694723,2.2316056,0.00951644,4.27E-04,26.3785998,18.59812,10.3247,0.327684358,0.00106,3.94881976,0.00282,0.035120239,7.599000626,93.1960538,108.3952627,15.14419618,15.06880639,1.00292,6275.073715,0.00878,0.0855,0.01402 +2089,0,0.038938489,5.001803898,0,2.456083834,0.02176,0.49821,0.683413709,0,2.46E-04,0.104792171,1.80006,1.00E-05,105.48593,0,4346.73144,118.266411,446.0812317,2.08622485,0.00790584,2.96E-04,26.4660309,18.73366,10.35805,0.326544899,9.80E-04,3.97402123,0.00261,0.035120239,7.567493997,93.37943324,107.569455,14.97540611,15.00642706,0.98816,6185.718327,0.00789,0.0819,0.01331 +2090,0,0.015860514,5.07972105,0,2.408834094,0.0206,0.4589,0.67239381,0,2.24E-04,0.1002207,1.7078,0,105.4647,0,4345.5868,117.1843394,444.4929911,1.9408441,0.00629524,1.64E-04,26.553462,18.8692,10.3914,0.32540544,9.00E-04,3.9992227,0.0024,0.035120239,7.535987368,93.56281268,106.7436474,14.80661604,14.94404772,0.9734,6096.36294,0.007,0.0783,0.0126 +2091,0,0,5.104175413,0.0075815,2.385737614,0.02033,0.43762,0.663423893,0,2.02E-04,0.097055836,1.64769,0.0012,105.45976,0,4344.65509,116.2353428,443.5814803,1.86679494,0.007758679,0.001050708,26.5581777,18.94417,10.39321,0.323618289,8.10E-04,4.00937449,0.00216,0.03504656,7.513404172,93.40017003,106.5424534,14.69309229,14.92930272,0.95677,6054.271584,0.0071,0.07583,0.01215 +2092,0,0,5.128629776,0.031023514,2.362641134,0.02006,0.41634,0.654453976,0,1.79E-04,0.093890972,1.58758,0.0024,105.45482,0,4343.72338,115.2863463,442.6699695,1.79274578,0.009222117,0.001937244,26.5628934,19.01914,10.39502,0.321831138,7.20E-04,4.01952628,0.00192,0.034972881,7.490820976,93.23752738,106.3412595,14.57956853,14.91455772,0.94014,6012.180228,0.0072,0.07336,0.0117 +2093,0,0,5.153084139,0.054465527,2.339544654,0.01979,0.39506,0.645484059,0,1.57E-04,0.090726108,1.52747,0.0036,105.44988,0,4342.79167,114.3373497,441.7584587,1.71869662,0.010685556,0.002823779,26.5676091,19.09411,10.39683,0.320043987,6.30E-04,4.02967807,0.00168,0.034899203,7.46823778,93.07488473,106.1400655,14.46604477,14.89981271,0.92351,5970.088873,0.0073,0.07089,0.01125 +2094,0,0,5.177538502,0.077907541,2.316448174,0.01952,0.37378,0.636514142,0,1.34E-04,0.087561244,1.46736,0.0048,105.44494,0,4341.85996,113.3883531,440.8469479,1.64464746,0.012148995,0.003710314,26.5723248,19.16908,10.39864,0.318256836,5.40E-04,4.03982986,0.00144,0.034825524,7.445654584,92.91224208,105.9388716,14.35252101,14.88506771,0.90688,5927.997517,0.0074,0.06842,0.0108 +2095,0,0,5.201992865,0.101349555,2.293351694,0.01925,0.3525,0.627544225,0,1.12E-04,0.08439638,1.40725,0.006,105.44,0,4340.92825,112.4393566,439.9354371,1.5705983,0.013612434,0.00459685,26.5770405,19.24405,10.40045,0.316469685,4.50E-04,4.04998165,0.0012,0.034751845,7.423071388,92.74959943,105.7376776,14.23899725,14.8703227,0.89025,5885.906161,0.0075,0.06595,0.01035 +2096,0,0,5.226447228,0.124791568,2.270255214,0.01898,0.33122,0.618574308,0,8.96E-05,0.081231515,1.34714,0.0072,105.43506,0,4339.99654,111.49036,439.0239263,1.49654914,0.015075873,0.005483385,26.5817562,19.31902,10.40226,0.314682534,3.60E-04,4.06013344,9.60E-04,0.034678166,7.400488193,92.58695678,105.5364836,14.1254735,14.8555777,0.87362,5843.814806,0.0076,0.06348,0.0099 +2097,0,0,5.250901591,0.148233582,2.247158734,0.01871,0.30994,0.609604391,0,6.72E-05,0.078066651,1.28703,0.0084,105.43012,0,4339.06483,110.5413635,438.1124155,1.42249998,0.016539312,0.00636992,26.5864719,19.39399,10.40407,0.312895383,2.70E-04,4.07028523,7.20E-04,0.034604487,7.377904997,92.42431413,105.3352897,14.01194974,14.8408327,0.85699,5801.72345,0.0077,0.06101,0.00945 +2098,0,0,5.275355954,0.171675596,2.224062254,0.01844,0.28866,0.600634474,0,4.48E-05,0.074901787,1.22692,0.0096,105.42518,0,4338.13312,109.5923669,437.2009047,1.34845082,0.01800275,0.007256455,26.5911876,19.46896,10.40588,0.311108232,1.80E-04,4.08043702,4.80E-04,0.034530809,7.355321801,92.26167148,105.1340957,13.89842598,14.82608769,0.84036,5759.632094,0.0078,0.05854,0.009 +2099,0,0,5.299810317,0.195117609,2.200965774,0.01817,0.26738,0.591664557,0,2.24E-05,0.071736923,1.16681,0.0108,105.42024,0,4337.20141,108.6433704,436.2893939,1.27440166,0.019466189,0.008142991,26.5959033,19.54393,10.40769,0.309321081,9.00E-05,4.09058881,2.40E-04,0.03445713,7.332738605,92.09902883,104.9329017,13.78490222,14.81134269,0.82373,5717.540739,0.0079,0.05607,0.00855 +2100,0,0,5.32426468,0.218559623,2.177869294,0.0179,0.2461,0.58269464,0,0,0.068572059,1.1067,0.012,105.4153,0,4336.2697,107.6943738,435.3778831,1.2003525,0.020929628,0.009029526,26.600619,19.6189,10.4095,0.30753393,0,4.1007406,0,0.034383451,7.310155409,91.93638618,104.7317078,13.67137846,14.79659769,0.8071,5675.449383,0.008,0.0536,0.0081 +2101,0,0,5.32426468,0.21418843,2.173168035,0.017780667,0.244459333,0.578810009,0,0,0.068114912,1.099322,0.01192,104.7125313,0,4307.361235,107.5277233,434.5851787,1.19235015,0.020790097,0.008969329,26.42328154,19.48810733,10.34010333,0.305483704,0,4.073402329,0,0.034154228,7.301394883,91.862731,104.4359833,13.63196724,14.78584103,0.801719333,5643.913843,0.007946667,0.053242667,0.008046 +2102,0,0,5.32426468,0.209817238,2.168466775,0.017661333,0.242818667,0.574925378,0,0,0.067657765,1.091944,0.01184,104.0097627,0,4278.452771,107.3610728,433.7924744,1.1843478,0.020650566,0.008909132,26.24594408,19.35731467,10.27070667,0.303433478,0,4.046064059,0,0.033925005,7.292634356,91.78907581,104.1402589,13.59255602,14.77508438,0.796338667,5612.378304,0.007893333,0.052885333,0.007992 +2103,0,0,5.32426468,0.205446045,2.163765516,0.017542,0.241178,0.571040747,0,0,0.067200618,1.084566,0.01176,103.306994,0,4249.544306,107.1944224,432.99977,1.17634545,0.020511035,0.008848935,26.06860662,19.226522,10.20131,0.301383251,0,4.018725788,0,0.033695782,7.283873829,91.71542063,103.8445345,13.5531448,14.76432773,0.790958,5580.842764,0.00784,0.052528,0.007938 +2104,0,0,5.32426468,0.201074853,2.159064257,0.017422667,0.239537333,0.567156116,0,0,0.066743471,1.077188,0.01168,102.6042253,0,4220.635841,107.0277719,432.2070657,1.1683431,0.020371505,0.008788739,25.89126916,19.09572933,10.13191333,0.299333025,0,3.991387517,0,0.033466559,7.275113303,91.64176545,103.54881,13.51373357,14.75357108,0.785577333,5549.307224,0.007786667,0.052170667,0.007884 +2105,0,0,5.32426468,0.196703661,2.154362998,0.017303333,0.237896667,0.563271485,0,0,0.066286324,1.06981,0.0116,101.9014567,0,4191.727377,106.8611214,431.4143613,1.16034075,0.020231974,0.008728542,25.7139317,18.96493667,10.06251667,0.297282799,0,3.964049247,0,0.033237336,7.266352776,91.56811027,103.2530856,13.47432235,14.74281443,0.780196667,5517.771685,0.007733333,0.051813333,0.00783 +2106,0,0,5.32426468,0.192332468,2.149661738,0.017184,0.236256,0.559386854,0,0,0.065829177,1.062432,0.01152,101.198688,0,4162.818912,106.6944709,430.621657,1.1523384,0.020092443,0.008668345,25.53659424,18.834144,9.99312,0.295232573,0,3.936710976,0,0.033008113,7.257592249,91.49445508,102.9573611,13.43491113,14.73205778,0.774816,5486.236145,0.00768,0.051456,0.007776 +2107,0,0,5.32426468,0.187961276,2.144960479,0.017064667,0.234615333,0.555502223,0,0,0.06537203,1.055054,0.01144,100.4959193,0,4133.910447,106.5278204,429.8289526,1.14433605,0.019952912,0.008608148,25.35925678,18.70335133,9.923723333,0.293182347,0,3.909372705,0,0.03277889,7.248831722,91.4207999,102.6616367,13.39549991,14.72130113,0.769435333,5454.700605,0.007626667,0.051098667,0.007722 +2108,0,0,5.32426468,0.183590083,2.14025922,0.016945333,0.232974667,0.551617593,0,0,0.064914883,1.047676,0.01136,99.79315067,0,4105.001983,106.3611699,429.0362483,1.1363337,0.019813381,0.008547951,25.18191932,18.57255867,9.854326667,0.29113212,0,3.882034435,0,0.032549667,7.240071196,91.34714472,102.3659122,13.35608868,14.71054448,0.764054667,5423.165066,0.007573333,0.050741333,0.007668 +2109,0,0,5.32426468,0.179218891,2.135557961,0.016826,0.231334,0.547732962,0,0,0.064457735,1.040298,0.01128,99.090382,0,4076.093518,106.1945194,428.2435439,1.12833135,0.01967385,0.008487754,25.00458186,18.441766,9.78493,0.289081894,0,3.854696164,0,0.032320444,7.231310669,91.27348954,102.0701878,13.31667746,14.69978783,0.758674,5391.629526,0.00752,0.050384,0.007614 +2110,0,0,5.32426468,0.174847698,2.130856701,0.016706667,0.229693333,0.543848331,0,0,0.064000588,1.03292,0.0112,98.38761333,0,4047.185053,106.027869,427.4508396,1.120329,0.019534319,0.008427558,24.8272444,18.31097333,9.715533333,0.287031668,0,3.827357893,0,0.032091221,7.222550142,91.19983435,101.7744634,13.27726624,14.68903118,0.753293333,5360.093986,0.007466667,0.050026667,0.00756 +2111,0,0,5.32426468,0.170476506,2.126155442,0.016587333,0.228052667,0.5399637,0,0,0.063543441,1.025542,0.01112,97.68484467,0,4018.276589,105.8612185,426.6581352,1.11232665,0.019394789,0.008367361,24.64990694,18.18018067,9.646136667,0.284981442,0,3.800019623,0,0.031861998,7.213789615,91.12617917,101.4787389,13.23785502,14.67827453,0.747912667,5328.558446,0.007413333,0.049669333,0.007506 +2112,0,0,5.32426468,0.166105313,2.121454183,0.016468,0.226412,0.536079069,0,0,0.063086294,1.018164,0.01104,96.982076,0,3989.368124,105.694568,425.8654309,1.1043243,0.019255258,0.008307164,24.47256948,18.049388,9.57674,0.282931216,0,3.772681352,0,0.031632775,7.205029089,91.05252399,101.1830145,13.19844379,14.66751788,0.742532,5297.022907,0.00736,0.049312,0.007452 +2113,0,0,5.32426468,0.161734121,2.116752924,0.016348667,0.224771333,0.532194438,0,0,0.062629147,1.010786,0.01096,96.27930733,0,3960.459659,105.5279175,425.0727265,1.09632195,0.019115727,0.008246967,24.29523202,17.91859533,9.507343333,0.280880989,0,3.745343081,0,0.031403552,7.196268562,90.97886881,100.88729,13.15903257,14.65676123,0.737151333,5265.487367,0.007306667,0.048954667,0.007398 +2114,0,0,5.32426468,0.157362928,2.112051664,0.016229333,0.223130667,0.528309807,0,0,0.062172,1.003408,0.01088,95.57653867,0,3931.551195,105.361267,424.2800222,1.0883196,0.018976196,0.00818677,24.11789456,17.78780267,9.437946667,0.278830763,0,3.718004811,0,0.031174329,7.187508035,90.90521362,100.5915656,13.11962135,14.64600458,0.731770667,5233.951827,0.007253333,0.048597333,0.007344 +2115,0,0,5.32426468,0.152991736,2.107350405,0.01611,0.22149,0.524425176,0,0,0.061714853,0.99603,0.0108,94.87377,0,3902.64273,105.1946165,423.4873178,1.08031725,0.018836665,0.008126573,23.9405571,17.65701,9.36855,0.276780537,0,3.69066654,0,0.030945106,7.178747508,90.83155844,100.2958412,13.08021013,14.63524793,0.72639,5202.416288,0.0072,0.04824,0.00729 +2116,0,0,5.32426468,0.148620544,2.102649146,0.015990667,0.219849333,0.520540545,0,0,0.061257706,0.988652,0.01072,94.17100133,0,3873.734265,105.027966,422.6946135,1.0723149,0.018697134,0.008066377,23.76321964,17.52621733,9.299153333,0.274730311,0,3.663328269,0,0.030715883,7.169986982,90.75790326,100.0001167,13.0407989,14.62449128,0.721009333,5170.880748,0.007146667,0.047882667,0.007236 +2117,0,0,5.32426468,0.144249351,2.097947887,0.015871333,0.218208667,0.516655914,0,0,0.060800559,0.981274,0.01064,93.46823267,0,3844.825801,104.8613156,421.9019091,1.06431255,0.018557603,0.00800618,23.58588218,17.39542467,9.229756667,0.272680085,0,3.635989999,0,0.03048666,7.161226455,90.68424808,99.70439229,13.00138768,14.61373463,0.715628667,5139.345208,0.007093333,0.047525333,0.007182 +2118,0,0,5.32426468,0.139878159,2.093246628,0.015752,0.216568,0.512771283,0,0,0.060343412,0.973896,0.01056,92.765464,0,3815.917336,104.6946651,421.1092048,1.0563102,0.018418073,0.007945983,23.40854472,17.264632,9.16036,0.270629858,0,3.608651728,0,0.030257437,7.152465928,90.61059289,99.40866785,12.96197646,14.60297798,0.710248,5107.809669,0.00704,0.047168,0.007128 +2119,0,0,5.32426468,0.135506966,2.088545368,0.015632667,0.214927333,0.508886652,0,0,0.059886265,0.966518,0.01048,92.06269533,0,3787.008871,104.5280146,420.3165004,1.04830785,0.018278542,0.007885786,23.23120726,17.13383933,9.090963333,0.268579632,0,3.581313457,0,0.030028214,7.143705401,90.53693771,99.1129434,12.92256524,14.59222133,0.704867333,5076.274129,0.006986667,0.046810667,0.007074 +2120,0,0,5.32426468,0.131135774,2.083844109,0.015513333,0.213286667,0.505002021,0,0,0.059429118,0.95914,0.0104,91.35992667,0,3758.100407,104.3613641,419.5237961,1.0403055,0.018139011,0.007825589,23.0538698,17.00304667,9.021566667,0.266529406,0,3.553975187,0,0.029798991,7.134944875,90.46328253,98.81721896,12.88315401,14.58146468,0.699486667,5044.738589,0.006933333,0.046453333,0.00702 +2121,0,0,5.32426468,0.126764581,2.07914285,0.015394,0.211646,0.50111739,0,0,0.058971971,0.951762,0.01032,90.657158,0,3729.191942,104.1947136,418.7310917,1.03230315,0.01799948,0.007765392,22.87653234,16.872254,8.95217,0.26447918,0,3.526636916,0,0.029569768,7.126184348,90.38962735,98.52149452,12.84374279,14.57070803,0.694106,5013.20305,0.00688,0.046096,0.006966 +2122,0,0,5.32426468,0.122393389,2.074441591,0.015274667,0.210005333,0.497232759,0,0,0.058514824,0.944384,0.01024,89.95438933,0,3700.283477,104.0280631,417.9383874,1.0243008,0.017859949,0.007705196,22.69919488,16.74146133,8.882773333,0.262428954,0,3.499298645,0,0.029340545,7.117423821,90.31597216,98.22577008,12.80433157,14.55995138,0.688725333,4981.66751,0.006826667,0.045738667,0.006912 +2123,0,0,5.32426468,0.118022196,2.069740331,0.015155333,0.208364667,0.493348129,0,0,0.058057677,0.937006,0.01016,89.25162067,0,3671.375013,103.8614127,417.1456831,1.01629845,0.017720418,0.007644999,22.52185742,16.61066867,8.813376667,0.260378727,0,3.471960375,0,0.029111322,7.108663295,90.24231698,97.93004564,12.76492035,14.54919473,0.683344667,4950.13197,0.006773333,0.045381333,0.006858 +2124,0,0,5.32426468,0.113651004,2.065039072,0.015036,0.206724,0.489463498,0,0,0.05760053,0.929628,0.01008,88.548852,0,3642.466548,103.6947622,416.3529787,1.0082961,0.017580888,0.007584802,22.34451996,16.479876,8.74398,0.258328501,0,3.444622104,0,0.028882099,7.099902768,90.1686618,97.6343212,12.72550912,14.53843808,0.677964,4918.596431,0.00672,0.045024,0.006804 +2125,0,0,5.32426468,0.109279811,2.060337813,0.014916667,0.205083333,0.485578867,0,0,0.057143383,0.92225,0.01,87.84608333,0,3613.558083,103.5281117,415.5602744,1.00029375,0.017441357,0.007524605,22.1671825,16.34908333,8.674583333,0.256278275,0,3.417283833,0,0.028652876,7.091142241,90.09500662,97.33859676,12.6860979,14.52768143,0.672583333,4887.060891,0.006666667,0.044666667,0.00675 +2126,0,0,5.32426468,0.104908619,2.055636554,0.014797333,0.203442667,0.481694236,0,0,0.056686235,0.914872,0.00992,87.14331467,0,3584.649619,103.3614612,414.76757,0.9922914,0.017301826,0.007464408,21.98984504,16.21829067,8.605186667,0.254228049,0,3.389945563,0,0.028423653,7.082381714,90.02135143,97.04287232,12.64668668,14.51692478,0.667202667,4855.525351,0.006613333,0.044309333,0.006696 +2127,0,0,5.32426468,0.100537426,2.050935294,0.014678,0.201802,0.477809605,0,0,0.056229088,0.907494,0.00984,86.440546,0,3555.741154,103.1948107,413.9748657,0.98428905,0.017162295,0.007404211,21.81250758,16.087498,8.53579,0.252177823,0,3.362607292,0,0.02819443,7.073621188,89.94769625,96.74714788,12.60727546,14.50616813,0.661822,4823.989811,0.00656,0.043952,0.006642 +2128,0,0,5.32426468,0.096166234,2.046234035,0.014558667,0.200161333,0.473924974,0,0,0.055771941,0.900116,0.00976,85.73777733,0,3526.832689,103.0281602,413.1821613,0.9762867,0.017022764,0.007344014,21.63517012,15.95670533,8.466393333,0.250127596,0,3.335269021,0,0.027965207,7.064860661,89.87404107,96.45142344,12.56786423,14.49541148,0.656441333,4792.454272,0.006506667,0.043594667,0.006588 +2129,0,0,5.32426468,0.091795042,2.041532776,0.014439333,0.198520667,0.470040343,0,0,0.055314794,0.892738,0.00968,85.03500867,0,3497.924225,102.8615097,412.389457,0.96828435,0.016883233,0.007283818,21.45783266,15.82591267,8.396996667,0.24807737,0,3.307930751,0,0.027735984,7.056100134,89.80038589,96.155699,12.52845301,14.48465483,0.651060667,4760.918732,0.006453333,0.043237333,0.006534 +2130,0,0,5.32426468,0.087423849,2.036831517,0.01432,0.19688,0.466155712,0,0,0.054857647,0.88536,0.0096,84.33224,0,3469.01576,102.6948593,411.5967526,0.960282,0.016743702,0.007223621,21.2804952,15.69512,8.3276,0.246027144,0,3.28059248,0,0.027506761,7.047339607,89.7267307,95.85997456,12.48904179,14.47389818,0.64568,4729.383192,0.0064,0.04288,0.00648 +2131,0,0,5.32426468,0.083052657,2.032130258,0.014200667,0.195239333,0.462271081,0,0,0.0544005,0.877982,0.00952,83.62947133,0,3440.107295,102.5282088,410.8040483,0.95227965,0.016604172,0.007163424,21.10315774,15.56432733,8.258203333,0.243976918,0,3.253254209,0,0.027277538,7.038579081,89.65307552,95.56425012,12.44963057,14.46314153,0.640299333,4697.847653,0.006346667,0.042522667,0.006426 +2132,0,0,5.32426468,0.078681464,2.027428998,0.014081333,0.193598667,0.45838645,0,0,0.053943353,0.870604,0.00944,82.92670267,0,3411.198831,102.3615583,410.0113439,0.9442773,0.016464641,0.007103227,20.92582028,15.43353467,8.188806667,0.241926692,0,3.225915939,0,0.027048315,7.029818554,89.57942034,95.26852568,12.41021934,14.45238488,0.634918667,4666.312113,0.006293333,0.042165333,0.006372 +2133,0,0,5.32426468,0.074310272,2.022727739,0.013962,0.191958,0.454501819,0,0,0.053486206,0.863226,0.00936,82.223934,0,3382.290366,102.1949078,409.2186396,0.93627495,0.01632511,0.00704303,20.74848282,15.302742,8.11941,0.239876465,0,3.198577668,0,0.026819092,7.021058027,89.50576516,94.97280124,12.37080812,14.44162823,0.629538,4634.776573,0.00624,0.041808,0.006318 +2134,0,0,5.32426468,0.069939079,2.01802648,0.013842667,0.190317333,0.450617188,0,0,0.053029059,0.855848,0.00928,81.52116533,0,3353.381901,102.0282573,408.4259352,0.9282726,0.016185579,0.006982833,20.57114536,15.17194933,8.050013333,0.237826239,0,3.171239397,0,0.026589869,7.0122975,89.43210997,94.6770768,12.3313969,14.43087158,0.624157333,4603.241034,0.006186667,0.041450667,0.006264 +2135,0,0,5.32426468,0.065567887,2.013325221,0.013723333,0.188676667,0.446732557,0,0,0.052571912,0.84847,0.0092,80.81839667,0,3324.473437,101.8616068,407.6332309,0.92027025,0.016046048,0.006922637,20.3938079,15.04115667,7.980616667,0.235776013,0,3.143901127,0,0.026360646,7.003536974,89.35845479,94.38135236,12.29198567,14.42011492,0.618776667,4571.705494,0.006133333,0.041093333,0.00621 +2136,0,0,5.32426468,0.061196694,2.008623961,0.013604,0.187036,0.442847926,0,0,0.052114765,0.841092,0.00912,80.115628,0,3295.564972,101.6949564,406.8405265,0.9122679,0.015906517,0.00686244,20.21647044,14.910364,7.91122,0.233725787,0,3.116562856,0,0.026131423,6.994776447,89.28479961,94.08562792,12.25257445,14.40935827,0.613396,4540.169954,0.00608,0.040736,0.006156 +2137,0,0,5.32426468,0.056825502,2.003922702,0.013484667,0.185395333,0.438963295,0,0,0.051657618,0.833714,0.00904,79.41285933,0,3266.656507,101.5283059,406.0478222,0.90426555,0.015766986,0.006802243,20.03913298,14.77957133,7.841823333,0.231675561,0,3.089224585,0,0.0259022,6.98601592,89.21114443,93.78990348,12.21316323,14.39860162,0.608015333,4508.634415,0.006026667,0.040378667,0.006102 +2138,0,0,5.32426468,0.052454309,1.999221443,0.013365333,0.183754667,0.435078665,0,0,0.051200471,0.826336,0.00896,78.71009067,0,3237.748043,101.3616554,405.2551178,0.8962632,0.015627456,0.006742046,19.86179552,14.64877867,7.772426667,0.229625334,0,3.061886315,0,0.025672977,6.977255393,89.13748924,93.49417904,12.17375201,14.38784497,0.602634667,4477.098875,0.005973333,0.040021333,0.006048 +2139,0,0,5.32426468,0.048083117,1.994520184,0.013246,0.182114,0.431194034,0,0,0.050743324,0.818958,0.00888,78.007322,0,3208.839578,101.1950049,404.4624135,0.88826085,0.015487925,0.006681849,19.68445806,14.517986,7.70303,0.227575108,0,3.034548044,0,0.025443754,6.968494867,89.06383406,93.1984546,12.13434078,14.37708832,0.597254,4445.563335,0.00592,0.039664,0.005994 +2140,0,0,5.32426468,0.043711925,1.989818924,0.013126667,0.180473333,0.427309403,0,0,0.050286177,0.81158,0.0088,77.30455333,0,3179.931113,101.0283544,403.6697091,0.8802585,0.015348394,0.006621652,19.5071206,14.38719333,7.633633333,0.225524882,0,3.007209773,0,0.025214531,6.95973434,88.99017888,92.90273016,12.09492956,14.36633167,0.591873333,4414.027795,0.005866667,0.039306667,0.00594 +2141,0,0,5.146789191,0.039340732,1.985117665,0.013007333,0.178832667,0.423424772,0,0,0.04982903,0.804202,0.00872,76.60178467,0,3151.022649,100.8617039,402.8770048,0.87225615,0.015208863,0.006561456,19.32978314,14.25640067,7.564236667,0.223474656,0,2.979871503,0,0.024985308,6.950973813,88.9165237,92.60700572,12.05551834,14.35557502,0.586492667,4382.492256,0.005813333,0.038949333,0.005886 +2142,0,0,4.969313702,0.03496954,1.980416406,0.012888,0.177192,0.419540141,0,0,0.049371882,0.796824,0.00864,75.899016,0,3122.114184,100.6950534,402.0843004,0.8642538,0.015069332,0.006501259,19.15244568,14.125608,7.49484,0.22142443,0,2.952533232,0,0.024756085,6.942213286,88.84286851,92.31128128,12.01610712,14.34481837,0.581112,4350.956716,0.00576,0.038592,0.005832 +2143,0,0,4.791838212,0.030598347,1.975715147,0.012768667,0.175551333,0.41565551,0,0,0.048914735,0.789446,0.00856,75.19624733,0,3093.205719,100.528403,401.2915961,0.85625145,0.014929801,0.006441062,18.97510822,13.99481533,7.425443333,0.219374203,0,2.925194961,0,0.024526862,6.93345276,88.76921333,92.01555684,11.97669589,14.33406172,0.575731333,4319.421176,0.005706667,0.038234667,0.005778 +2144,0,0,4.614362723,0.026227155,1.971013887,0.012649333,0.173910667,0.411770879,0,0,0.048457588,0.782068,0.00848,74.49347867,0,3064.297255,100.3617525,400.4988917,0.8482491,0.01479027,0.006380865,18.79777076,13.86402267,7.356046667,0.217323977,0,2.897856691,0,0.024297639,6.924692233,88.69555815,91.71983239,11.93728467,14.32330507,0.570350667,4287.885637,0.005653333,0.037877333,0.005724 +2145,0,0,4.436887234,0.021855962,1.966312628,0.01253,0.17227,0.407886248,0,0,0.048000441,0.77469,0.0084,73.79071,0,3035.38879,100.195102,399.7061874,0.84024675,0.01465074,0.006320668,18.6204333,13.73323,7.28665,0.215273751,0,2.87051842,0,0.024068416,6.915931706,88.62190297,91.42410795,11.89787345,14.31254842,0.56497,4256.350097,0.0056,0.03752,0.00567 +2146,0,0,4.259411744,0.01748477,1.961611369,0.012410667,0.170629333,0.404001617,0,0,0.047543294,0.767312,0.00832,73.08794133,0,3006.480325,100.0284515,398.913483,0.8322444,0.014511209,0.006260471,18.44309584,13.60243733,7.217253333,0.213223525,0,2.843180149,0,0.023839193,6.90717118,88.54824778,91.12838351,11.85846223,14.30179177,0.559589333,4224.814557,0.005546667,0.037162667,0.005616 +2147,0,0,4.081936255,0.013113577,1.95691011,0.012291333,0.168988667,0.400116986,0,0,0.047086147,0.759934,0.00824,72.38517267,0,2977.571861,99.86180102,398.1207787,0.82424205,0.014371678,0.006200275,18.26575838,13.47164467,7.147856667,0.211173299,0,2.815841879,0,0.02360997,6.898410653,88.4745926,90.83265907,11.819051,14.29103512,0.554208667,4193.279018,0.005493333,0.036805333,0.005562 +2148,0,0,3.904460766,0.008742385,1.952208851,0.012172,0.167348,0.396232355,0,0,0.046629,0.752556,0.00816,71.682404,0,2948.663396,99.69515054,397.3280743,0.8162397,0.014232147,0.006140078,18.08842092,13.340852,7.07846,0.209123072,0,2.788503608,0,0.023380747,6.889650126,88.40093742,90.53693463,11.77963978,14.28027847,0.548828,4161.743478,0.00544,0.036448,0.005508 +2149,0,0,3.726985276,0.004371192,1.947507591,0.012052667,0.165707333,0.392347724,0,0,0.046171853,0.745178,0.00808,70.97963533,0,2919.754931,99.52850005,396.53537,0.80823735,0.014092616,0.006079881,17.91108346,13.21005933,7.009063333,0.207072846,0,2.761165337,0,0.023151524,6.880889599,88.32728224,90.24121019,11.74022856,14.26952182,0.543447333,4130.207938,0.005386667,0.036090667,0.005454 +2150,0,0,3.549509787,0,1.942806332,0.011933333,0.164066667,0.388463093,0,0,0.045714706,0.7378,0.008,70.27686667,0,2890.846467,99.36184957,395.7426656,0.800235,0.013953085,0.006019684,17.733746,13.07926667,6.939666667,0.20502262,0,2.733827067,0,0.022922301,6.872129073,88.25362705,89.94548575,11.70081734,14.25876517,0.538066667,4098.672399,0.005333333,0.035733333,0.0054 +2151,0,0,3.372034298,0,1.938105073,0.011814,0.162426,0.384578462,0,0,0.045257559,0.730422,0.00792,69.574098,0,2861.938002,99.19519908,394.9499613,0.79223265,0.013813554,0.005959487,17.55640854,12.948474,6.87027,0.202972394,0,2.706488796,0,0.022693078,6.863368546,88.17997187,89.64976131,11.66140611,14.24800852,0.532686,4067.136859,0.00528,0.035376,0.005346 +2152,0,0,3.194558808,0,1.933403814,0.011694667,0.160785333,0.380693831,0,0,0.044800412,0.723044,0.00784,68.87132933,0,2833.029537,99.0285486,394.1572569,0.7842303,0.013674024,0.00589929,17.37907108,12.81768133,6.800873333,0.200922168,0,2.679150525,0,0.022463855,6.854608019,88.10631669,89.35403687,11.62199489,14.23725187,0.527305333,4035.601319,0.005226667,0.035018667,0.005292 +2153,0,0,3.017083319,0,1.928702554,0.011575333,0.159144667,0.376809201,0,0,0.044343265,0.715666,0.00776,68.16856067,0,2804.121073,98.86189811,393.3645526,0.77622795,0.013534493,0.005839093,17.20173362,12.68688867,6.731476667,0.198871941,0,2.651812255,0,0.022234632,6.845847492,88.03266151,89.05831243,11.58258367,14.22649522,0.521924667,4004.065779,0.005173333,0.034661333,0.005238 +2154,0,0,2.83960783,0,1.924001295,0.011456,0.157504,0.37292457,0,0,0.043886118,0.708288,0.00768,67.465792,0,2775.212608,98.69524763,392.5718482,0.7682256,0.013394962,0.005778897,17.02439616,12.556096,6.66208,0.196821715,0,2.624473984,0,0.022005409,6.837086966,87.95900632,88.76258799,11.54317245,14.21573857,0.516544,3972.53024,0.00512,0.034304,0.005184 +2155,0,0,2.66213234,0,1.919300036,0.011336667,0.155863333,0.369039939,0,0,0.043428971,0.70091,0.0076,66.76302333,0,2746.304143,98.52859714,391.7791439,0.76022325,0.013255431,0.0057187,16.8470587,12.42530333,6.592683333,0.194771489,0,2.597135713,0,0.021776186,6.828326439,87.88535114,88.46686355,11.50376122,14.20498192,0.511163333,3940.9947,0.005066667,0.033946667,0.00513 +2156,0,0,2.484656851,0,1.914598777,0.011217333,0.154222667,0.365155308,0,0,0.042971824,0.693532,0.00752,66.06025467,0,2717.395679,98.36194666,390.9864395,0.7522209,0.0131159,0.005658503,16.66972124,12.29451067,6.523286667,0.192721263,0,2.569797443,0,0.021546963,6.819565912,87.81169596,88.17113911,11.46435,14.19422527,0.505782667,3909.45916,0.005013333,0.033589333,0.005076 +2157,0,0,2.307181362,0,1.909897517,0.011098,0.152582,0.361270677,0,0,0.042514677,0.686154,0.00744,65.357486,0,2688.487214,98.19529617,390.1937352,0.74421855,0.012976369,0.005598306,16.49238378,12.163718,6.45389,0.190671037,0,2.542459172,0,0.02131774,6.810805385,87.73804078,87.87541467,11.42493878,14.18346862,0.500402,3877.923621,0.00496,0.033232,0.005022 +2158,0,0,2.129705872,0,1.905196258,0.010978667,0.150941333,0.357386046,0,0,0.04205753,0.678776,0.00736,64.65471733,0,2659.578749,98.02864569,389.4010308,0.7362162,0.012836839,0.005538109,16.31504632,12.03292533,6.384493333,0.18862081,0,2.515120901,0,0.021088517,6.802044859,87.66438559,87.57969023,11.38552756,14.17271197,0.495021333,3846.388081,0.004906667,0.032874667,0.004968 +2159,0,0,1.952230383,0,1.900494999,0.010859333,0.149300667,0.353501415,0,0,0.041600382,0.671398,0.00728,63.95194867,0,2630.670285,97.8619952,388.6083265,0.72821385,0.012697308,0.005477912,16.13770886,11.90213267,6.315096667,0.186570584,0,2.487782631,0,0.020859294,6.793284332,87.59073041,87.28396579,11.34611633,14.16195532,0.489640667,3814.852541,0.004853333,0.032517333,0.004914 +2160,0,0,1.774754893,0,1.89579374,0.01074,0.14766,0.349616784,0,0,0.041143235,0.66402,0.0072,63.24918,0,2601.76182,97.69534472,387.8156221,0.7202115,0.012557777,0.005417716,15.9603714,11.77134,6.2457,0.184520358,0,2.46044436,0,0.020630071,6.784523805,87.51707523,86.98824135,11.30670511,14.15119867,0.48426,3783.317002,0.0048,0.03216,0.00486 +2161,0,0,1.597279404,0,1.891092481,0.010620667,0.146019333,0.345732153,0,0,0.040686088,0.656642,0.00712,62.54641133,0,2572.853355,97.52869423,387.0229178,0.71220915,0.012418246,0.005357519,15.78303394,11.64054733,6.176303333,0.182470132,0,2.433106089,0,0.020400848,6.775763278,87.44342005,86.69251691,11.26729389,14.14044202,0.478879333,3751.781462,0.004746667,0.031802667,0.004806 +2162,0,0,1.419803915,0,1.886391221,0.010501333,0.144378667,0.341847522,0,0,0.040228941,0.649264,0.00704,61.84364267,0,2543.944891,97.36204375,386.2302134,0.7042068,0.012278715,0.005297322,15.60569648,11.50975467,6.106906667,0.180419906,0,2.405767819,0,0.020171625,6.767002752,87.36976486,86.39679247,11.22788267,14.12968537,0.473498667,3720.245922,0.004693333,0.031445333,0.004752 +2163,0,0,1.242328425,0,1.881689962,0.010382,0.142738,0.337962891,0,0,0.039771794,0.641886,0.00696,61.140874,0,2515.036426,97.19539326,385.4375091,0.69620445,0.012139184,0.005237125,15.42835902,11.378962,6.03751,0.178369679,0,2.378429548,0,0.019942402,6.758242225,87.29610968,86.10106803,11.18847144,14.11892872,0.468118,3688.710383,0.00464,0.031088,0.004698 +2164,0,0,1.064852936,0,1.876988703,0.010262667,0.141097333,0.33407826,0,0,0.039314647,0.634508,0.00688,60.43810533,0,2486.127961,97.02874278,384.6448047,0.6882021,0.011999653,0.005176928,15.25102156,11.24816933,5.968113333,0.176319453,0,2.351091277,0,0.019713179,6.749481698,87.2224545,85.80534359,11.14906022,14.10817207,0.462737333,3657.174843,0.004586667,0.030730667,0.004644 +2165,0,0,0.887377447,0,1.872287444,0.010143333,0.139456667,0.330193629,0,0,0.0388575,0.62713,0.0068,59.73533667,0,2457.219497,96.8620923,383.8521004,0.68019975,0.011860123,0.005116731,15.0736841,11.11737667,5.898716667,0.174269227,0,2.323753007,0,0.019483956,6.740721171,87.14879932,85.50961915,11.109649,14.09741542,0.457356667,3625.639303,0.004533333,0.030373333,0.00459 +2166,0,0,0.709901957,0,1.867586184,0.010024,0.137816,0.326308998,0,0,0.038400353,0.619752,0.00672,59.032568,0,2428.311032,96.69544181,383.059396,0.6721974,0.011720592,0.005056535,14.89634664,10.986584,5.82932,0.172219001,0,2.296414736,0,0.019254733,6.731960645,87.07514413,85.21389471,11.07023778,14.08665877,0.451976,3594.103764,0.00448,0.030016,0.004536 +2167,0,0,0.532426468,0,1.862884925,0.009904667,0.136175333,0.322424367,0,0,0.037943206,0.612374,0.00664,58.32979933,0,2399.402567,96.52879133,382.2666917,0.66419505,0.011581061,0.004996338,14.71900918,10.85579133,5.759923333,0.170168775,0,2.269076465,0,0.01902551,6.723200118,87.00148895,84.91817027,11.03082655,14.07590212,0.446595333,3562.568224,0.004426667,0.029658667,0.004482 +2168,0,0,0.354950979,0,1.858183666,0.009785333,0.134534667,0.318539737,0,0,0.037486059,0.604996,0.00656,57.62703067,0,2370.494103,96.36214084,381.4739873,0.6561927,0.01144153,0.004936141,14.54167172,10.72499867,5.690526667,0.168118548,0,2.241738195,0,0.018796287,6.714439591,86.92783377,84.62244583,10.99141533,14.06514547,0.441214667,3531.032684,0.004373333,0.029301333,0.004428 +2169,0,0,0.177475489,0,1.853482407,0.009666,0.132894,0.314655106,0,0,0.037028912,0.597618,0.00648,56.924262,0,2341.585638,96.19549036,380.681283,0.64819035,0.011301999,0.004875944,14.36433426,10.594206,5.62113,0.166068322,0,2.214399924,0,0.018567064,6.705679065,86.85417859,84.32672138,10.95200411,14.05438881,0.435834,3499.497144,0.00432,0.028944,0.004374 +2170,0,0,0,0,1.848781147,0.009546667,0.131253333,0.310770475,0,0,0.036571765,0.59024,0.0064,56.22149333,0,2312.677173,96.02883987,379.8885786,0.640188,0.011162468,0.004815747,14.1869968,10.46341333,5.551733333,0.164018096,0,2.187061653,0,0.018337841,6.696918538,86.7805234,84.03099694,10.91259288,14.04363216,0.430453333,3467.961605,0.004266667,0.028586667,0.00432 +2171,0,0,0,0,1.844079888,0.009427333,0.129612667,0.306885844,0,0,0.036114618,0.582862,0.00632,55.51872467,0,2283.768709,95.86218939,379.0958743,0.63218565,0.011022937,0.00475555,14.00965934,10.33262067,5.482336667,0.16196787,0,2.159723383,0,0.018108618,6.688158011,86.70686822,83.7352725,10.87318166,14.03287551,0.425072667,3436.426065,0.004213333,0.028229333,0.004266 +2172,0,0,0,0,1.839378629,0.009308,0.127972,0.303001213,0,0,0.035657471,0.575484,0.00624,54.815956,0,2254.860244,95.6955389,378.3031699,0.6241833,0.010883407,0.004695354,13.83232188,10.201828,5.41294,0.159917644,0,2.132385112,0,0.017879395,6.679397484,86.63321304,83.43954806,10.83377044,14.02211886,0.419692,3404.890525,0.00416,0.027872,0.004212 +2173,0,0,0,0,1.83467737,0.009188667,0.126331333,0.299116582,0,0,0.035200324,0.568106,0.00616,54.11318733,0,2225.951779,95.52888842,377.5104656,0.61618095,0.010743876,0.004635157,13.65498442,10.07103533,5.343543333,0.157867417,0,2.105046841,0,0.017650172,6.670636958,86.55955786,83.14382362,10.79435922,14.01136221,0.414311333,3373.354986,0.004106667,0.027514667,0.004158 +2174,0,0,0,0,1.82997611,0.009069333,0.124690667,0.295231951,0,0,0.034743177,0.560728,0.00608,53.41041867,0,2197.043315,95.36223793,376.7177612,0.6081786,0.010604345,0.00457496,13.47764696,9.940242667,5.274146667,0.155817191,0,2.077708571,0,0.017420949,6.661876431,86.48590267,82.84809918,10.75494799,14.00060556,0.408930667,3341.819446,0.004053333,0.027157333,0.004104 +2175,0,0,0,0,1.825274851,0.00895,0.12305,0.29134732,0,0,0.03428603,0.55335,0.006,52.70765,0,2168.13485,95.19558745,375.9250569,0.60017625,0.010464814,0.004514763,13.3003095,9.80945,5.20475,0.153766965,0,2.0503703,0,0.017191726,6.653115904,86.41224749,82.55237474,10.71553677,13.98984891,0.40355,3310.283906,0.004,0.0268,0.00405 +2176,0,0,0,0,1.820573592,0.008830667,0.121409333,0.287462689,0,0,0.033828882,0.545972,0.00592,52.00488133,0,2139.226385,95.02893696,375.1323525,0.5921739,0.010325283,0.004454566,13.12297204,9.678657333,5.135353333,0.151716739,0,2.023032029,0,0.016962502,6.644355377,86.33859231,82.2566503,10.67612555,13.97909226,0.398169333,3278.748367,0.003946667,0.026442667,0.003996 +2177,0,0,0,0,1.815872333,0.008711333,0.119768667,0.283578058,0,0,0.033371735,0.538594,0.00584,51.30211267,0,2110.317921,94.86228648,374.3396482,0.58417155,0.010185752,0.004394369,12.94563458,9.547864667,5.065956667,0.149666513,0,1.995693759,0,0.016733279,6.635594851,86.26493713,81.96092586,10.63671433,13.96833561,0.392788667,3247.212827,0.003893333,0.026085333,0.003942 +2178,0,0,0,0,1.811171074,0.008592,0.118128,0.279693427,0,0,0.032914588,0.531216,0.00576,50.599344,0,2081.409456,94.69563599,373.5469438,0.5761692,0.010046221,0.004334172,12.76829712,9.417072,4.99656,0.147616286,0,1.968355488,0,0.016504056,6.626834324,86.19128194,81.66520142,10.5973031,13.95757896,0.387408,3215.677287,0.00384,0.025728,0.003888 +2179,0,0,0,0,1.806469814,0.008472667,0.116487333,0.275808796,0,0,0.032457441,0.523838,0.00568,49.89657533,0,2052.500991,94.52898551,372.7542395,0.56816685,0.009906691,0.004273976,12.59095966,9.286279333,4.927163333,0.14556606,0,1.941017217,0,0.016274833,6.618073797,86.11762676,81.36947698,10.55789188,13.94682231,0.382027333,3184.141748,0.003786667,0.025370667,0.003834 +2180,0,0,0,0,1.801768555,0.008353333,0.114846667,0.271924165,0,0,0.032000294,0.51646,0.0056,49.19380667,0,2023.592527,94.36233502,371.9615351,0.5601645,0.00976716,0.004213779,12.4136222,9.155486667,4.857766667,0.143515834,0,1.913678947,0,0.01604561,6.60931327,86.04397158,81.07375254,10.51848066,13.93606566,0.376646667,3152.606208,0.003733333,0.025013333,0.00378 +2181,0,0,0,0,1.797067296,0.008234,0.113206,0.268039534,0,0,0.031543147,0.509082,0.00552,48.491038,0,1994.684062,94.19568454,371.1688308,0.55216215,0.009627629,0.004153582,12.23628474,9.024694,4.78837,0.141465608,0,1.886340676,0,0.015816387,6.600552744,85.9703164,80.7780281,10.47906944,13.92530901,0.371266,3121.070668,0.00368,0.024656,0.003726 +2182,0,0,0,0,1.792366037,0.008114667,0.111565333,0.264154903,0,0,0.031086,0.501704,0.00544,47.78826933,0,1965.775597,94.02903405,370.3761264,0.5441598,0.009488098,0.004093385,12.05894728,8.893901333,4.718973333,0.139415382,0,1.859002405,0,0.015587164,6.591792217,85.89666121,80.48230366,10.43965821,13.91455236,0.365885333,3089.535128,0.003626667,0.024298667,0.003672 +2183,0,0,0,0,1.787664777,0.007995333,0.109924667,0.260270273,0,0,0.030628853,0.494326,0.00536,47.08550067,0,1936.867133,93.86238357,369.5834221,0.53615745,0.009348567,0.004033188,11.88160982,8.763108667,4.649576667,0.137365155,0,1.831664135,0,0.015357941,6.58303169,85.82300603,80.18657922,10.40024699,13.90379571,0.360504667,3057.999589,0.003573333,0.023941333,0.003618 +2184,0,0,0,0,1.782963518,0.007876,0.108284,0.256385642,0,0,0.030171706,0.486948,0.00528,46.382732,0,1907.958668,93.69573308,368.7907177,0.5281551,0.009209036,0.003972991,11.70427236,8.632316,4.58018,0.135314929,0,1.804325864,0,0.015128718,6.574271163,85.74935085,79.89085478,10.36083577,13.89303906,0.355124,3026.464049,0.00352,0.023584,0.003564 +2185,0,0,0,0,1.778262259,0.007756667,0.106643333,0.252501011,0,0,0.029714559,0.47957,0.0052,45.67996333,0,1879.050203,93.5290826,367.9980134,0.52015275,0.009069505,0.003912795,11.5269349,8.501523333,4.510783333,0.133264703,0,1.776987593,0,0.014899495,6.565510637,85.67569566,79.59513034,10.32142455,13.88228241,0.349743333,2994.928509,0.003466667,0.023226667,0.00351 +2186,0,0,0,0,1.773561,0.007637333,0.105002667,0.24861638,0,0,0.029257412,0.472192,0.00512,44.97719467,0,1850.141739,93.36243211,367.205309,0.5121504,0.008929975,0.003852598,11.34959744,8.370730667,4.441386667,0.131214477,0,1.749649323,0,0.014670272,6.55675011,85.60204048,79.2994059,10.28201332,13.87152576,0.344362667,2963.39297,0.003413333,0.022869333,0.003456 +2187,0,0,0,0,1.76885974,0.007518,0.103362,0.244731749,0,0,0.028800265,0.464814,0.00504,44.274426,0,1821.233274,93.19578163,366.4126047,0.50414805,0.008790444,0.003792401,11.17225998,8.239938,4.37199,0.129164251,0,1.722311052,0,0.014441049,6.547989583,85.5283853,79.00368146,10.2426021,13.86076911,0.338982,2931.85743,0.00336,0.022512,0.003402 +2188,0,0,0,0,1.764158481,0.007398667,0.101721333,0.240847118,0,0,0.028343118,0.457436,0.00496,43.57165733,0,1792.324809,93.02913115,365.6199003,0.4961457,0.008650913,0.003732204,10.99492252,8.109145333,4.302593333,0.127114024,0,1.694972781,0,0.014211826,6.539229057,85.45473012,78.70795702,10.20319088,13.85001246,0.333601333,2900.32189,0.003306667,0.022154667,0.003348 +2189,0,0,0,0,1.759457222,0.007279333,0.100080667,0.236962487,0,0,0.027885971,0.450058,0.00488,42.86888867,0,1763.416345,92.86248066,364.827196,0.48814335,0.008511382,0.003672007,10.81758506,7.978352667,4.233196667,0.125063798,0,1.667634511,0,0.013982603,6.53046853,85.38107493,78.41223258,10.16377966,13.83925581,0.328220667,2868.786351,0.003253333,0.021797333,0.003294 +2190,0,0,0,0,1.754755963,0.00716,0.09844,0.233077856,0,0,0.027428824,0.44268,0.0048,42.16612,0,1734.50788,92.69583018,364.0344916,0.480141,0.008371851,0.00361181,10.6402476,7.84756,4.1638,0.123013572,0,1.64029624,0,0.01375338,6.521708003,85.30741975,78.11650814,10.12436843,13.82849916,0.32284,2837.250811,0.0032,0.02144,0.00324 +2191,0,0,0,0,1.750054704,0.007040667,0.096799333,0.229193225,0,0,0.026971677,0.435302,0.00472,41.46335133,0,1705.599415,92.52917969,363.2417873,0.47213865,0.00823232,0.003551614,10.46291014,7.716767333,4.094403333,0.120963346,0,1.612957969,0,0.013524157,6.512947476,85.23376457,77.8207837,10.08495721,13.81774251,0.317459333,2805.715271,0.003146667,0.021082667,0.003186 +2192,0,0,0,0,1.745353444,0.006921333,0.095158667,0.225308594,0,0,0.026514529,0.427924,0.00464,40.76058267,0,1676.690951,92.36252921,362.4490829,0.4641363,0.008092789,0.003491417,10.28557268,7.585974667,4.025006667,0.11891312,0,1.585619699,0,0.013294934,6.50418695,85.16010939,77.52505926,10.04554599,13.80698586,0.312078667,2774.179732,0.003093333,0.020725333,0.003132 +2193,0,0,0,0,1.740652185,0.006802,0.093518,0.221423963,0,0,0.026057382,0.420546,0.00456,40.057814,0,1647.782486,92.19587872,361.6563786,0.45613395,0.007953259,0.00343122,10.10823522,7.455182,3.95561,0.116862893,0,1.558281428,0,0.013065711,6.495426423,85.0864542,77.22933482,10.00613477,13.79622921,0.306698,2742.644192,0.00304,0.020368,0.003078 +2194,0,0,0,0,1.735950926,0.006682667,0.091877333,0.217539332,0,0,0.025600235,0.413168,0.00448,39.35504533,0,1618.874021,92.02922824,360.8636742,0.4481316,0.007813728,0.003371023,9.93089776,7.324389333,3.886213333,0.114812667,0,1.530943157,0,0.012836488,6.486665896,85.01279902,76.93361037,9.966723543,13.78547256,0.301317333,2711.108652,0.002986667,0.020010667,0.003024 +2195,0,0,0,0,1.731249667,0.006563333,0.090236667,0.213654701,0,0,0.025143088,0.40579,0.0044,38.65227667,0,1589.965557,91.86257775,360.0709699,0.44012925,0.007674197,0.003310826,9.7535603,7.193596667,3.816816667,0.112762441,0,1.503604887,0,0.012607265,6.477905369,84.93914384,76.63788593,9.927312321,13.77471591,0.295936667,2679.573113,0.002933333,0.019653333,0.00297 +2196,0,0,0,0,1.726548407,0.006444,0.088596,0.20977007,0,0,0.024685941,0.398412,0.00432,37.949508,0,1561.057092,91.69592727,359.2782655,0.4321269,0.007534666,0.003250629,9.57622284,7.062804,3.74742,0.110712215,0,1.476266616,0,0.012378042,6.469144843,84.86548866,76.34216149,9.887901098,13.76395926,0.290556,2648.037573,0.00288,0.019296,0.002916 +2197,0,0,0,0,1.721847148,0.006324667,0.086955333,0.205885439,0,0,0.024228794,0.391034,0.00424,37.24673933,0,1532.148627,91.52927678,358.4855612,0.42412455,0.007395135,0.003190433,9.39888538,6.932011333,3.678023333,0.108661989,0,1.448928345,0,0.012148819,6.460384316,84.79183347,76.04643705,9.848489876,13.75320261,0.285175333,2616.502033,0.002826667,0.018938667,0.002862 +2198,0,0,0,0,1.717145889,0.006205333,0.085314667,0.202000809,0,0,0.023771647,0.383656,0.00416,36.54397067,0,1503.240163,91.3626263,357.6928568,0.4161222,0.007255604,0.003130236,9.22154792,6.801218667,3.608626667,0.106611762,0,1.421590075,0,0.011919596,6.451623789,84.71817829,75.75071261,9.809078653,13.74244596,0.279794667,2584.966493,0.002773333,0.018581333,0.002808 +2199,0,0,0,0,1.71244463,0.006086,0.083674,0.198116178,0,0,0.0233145,0.376278,0.00408,35.841202,0,1474.331698,91.19597581,356.9001525,0.40811985,0.007116074,0.003070039,9.04421046,6.670426,3.53923,0.104561536,0,1.394251804,0,0.011690373,6.442863262,84.64452311,75.45498817,9.76966743,13.73168931,0.274414,2553.430954,0.00272,0.018224,0.002754 +2200,0,0,0,0,1.70774337,0.005966667,0.082033333,0.194231547,0,0,0.022857353,0.3689,0.004,35.13843333,0,1445.423233,91.02932533,356.1074481,0.4001175,0.006976543,0.003009842,8.866873,6.539633333,3.469833333,0.10251131,0,1.366913533,0,0.01146115,6.434102736,84.57086793,75.15926373,9.730256208,13.72093266,0.269033333,2521.895414,0.002666667,0.017866667,0.0027 +2201,0,0,0,0,1.703042111,0.005847333,0.080392667,0.190346916,0,0,0.022400206,0.361522,0.00392,34.43566467,0,1416.514769,90.86267484,355.3147438,0.39211515,0.006837012,0.002949645,8.68953554,6.408840667,3.400436667,0.100461084,0,1.339575263,0,0.011231927,6.425342209,84.49721274,74.86353929,9.690844985,13.71017601,0.263652667,2490.359874,0.002613333,0.017509333,0.002646 +2202,0,0,0,0,1.698340852,0.005728,0.078752,0.186462285,0,0,0.021943059,0.354144,0.00384,33.732896,0,1387.606304,90.69602436,354.5220394,0.3841128,0.006697481,0.002889448,8.51219808,6.278048,3.33104,0.098410858,0,1.312236992,0,0.011002704,6.416581682,84.42355756,74.56781485,9.651433763,13.69941936,0.258272,2458.824335,0.00256,0.017152,0.002592 +2203,0,0,0,0,1.693639593,0.005608667,0.077111333,0.182577654,0,0,0.021485912,0.346766,0.00376,33.03012733,0,1358.697839,90.52937387,353.7293351,0.37611045,0.00655795,0.002829251,8.33486062,6.147255333,3.261643333,0.096360631,0,1.284898721,0,0.010773481,6.407821155,84.34990238,74.27209041,9.61202254,13.68866271,0.252891333,2427.288795,0.002506667,0.016794667,0.002538 +2204,0,0,0,0,1.688938333,0.005489333,0.075470667,0.178693023,0,0,0.021028765,0.339388,0.00368,32.32735867,0,1329.789375,90.36272339,352.9366307,0.3681081,0.006418419,0.002769055,8.15752316,6.016462667,3.192246667,0.094310405,0,1.257560451,0,0.010544258,6.399060629,84.2762472,73.97636597,9.572611318,13.67790605,0.247510667,2395.753255,0.002453333,0.016437333,0.002484 +2205,0,0,0,0,1.684237074,0.00537,0.07383,0.174808392,0,0,0.020571618,0.33201,0.0036,31.62459,0,1300.88091,90.1960729,352.1439264,0.36010575,0.006278888,0.002708858,7.9801857,5.88567,3.12285,0.092260179,0,1.23022218,0,0.010315035,6.390300102,84.20259201,73.68064153,9.533200095,13.6671494,0.24213,2364.217716,0.0024,0.01608,0.00243 +2206,0,0,0,0,1.679535815,0.005250667,0.072189333,0.170923761,0,0,0.020114471,0.324632,0.00352,30.92182133,0,1271.972445,90.02942242,351.351222,0.3521034,0.006139358,0.002648661,7.80284824,5.754877333,3.053453333,0.090209953,0,1.202883909,0,0.010085812,6.381539575,84.12893683,73.38491709,9.493788872,13.65639275,0.236749333,2332.682176,0.002346667,0.015722667,0.002376 +2207,0,0,0,0,1.674834556,0.005131333,0.070548667,0.16703913,0,0,0.019657324,0.317254,0.00344,30.21905267,0,1243.063981,89.86277193,350.5585177,0.34410105,0.005999827,0.002588464,7.62551078,5.624084667,2.984056667,0.088159727,0,1.175545639,0,0.009856589,6.372779048,84.05528165,73.08919265,9.45437765,13.6456361,0.231368667,2301.146636,0.002293333,0.015365333,0.002322 +2208,0,0,0,0,1.670133297,0.005012,0.068908,0.163154499,0,0,0.019200177,0.309876,0.00336,29.516284,0,1214.155516,89.69612145,349.7658133,0.3360987,0.005860296,0.002528267,7.44817332,5.493292,2.91466,0.0861095,0,1.148207368,0,0.009627366,6.364018522,83.98162647,72.79346821,9.414966427,13.63487945,0.225988,2269.611097,0.00224,0.015008,0.002268 +2209,0,0,0,0,1.665432037,0.004892667,0.067267333,0.159269868,0,0,0.018743029,0.302498,0.00328,28.81351533,0,1185.247051,89.52947096,348.973109,0.32809635,0.005720765,0.00246807,7.27083586,5.362499333,2.845263333,0.084059274,0,1.120869097,0,0.009398143,6.355257995,83.90797128,72.49774377,9.375555205,13.6241228,0.220607333,2238.075557,0.002186667,0.014650667,0.002214 +2210,0,0,0,0,1.660730778,0.004773333,0.065626667,0.155385237,0,0,0.018285882,0.29512,0.0032,28.11074667,0,1156.338587,89.36282048,348.1804046,0.320094,0.005581234,0.002407874,7.0934984,5.231706667,2.775866667,0.082009048,0,1.093530827,0,0.00916892,6.346497468,83.8343161,72.20201933,9.336143982,13.61336615,0.215226667,2206.540017,0.002133333,0.014293333,0.00216 +2211,0,0,0,0,1.656029519,0.004654,0.063986,0.151500606,0,0,0.017828735,0.287742,0.00312,27.407978,0,1127.430122,89.19617,347.3877003,0.31209165,0.005441703,0.002347677,6.91616094,5.100914,2.70647,0.079958822,0,1.066192556,0,0.008939697,6.337736942,83.76066092,71.90629489,9.29673276,13.6026095,0.209846,2175.004477,0.00208,0.013936,0.002106 +2212,0,0,0,0,1.65132826,0.004534667,0.062345333,0.147615975,0,0,0.017371588,0.280364,0.00304,26.70520933,0,1098.521657,89.02951951,346.5949959,0.3040893,0.005302172,0.00228748,6.73882348,4.970121333,2.637073333,0.077908596,0,1.038854285,0,0.008710474,6.328976415,83.68700574,71.61057045,9.257321537,13.59185285,0.204465333,2143.468938,0.002026667,0.013578667,0.002052 +2213,0,0,0,0,1.646627,0.004415333,0.060704667,0.143731345,0,0,0.016914441,0.272986,0.00296,26.00244067,0,1069.613193,88.86286903,345.8022916,0.29608695,0.005162642,0.002227283,6.56148602,4.839328667,2.567676667,0.075858369,0,1.011516015,0,0.008481251,6.320215888,83.61335055,71.31484601,9.217910314,13.5810962,0.199084667,2111.933398,0.001973333,0.013221333,0.001998 +2214,0,0,0,0,1.641925741,0.004296,0.059064,0.139846714,0,0,0.016457294,0.265608,0.00288,25.299672,0,1040.704728,88.69621854,345.0095872,0.2880846,0.005023111,0.002167086,6.38414856,4.708536,2.49828,0.073808143,0,0.984177744,0,0.008252028,6.311455361,83.53969537,71.01912157,9.178499092,13.57033955,0.193704,2080.397858,0.00192,0.012864,0.001944 +2215,0,0,0,0,1.637224482,0.004176667,0.057423333,0.135962083,0,0,0.016000147,0.25823,0.0028,24.59690333,0,1011.796263,88.52956806,344.2168829,0.28008225,0.00488358,0.002106889,6.2068111,4.577743333,2.428883333,0.071757917,0,0.956839473,0,0.008022805,6.302694835,83.46604019,70.72339713,9.139087869,13.5595829,0.188323333,2048.862319,0.001866667,0.012506667,0.00189 +2216,0,0,0,0,1.632523223,0.004057333,0.055782667,0.132077452,0,0,0.015543,0.250852,0.00272,23.89413467,0,982.8877987,88.36291757,343.4241785,0.2720799,0.004744049,0.002046693,6.02947364,4.446950667,2.359486667,0.069707691,0,0.929501203,0,0.007793582,6.293934308,83.39238501,70.42767269,9.099676647,13.54882625,0.182942667,2017.326779,0.001813333,0.012149333,0.001836 +2217,0,0,0,0,1.627821963,0.003938,0.054142,0.128192821,0,0,0.015085853,0.243474,0.00264,23.191366,0,953.979334,88.19626709,342.6314742,0.26407755,0.004604518,0.001986496,5.85213618,4.316158,2.29009,0.067657465,0,0.902162932,0,0.007564359,6.285173781,83.31872982,70.13194825,9.060265424,13.5380696,0.177562,1985.791239,0.00176,0.011792,0.001782 +2218,0,0,0,0,1.623120704,0.003818667,0.052501333,0.12430819,0,0,0.014628706,0.236096,0.00256,22.48859733,0,925.0708693,88.0296166,341.8387698,0.2560752,0.004464987,0.001926299,5.67479872,4.185365333,2.220693333,0.065607238,0,0.874824661,0,0.007335136,6.276413254,83.24507464,69.83622381,9.020854202,13.52731295,0.172181333,1954.2557,0.001706667,0.011434667,0.001728 +2219,0,0,0,0,1.618419445,0.003699333,0.050860667,0.120423559,0,0,0.014171559,0.228718,0.00248,21.78582867,0,896.1624047,87.86296612,341.0460655,0.24807285,0.004325456,0.001866102,5.49746126,4.054572667,2.151296667,0.063557012,0,0.847486391,0,0.007105913,6.267652728,83.17141946,69.54049936,8.981442979,13.5165563,0.166800667,1922.72016,0.001653333,0.011077333,0.001674 +2220,0,0,0,0,1.613718186,0.00358,0.04922,0.116538928,0,0,0.013714412,0.22134,0.0024,21.08306,0,867.25394,87.69631563,340.2533611,0.2400705,0.004185926,0.001805905,5.3201238,3.92378,2.0819,0.061506786,0,0.82014812,0,0.00687669,6.258892201,83.09776428,69.24477492,8.942031756,13.50579965,0.16142,1891.18462,0.0016,0.01072,0.00162 +2221,0,0,0,0,1.609016926,0.003460667,0.047579333,0.112654297,0,0,0.013257265,0.213962,0.00232,20.38029133,0,838.3454753,87.52966515,339.4606568,0.23206815,0.004046395,0.001745708,5.14278634,3.792987333,2.012503333,0.05945656,0,0.792809849,0,0.006647467,6.250131674,83.02410909,68.94905048,8.902620534,13.495043,0.156039333,1859.649081,0.001546667,0.010362667,0.001566 +2222,0,0,0,0,1.604315667,0.003341333,0.045938667,0.108769666,0,0,0.012800118,0.206584,0.00224,19.67752267,0,809.4370107,87.36301466,338.6679524,0.2240658,0.003906864,0.001685512,4.96544888,3.662194667,1.943106667,0.057406334,0,0.765471579,0,0.006418244,6.241371147,82.95045391,68.65332604,8.863209311,13.48428635,0.150658667,1828.113541,0.001493333,0.010005333,0.001512 +2223,0,0,0,0,1.599614408,0.003222,0.044298,0.104885035,0,0,0.012342971,0.199206,0.00216,18.974754,0,780.528546,87.19636418,337.8752481,0.21606345,0.003767333,0.001625315,4.78811142,3.531402,1.87371,0.055356107,0,0.738133308,0,0.006189021,6.232610621,82.87679873,68.3576016,8.823798089,13.4735297,0.145278,1796.578001,0.00144,0.009648,0.001458 +2224,0,0,0,0,1.594913149,0.003102667,0.042657333,0.101000404,0,0,0.011885824,0.191828,0.00208,18.27198533,0,751.6200813,87.02971369,337.0825437,0.2080611,0.003627802,0.001565118,4.61077396,3.400609333,1.804313333,0.053305881,0,0.710795037,0,0.005959798,6.223850094,82.80314355,68.06187716,8.784386866,13.46277305,0.139897333,1765.042461,0.001386667,0.009290667,0.001404 +2225,0,0,0,0,1.59021189,0.002983333,0.041016667,0.097115773,0,0,0.011428677,0.18445,0.002,17.56921667,0,722.7116167,86.86306321,336.2898394,0.20005875,0.003488271,0.001504921,4.4334365,3.269816667,1.734916667,0.051255655,0,0.683456767,0,0.005730575,6.215089567,82.72948836,67.76615272,8.744975644,13.4520164,0.134516667,1733.506922,0.001333333,0.008933333,0.00135 +2226,0,0,0,0,1.58551063,0.002864,0.039376,0.093231142,0,0,0.010971529,0.177072,0.00192,16.866448,0,693.803152,86.69641272,335.497135,0.1920564,0.00334874,0.001444724,4.25609904,3.139024,1.66552,0.049205429,0,0.656118496,0,0.005501352,6.20632904,82.65583318,67.47042828,8.705564421,13.44125975,0.129136,1701.971382,0.00128,0.008576,0.001296 +2227,0,0,0,0,1.580809371,0.002744667,0.037735333,0.089346511,0,0,0.010514382,0.169694,0.00184,16.16367933,0,664.8946873,86.52976224,334.7044307,0.18405405,0.00320921,0.001384527,4.07876158,3.008231333,1.596123333,0.047155203,0,0.628780225,0,0.005272129,6.197568514,82.582178,67.17470384,8.666153198,13.4305031,0.123755333,1670.435842,0.001226667,0.008218667,0.001242 +2228,0,0,0,0,1.576108112,0.002625333,0.036094667,0.085461881,0,0,0.010057235,0.162316,0.00176,15.46091067,0,635.9862227,86.36311175,333.9117263,0.1760517,0.003069679,0.00132433,3.90142412,2.877438667,1.526726667,0.045104976,0,0.601441955,0,0.005042906,6.188807987,82.50852282,66.8789794,8.626741976,13.41974645,0.118374667,1638.900303,0.001173333,0.007861333,0.001188 +2229,0,0,0,0,1.571406853,0.002506,0.034454,0.08157725,0,0,0.009600088,0.154938,0.00168,14.758142,0,607.077758,86.19646127,333.119022,0.16804935,0.002930148,0.001264134,3.72408666,2.746646,1.45733,0.04305475,0,0.574103684,0,0.004813683,6.18004746,82.43486763,66.58325496,8.587330753,13.4089898,0.112994,1607.364763,0.00112,0.007504,0.001134 +2230,0,0,0,0,1.566705593,0.002386667,0.032813333,0.077692619,0,0,0.009142941,0.14756,0.0016,14.05537333,0,578.1692933,86.02981078,332.3263176,0.160047,0.002790617,0.001203937,3.5467492,2.615853333,1.387933333,0.041004524,0,0.546765413,0,0.00458446,6.171286934,82.36121245,66.28753052,8.547919531,13.39823315,0.107613333,1575.829223,0.001066667,0.007146667,0.00108 +2231,0,0,0,0,1.562004334,0.002267333,0.031172667,0.073807988,0,0,0.008685794,0.140182,0.00152,13.35260467,0,549.2608287,85.8631603,331.5336133,0.15204465,0.002651086,0.00114374,3.36941174,2.485060667,1.318536667,0.038954298,0,0.519427143,0,0.004355237,6.162526407,82.28755727,65.99180608,8.508508308,13.3874765,0.102232667,1544.293684,0.001013333,0.006789333,0.001026 +2232,0,0,0,0,1.557303075,0.002148,0.029532,0.069923357,0,0,0.008228647,0.132804,0.00144,12.649836,0,520.352364,85.69650982,330.7409089,0.1440423,0.002511555,0.001083543,3.19207428,2.354268,1.24914,0.036904072,0,0.492088872,0,0.004126014,6.15376588,82.21390209,65.69608164,8.469097086,13.37671985,0.096852,1512.758144,9.60E-04,0.006432,9.72E-04 +2233,0,0,0,0,1.552601816,0.002028667,0.027891333,0.066038726,0,0,0.0077715,0.125426,0.00136,11.94706733,0,491.4438993,85.52985933,329.9482046,0.13603995,0.002372025,0.001023346,3.01473682,2.223475333,1.179743333,0.034853845,0,0.464750601,0,0.003896791,6.145005353,82.1402469,65.4003572,8.429685863,13.3659632,0.091471333,1481.222604,9.07E-04,0.006074667,9.18E-04 +2234,0,0,0,0,1.547900556,0.001909333,0.026250667,0.062154095,0,0,0.007314353,0.118048,0.00128,11.24429867,0,462.5354347,85.36320885,329.1555002,0.1280376,0.002232494,9.63E-04,2.83739936,2.092682667,1.110346667,0.032803619,0,0.437412331,0,0.003667568,6.136244827,82.06659172,65.10463276,8.39027464,13.35520655,0.086090667,1449.687065,8.53E-04,0.005717333,8.64E-04 +2235,0,0,0,0,1.543199297,0.00179,0.02461,0.058269464,0,0,0.006857206,0.11067,0.0012,10.54153,0,433.62697,85.19655836,328.3627959,0.12003525,0.002092963,9.03E-04,2.6600619,1.96189,1.04095,0.030753393,0,0.41007406,0,0.003438345,6.1274843,81.99293654,64.80890832,8.350863418,13.3444499,0.08071,1418.151525,8.00E-04,0.00536,8.10E-04 +2236,0,0,0,0,1.538498038,0.001670667,0.022969333,0.054384833,0,0,0.006400059,0.103292,0.00112,9.838761333,0,404.7185053,85.02990788,327.5700915,0.1120329,0.001953432,8.43E-04,2.48272444,1.831097333,0.971553333,0.028703167,0,0.382735789,0,0.003209122,6.118723773,81.91928136,64.51318388,8.311452195,13.33369325,0.075329333,1386.615985,7.47E-04,0.005002667,7.56E-04 +2237,0,0,0,0,1.533796779,0.001551333,0.021328667,0.050500202,0,0,0.005942912,0.095914,0.00104,9.135992667,0,375.8100407,84.86325739,326.7773872,0.10403055,0.001813901,7.83E-04,2.30538698,1.700304667,0.902156667,0.026652941,0,0.355397519,0,0.002979899,6.109963246,81.84562617,64.21745944,8.272040973,13.3229366,0.069948667,1355.080446,6.93E-04,0.004645333,7.02E-04 +2238,0,0,0,0,1.52909552,0.001432,0.019688,0.046615571,0,0,0.005485765,0.088536,9.60E-04,8.433224,0,346.901576,84.69660691,325.9846828,0.0960282,0.00167437,7.22E-04,2.12804952,1.569512,0.83276,0.024602714,0,0.328059248,0,0.002750676,6.10120272,81.77197099,63.921735,8.23262975,13.31217994,0.064568,1323.544906,6.40E-04,0.004288,6.48E-04 +2239,0,0,0,0,1.52439426,0.001312667,0.018047333,0.04273094,0,0,0.005028618,0.081158,8.80E-04,7.730455333,0,317.9931113,84.52995642,325.1919785,0.08802585,0.001534839,6.62E-04,1.95071206,1.438719333,0.763363333,0.022552488,0,0.300720977,0,0.002521453,6.092442193,81.69831581,63.62601056,8.193218528,13.30142329,0.059187333,1292.009366,5.87E-04,0.003930667,5.94E-04 +2240,0,0,0,0,1.519693001,0.001193333,0.016406667,0.038846309,0,0,0.004571471,0.07378,8.00E-04,7.027686667,0,289.0846467,84.36330594,324.3992741,0.0800235,0.001395309,6.02E-04,1.7733746,1.307926667,0.693966667,0.020502262,0,0.273382707,0,0.00229223,6.083681666,81.62466063,63.33028612,8.153807305,13.29066664,0.053806667,1260.473826,5.33E-04,0.003573333,5.40E-04 +2241,0,0,0,0,1.514991742,0.001074,0.014766,0.034961678,0,0,0.004114324,0.066402,7.20E-04,6.324918,0,260.176182,84.19665545,323.6065698,0.07202115,0.001255778,5.42E-04,1.59603714,1.177134,0.62457,0.018452036,0,0.246044436,0,0.002063007,6.074921139,81.55100544,63.03456168,8.114396082,13.27990999,0.048426,1228.938287,4.80E-04,0.003216,4.86E-04 +2242,0,0,0,0,1.510290483,9.55E-04,0.013125333,0.031077047,0,0,0.003657176,0.059024,6.40E-04,5.622149333,0,231.2677173,84.03000497,322.8138654,0.0640188,0.001116247,4.82E-04,1.41869968,1.046341333,0.555173333,0.01640181,0,0.218706165,0,0.001833784,6.066160613,81.47735026,62.73883724,8.07498486,13.26915334,0.043045333,1197.402747,4.27E-04,0.002858667,4.32E-04 +2243,0,0,0,0,1.505589223,8.35E-04,0.011484667,0.027192417,0,0,0.003200029,0.051646,5.60E-04,4.919380667,0,202.3592527,83.86335448,322.0211611,0.05601645,9.77E-04,4.21E-04,1.24136222,0.915548667,0.485776667,0.014351583,0,0.191367895,0,0.001604561,6.057400086,81.40369508,62.4431128,8.035573637,13.25839669,0.037664667,1165.867207,3.73E-04,0.002501333,3.78E-04 +2244,0,0,0,0,1.500887964,7.16E-04,0.009844,0.023307786,0,0,0.002742882,0.044268,4.80E-04,4.216612,0,173.450788,83.696704,321.2284567,0.0480141,8.37E-04,3.61E-04,1.06402476,0.784756,0.41638,0.012301357,0,0.164029624,0,0.001375338,6.048639559,81.3300399,62.14738835,7.996162415,13.24764004,0.032284,1134.331668,3.20E-04,0.002144,3.24E-04 +2245,0,0,0,0,1.496186705,5.97E-04,0.008203333,0.019423155,0,0,0.002285735,0.03689,4.00E-04,3.513843333,0,144.5423233,83.53005351,320.4357524,0.04001175,6.98E-04,3.01E-04,0.8866873,0.653963333,0.346983333,0.010251131,0,0.136691353,0,0.001146115,6.039879032,81.25638471,61.85166391,7.956751192,13.23688339,0.026903333,1102.796128,2.67E-04,0.001786667,2.70E-04 +2246,0,0,0,0,1.491485446,4.77E-04,0.006562667,0.015538524,0,0,0.001828588,0.029512,3.20E-04,2.811074667,0,115.6338587,83.36340303,319.643048,0.0320094,5.58E-04,2.41E-04,0.70934984,0.523170667,0.277586667,0.008200905,0,0.109353083,0,9.17E-04,6.031118506,81.18272953,61.55593947,7.91733997,13.22612674,0.021522667,1071.260588,2.13E-04,0.001429333,2.16E-04 +2247,0,0,0,0,1.486784186,3.58E-04,0.004922,0.011653893,0,0,0.001371441,0.022134,2.40E-04,2.108306,0,86.725394,83.19675254,318.8503437,0.02400705,4.19E-04,1.81E-04,0.53201238,0.392378,0.20819,0.006150679,0,0.082014812,0,6.88E-04,6.022357979,81.10907435,61.26021503,7.877928747,13.21537009,0.016142,1039.725049,1.60E-04,0.001072,1.62E-04 +2248,0,0,0,0,1.482082927,2.39E-04,0.003281333,0.007769262,0,0,9.14E-04,0.014756,1.60E-04,1.405537333,0,57.81692933,83.03010206,318.0576393,0.0160047,2.79E-04,1.20E-04,0.35467492,0.261585333,0.138793333,0.004100452,0,0.054676541,0,4.58E-04,6.013597452,81.03541917,60.96449059,7.838517524,13.20461344,0.010761333,1008.189509,1.07E-04,7.15E-04,1.08E-04 +2249,0,0,0,0,1.477381668,1.19E-04,0.001640667,0.003884631,0,0,4.57E-04,0.007378,8.00E-05,0.702768667,0,28.90846467,82.86345157,317.264935,0.00800235,1.40E-04,6.02E-05,0.17733746,0.130792667,0.069396667,0.002050226,0,0.027338271,0,2.29E-04,6.004836925,80.96176398,60.66876615,7.799106302,13.19385679,0.005380667,976.6539692,5.33E-05,3.57E-04,5.40E-05 +2250,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2251,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2252,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2253,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2254,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2255,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2256,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2257,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2258,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2259,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2260,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2261,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2262,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2263,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2264,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2265,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2266,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2267,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2268,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2269,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2270,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2271,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2272,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2273,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2274,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2275,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2276,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2277,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2278,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2279,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2280,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2281,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2282,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2283,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2284,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2285,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2286,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2287,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2288,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2289,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2290,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2291,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2292,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2293,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2294,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2295,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2296,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2297,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2298,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2299,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 +2300,0,0,0,0,1.472680409,0,0,0,0,0,0,0,0,0,0,0,82.69680109,316.4722306,0,0,0,0,0,0,0,0,0,0,0,5.996076399,80.8881088,60.37304171,7.759695079,13.18310014,0,945.1184295,0,0,0 diff --git a/inst/shinyApp/www/inputs/ssp585_emissions.csv b/inst/shinyApp/www/inputs/ssp585_emissions.csv new file mode 100644 index 0000000..2969acd --- /dev/null +++ b/inst/shinyApp/www/inputs/ssp585_emissions.csv @@ -0,0 +1,562 @@ +; ssp585 from rcmip,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; hectordata 0.0.0.9000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; commit dab9aad8750535b,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; date Fri Nov 4 11:35:31 2022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; UNITS:,Pg C/yr,Pg C/yr,Pg C/yr,Pg C/yr,Tg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg CH4,Tg CO,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Gg,Tg N,Tg,Tg NMVOC,Tg N,Tg,Gg,Gg S,Gg,Gg,Gg +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_emissions,CCl4_emissions,CF4_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CFC11_emissions,CFC12_emissions,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_emissions,CH4_emissions,CO_emissions,HCFC141b_emissions,HCFC142b_emissions,HCFC22_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC23_emissions,HFC245fa_emissions,HFC32_emissions,HFC4310_emissions,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,SF6_emissions,SO2_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions +1745,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1746,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1747,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1748,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1749,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1750,0.002594013,0.081175867,0,0,2.097770755,0,0.024856862,0.010071225,0,0,0,0,0,105.08773,0,4275.7449,19.01978312,348.5273588,0,0,0,0,0,0,0,0,0,0,0,0.054751418,6.927690091,60.02182622,3.877282015,15.44766815,0,1221.927531,0.007723273,0,0 +1751,0.002594106,0.08266927,0,0,2.072925926,0,0.024856862,0.010071225,0,0,0,0,0,105.1072,0,4276.7685,18.91510887,343.9263672,0,0,0,0,0,0,0,0,0,0,0,0.055785796,6.860142185,59.08812628,3.833772936,15.18871674,0,1206.06818,0.007723273,0,0 +1752,0.002595208,0.084190146,0,0,2.064311933,0,0.024856862,0.010071225,0,0,0,0,0,105.12502,0,4277.7049,18.88971181,341.8090339,0,0,0,0,0,0,0,0,0,0,0,0.056839716,6.819482037,58.63199703,3.834371851,15.03447574,0,1200.427847,0.007723273,0,0 +1753,0.002595302,0.085739002,0,0,2.071950564,0,0.024856862,0.010071225,0,0,0,0,0,105.10373,0,4276.586,19.12137723,343.6754562,0,0,0,0,0,0,0,0,0,0,0,0.057913547,6.881438529,59.0263494,3.817794323,15.18254515,0,1207.227099,0.007723273,0,0 +1754,0.002596404,0.087316353,0,0,2.099349783,0,0.024856862,0.010071225,0,0,0,0,0,105.07356,0,4274.9998,19.50906107,349.8156252,0,0,0,0,0,0,0,0,0,0,0,0.059007665,7.015189224,60.26994517,3.847331337,15.55877305,0,1232.953114,0.007723273,0,0 +1755,0.002597506,0.088922722,0,0,2.099173165,0,0.024856862,0.010071225,0,0,0,0,0,105.09182,0,4275.9598,19.50045493,348.144668,0,0,0,0,0,0,0,0,0,0,0,0.060122454,6.943989043,59.82493372,3.886652888,15.35818253,0,1223.082685,0.007723273,0,0 +1756,0.00277509,0.090558644,0,0,2.068915407,0,0.024856862,0.010071225,0,0,0,0,0,105.08556,0,4275.6306,19.4625366,343.3231517,0,0,0,0,0,0,0,0,0,0,0,0.061258303,6.922711557,58.94682931,3.780146274,15.19577663,0,1211.479202,0.007723273,0,0 +1757,0.002776193,0.092224663,0,0,2.147923676,0,0.024856862,0.010071225,0,0,0,0,0,105.09137,0,4275.9361,20.02354066,355.9418923,0,0,0,0,0,0,0,0,0,0,0,0.062415611,7.047674129,61.263693,3.998436266,15.70481912,0,1255.688247,0.007723273,0,0 +1758,0.002777295,0.093921331,0,0,2.12061141,0,0.024856862,0.010071225,0,0,0,0,0,105.09662,0,4276.2118,19.93400533,351.839749,0,0,0,0,0,0,0,0,0,0,0,0.063594783,6.995459768,60.43461244,3.95160932,15.51461163,0,1241.80619,0.007723273,0,0 +1759,0.002778397,0.095649213,0,0,2.117267431,0,0.024856862,0.010071225,0,0,0,0,0,105.08372,0,4275.5338,20.14146621,351.5077627,0,0,0,0,0,0,0,0,0,0,0,0.064796232,7.045958325,60.44526305,3.882559461,15.57401349,0,1238.693446,0.007723273,0,0 +1760,0.002778491,0.097408883,0,0,2.127804105,0,0.024856862,0.010071225,0,0,0,0,0,105.04022,0,4273.2473,20.41679714,354.4182853,0,0,0,0,0,0,0,0,0,0,0,0.06602038,7.128048286,61.05172479,3.870426966,15.81906393,0,1250.820917,0.007723273,0,0 +1761,0.0030418,0.099200926,0,0,2.137756989,0,0.024856862,0.010071225,0,0,0,0,0,105.09143,0,4275.9395,20.45599017,354.7079679,0,0,0,0,0,0,0,0,0,0,0,0.067267654,7.080969808,60.9842272,3.947785545,15.69191588,0,1256.548122,0.007723273,0,0 +1762,0.003042907,0.101025937,0,0,2.101748109,0,0.024856862,0.010071225,0,0,0,0,0,105.08127,0,4275.4052,20.45168738,349.2496972,0,0,0,0,0,0,8.32E-08,0,0,1.51E-06,0,0.068538493,7.072547337,60.02708933,3.805606722,15.52593531,0,1235.176016,0.007723273,0,0 +1763,0.003044015,0.102884523,0,0,2.107029758,0,0.024856862,0.010071225,0,0,0,0,0,105.09332,0,4276.0386,20.54517934,350.0593349,0,0,0,0,0,0,6.68E-07,0,0,1.24E-05,0,0.06983334,7.067982584,60.12706627,3.846149431,15.52676249,0,1242.431334,0.007723273,0,0 +1764,0.003045122,0.104777302,0,0,2.071549227,0,0.024856862,0.010071225,0,0,0,0,0,105.1104,0,4276.9364,20.26091721,342.0446107,0,0,0,0,0,0,1.27E-06,0,0,2.50E-05,0,0.07115265,6.89874574,58.43835717,3.829003368,14.95869898,0,1212.823098,0.007723273,0,0 +1765,0.003046229,0.106704903,0,0,2.123600022,0,0.024856862,0.010071225,0,0,0,0,0,105.07293,0,4274.9668,20.919155,352.9327258,0,0,0,0,0,0,1.39E-06,0,0,3.03E-05,0,0.072496884,7.112382325,60.62945786,3.878155223,15.67992411,0,1250.725203,0.007723273,0,0 +1766,0.003396267,0.108667966,0,0,2.110459977,0,0.024856862,0.010071225,0,0,0,0,0,105.07758,0,4275.2111,20.8535919,349.380645,0,0,0,0,0,0,1.42E-06,0,0,3.44E-05,0,0.073866514,7.036296531,59.85878463,3.884852898,15.35883081,0,1244.142077,0.007723273,0,0 +1767,0.003397374,0.110667143,0,0,2.112460701,0,0.024856862,0.010071225,0,0,0,0,0,105.08566,0,4275.6359,20.99917946,349.616099,0,0,0,0,0,0,1.46E-06,0,0,3.84E-05,0,0.07526202,7.045382427,59.8910269,3.880476349,15.4005645,0,1243.308056,0.007723273,0,0 +1768,0.003398482,0.1127031,0,0,2.18313204,0,0.024856862,0.010071225,0,0,0,0,0,105.04673,0,4273.5893,21.65945211,362.6536848,0,0,0,0,0,0,1.49E-06,0,0,4.25E-05,0,0.07668389,7.223617821,62.36582555,4.039005154,16.0637302,0,1294.705423,0.007723273,0,0 +1769,0.003399589,0.114776512,0,0,2.137633742,0,0.024856862,0.010071225,0,0,0,0,0,105.0767,0,4275.165,21.49633535,355.0254185,0,0,0,0,0,0,1.53E-06,0,0,4.65E-05,0,0.078132622,7.157863703,60.95040361,3.914619863,15.73509479,0,1273.362221,0.007723273,0,0 +1770,0.003400696,0.116888069,0,0,2.139364739,0,0.024856862,0.010071225,0,0,0,0,0,105.04544,0,4273.5216,21.63439757,355.3605476,0,0,0,0,0,0,1.57E-06,0,0,5.06E-05,0,0.079608724,7.155978284,60.96602721,3.927122991,15.74271509,0,1277.49221,0.007723273,0,0 +1771,0.003768892,0.119038473,0,0,2.100909701,0,0.024856862,0.010071225,0,0,0,0,0,105.07227,0,4274.9318,21.4289211,347.8619883,0,0,0,0,0,0,1.60E-06,0,0,5.47E-05,0,0.081112713,7.069218405,59.42424033,3.843192573,15.32197739,0,1230.128239,0.007723273,0,0 +1772,0.003770005,0.121228438,0,0,2.087077541,0,0.024856862,0.010071225,0,0,0,0,0,105.08887,0,4275.8046,21.39461572,344.6134738,0,0,0,0,0,0,1.64E-06,0,0,5.87E-05,0,0.082645116,7.043230562,58.72495295,3.812980037,15.11418329,0,1217.836348,0.007723273,0,0 +1773,0.003771118,0.123458692,0,0,2.092755603,0,0.024856862,0.010071225,0,0,0,0,0,105.06952,0,4274.7874,21.59523139,345.7768091,0,0,0,0,0,0,1.67E-06,0,0,6.28E-05,0,0.084206469,7.104503735,58.91656885,3.795742519,15.20466379,0,1220.686645,0.007723273,0,0 +1774,0.003772231,0.125729977,0,0,2.154900741,0,0.024856862,0.010071225,0,0,0,0,0,105.0265,0,4272.5262,22.25970773,358.103585,0,0,0,0,0,0,1.71E-06,0,0,6.68E-05,0,0.08579732,7.347701469,61.31335787,3.892106055,15.87559318,0,1266.428616,0.007723273,0,0 +1775,0.003773344,0.128043046,0,0,2.148996597,0,0.024856862,0.010071225,0,0,0,0,0,105.05246,0,4273.8905,22.20096329,355.0471729,0,0,0,0,0,0,1.75E-06,0,0,7.09E-05,0,0.087418226,7.26964482,60.54083046,3.918102925,15.5891357,0,1250.604504,0.007723273,0,0 +1776,0.004161709,0.13039867,0,0,2.112143132,0,0.024856862,0.010071225,0,0,0,0,0,105.03944,0,4273.2061,22.14194213,348.8985525,0,0,0,0,0,0,1.78E-06,0,0,7.49E-05,0,0.089069754,7.261469977,59.3811448,3.777483547,15.37007702,0,1235.260121,0.007723273,0,0 +1777,0.004162822,0.132797629,0,0,2.170244784,0,0.024856862,0.010071225,0,0,0,0,0,105.05273,0,4273.9048,22.56871006,357.545361,0,0,0,0,0,0,1.82E-06,0,0,7.90E-05,0,0.090752483,7.355973763,60.89349007,3.937981414,15.67345753,0,1262.643552,0.007723273,0,0 +1778,0.004163935,0.135240723,0,0,2.198001402,0,0.024856862,0.010071225,0,0,0,0,0,105.04465,0,4273.48,22.85608093,362.7554135,0,0,0,0,0,0,1.85E-06,0,0,8.30E-05,0,0.092467003,7.434606067,61.78348695,4.021077007,15.89945625,0,1282.280293,0.007723273,0,0 +1779,0.004165048,0.137728763,0,0,2.159615777,0,0.024856862,0.010071225,0,0,0,0,0,105.03691,0,4273.0734,22.82063569,355.9261715,0,0,0,0,0,0,1.89E-06,0,0,8.71E-05,0,0.094213914,7.418773457,60.50081488,3.865645204,15.62745786,0,1253.809198,0.007723273,0,0 +1780,0.00416717,0.140262576,0,0,2.189267588,0,0.024856862,0.010071225,0,0,0,0,0,104.98817,0,4270.511,23.24616665,361.6140422,0,0,0,0,0,0,1.92E-06,0,0,9.10E-05,0,0.095993828,7.569429121,61.61859566,3.871147964,16.0183808,0,1274.797709,0.007723273,0,0 +1781,0.004659413,0.142843003,0,0,2.1894412,0,0.024856862,0.010071225,0,0,0,0,0,105.04236,0,4273.3596,23.24965548,360.0900539,0,0,0,0,0,0,1.96E-06,0,0,9.52E-05,0,0.097807369,7.505783353,61.19330647,3.920723923,15.80695227,0,1277.536252,0.007723273,0,0 +1782,0.004660532,0.145470903,0,0,2.160522701,0,0.024856862,0.010071225,0,0,0,0,0,105.03125,0,4272.7759,23.34175812,356.0465546,0,0,0,0,0,0,2.00E-06,0,0,9.92E-05,0,0.099655171,7.519625788,60.48572145,3.793838185,15.71282083,0,1261.050876,0.007723273,0,0 +1783,0.004662661,0.148147149,0,0,2.15072559,0,0.024856862,0.010071225,0,0,0,0,0,105.0436,0,4273.4248,23.37991679,354.2869243,0,0,0,0,0,0,2.03E-06,0,0,1.03E-04,0,0.101537883,7.496232273,60.10171272,3.788738178,15.60726047,0,1258.691216,0.007723273,0,0 +1784,0.00466378,0.150872629,0,0,2.140542212,0,0.024856862,0.010071225,0,0,0,0,0,105.05531,0,4274.0405,23.2940423,350.5694963,0,0,0,0,0,0,2.07E-06,0,0,1.07E-04,0,0.103456163,7.3811564,59.21225989,3.835360348,15.22814126,0,1241.091384,0.007723273,0,0 +1785,0.004666993,0.153648251,0,0,2.165839691,0,0.024856862,0.010071225,0,0,0,0,0,105.02817,0,4272.6136,23.80210554,356.8051254,0,0,0,0,0,0,2.10E-06,0,0,1.11E-04,0,0.105410684,7.538152323,60.49447936,3.821649192,15.73271148,0,1266.56815,0.007723273,0,0 +1786,0.00529538,0.156474937,0,0,2.158683485,0,0.024856862,0.010071225,0,0,0,0,0,105.02684,0,4272.5442,23.831995,354.2058773,0,0,0,0,0,0,2.14E-06,0,0,1.15E-04,0,0.107402131,7.491084254,59.91468241,3.826316215,15.46715712,0,1263.905903,0.007723273,0,0 +1787,0.005297508,0.159353625,0,0,2.185179294,0,0.024856862,0.010071225,0,0,0,0,0,105.03415,0,4272.9283,24.17652818,358.7933683,0,0,0,0,0,0,2.18E-06,0,0,1.19E-04,0,0.1094312,7.55517197,60.75335708,3.885107996,15.71033146,0,1281.331419,0.007723273,0,0 +1788,0.005298627,0.162285272,0,0,2.255223484,0,0.024856862,0.010071225,0,0,0,0,0,104.9922,0,4270.7227,24.85592892,371.3570923,0,0,0,0,0,0,2.21E-06,0,0,1.23E-04,0,0.111498603,7.730934741,63.12433047,4.038519355,16.34335434,0,1326.080725,0.007723273,0,0 +1789,0.005300755,0.165270854,0,0,2.207664632,0,0.024856862,0.010071225,0,0,0,0,0,105.0242,0,4272.405,24.71707284,363.4416446,0,0,0,0,0,0,2.25E-06,0,0,1.28E-04,0,0.113605064,7.663516243,61.63229238,3.911091424,16.00040861,0,1300.935055,0.007723273,0,0 +1790,0.005302883,0.168311362,0,0,2.216436996,0,0.024856862,0.010071225,0,0,0,0,0,104.99139,0,4270.6805,24.94220857,364.8802164,0,0,0,0,0,0,2.28E-06,0,0,1.32E-04,0,0.115751321,7.680254371,61.84599181,3.937203207,16.05674391,0,1304.800481,0.007723273,0,0 +1791,0.005920183,0.171407806,0,0,2.172583556,0,0.024856862,0.010071225,0,0,0,0,0,105.02128,0,4272.2515,24.77843217,356.6583862,0,0,0,0,0,0,2.32E-06,0,0,1.36E-04,0,0.117938125,7.556943543,60.2187392,3.848117366,15.61644988,0,1284.768804,0.007723273,0,0 +1792,0.006098811,0.174561216,0,0,2.161650793,0,0.024856862,0.010071225,0,0,0,0,0,105.04466,0,4273.4807,24.81889294,354.2515376,0,0,0,0,0,0,2.36E-06,0,0,1.40E-04,0,0.120166243,7.499155045,59.70568574,3.852168551,15.44666919,0,1279.936623,0.007723273,0,0 +1793,0.006105082,0.17777264,0,0,2.153273834,0,0.024856862,0.010071225,0,0,0,0,0,105.02605,0,4272.5025,25.03153141,353.3723093,0,0,0,0,0,0,2.39E-06,0,0,1.44E-04,0,0.122436456,7.518120739,59.5849395,3.798134648,15.47797954,0,1276.675891,0.007723273,0,0 +1794,0.006092419,0.181043144,0,0,2.213843116,0,0.024856862,0.010071225,0,0,0,0,0,104.98417,0,4270.301,25.76753778,365.721914,0,0,0,0,0,0,2.43E-06,0,0,1.48E-04,0,0.124749558,7.731535991,62.03822453,3.901984421,16.16525997,0,1323.391544,0.007723273,0,0 +1795,0.006095933,0.184373817,0,0,2.202692273,0,0.024856862,0.010071225,0,0,0,0,0,105.01093,0,4271.7076,25.77334281,362.1921227,0,0,0,0,0,0,2.46E-06,0,0,1.52E-04,0,0.127106359,7.626169221,61.24273214,3.919106621,15.88313195,0,1307.117791,0.007723273,0,0 +1796,0.006396386,0.187765764,0,0,2.153154616,0,0.024856862,0.010071225,0,0,0,0,0,104.99978,0,4271.1214,25.74058407,354.4783029,0,0,0,0,0,0,2.50E-06,0,0,1.56E-04,0,0.129507686,7.581863097,59.86424243,3.749609514,15.6283698,0,1286.414837,0.007723273,0,0 +1797,0.006712627,0.191220113,0,0,2.213475036,0,0.024856862,0.010071225,0,0,0,0,0,105.01623,0,4271.986,26.23006226,363.5482372,0,0,0,0,0,0,2.54E-06,0,0,1.60E-04,0,0.131954379,7.636302582,61.47137695,3.940974102,15.93865305,0,1322.1792,0.007723273,0,0 +1798,0.006990649,0.194738012,0,0,2.234056283,0,0.024856862,0.010070485,0,0,0,0,0,105.0081,0,4271.559,26.54644012,367.6501028,0,0,0,0,0,0,2.57E-06,0,0,1.64E-04,0,0.134447296,7.671017716,62.19763903,4.015700361,16.12667274,0,1344.494311,0.007723273,0,0 +1799,0.007363034,0.198320631,0,0,2.207292165,0,0.024856862,0.010071964,0,0,0,0,0,104.99068,0,4270.6431,26.70648817,363.4860469,0,0,0,0,0,0,2.61E-06,0,0,1.68E-04,0,0.13698731,7.67446285,61.4962302,3.882903388,16.03734279,0,1332.732765,0.007723273,0,0 +1800,0.007853248,0.201969159,0,0,2.215974055,0,0.024856862,0.010071225,0,0,0,0,0,104.95838,0,4268.9449,27.05634308,365.8466368,0,0,0,0,0,0,2.64E-06,0,0,1.72E-04,0,0.13957531,7.740645322,62.00320914,3.867691465,16.2421417,0,1351.401885,0.007723273,0,0 +1801,0.007792363,0.20568481,0,0,2.21940169,0,0.024856862,0.010071225,0,0,0,0,0,105.01099,0,4271.7107,27.12488718,364.9170684,0,0,0,0,0,0,2.68E-06,0,0,1.76E-04,0,0.142212204,7.701186978,61.66564779,3.921843763,16.06373322,0,1346.312669,0.007723273,0,0 +1802,0.010116776,0.209468818,0,0,2.202692661,0,0.024856862,0.010071225,0,0,0,0,0,104.99468,0,4270.8532,27.33978432,362.9627075,0,0,0,0,0,0,2.72E-06,0,0,1.80E-04,0,0.144898914,7.763054085,61.32615659,3.814905719,16.07582361,0,1365.792459,0.007723273,0,0 +1803,0.008763958,0.213322441,0,0,2.180015828,0,0.024856862,0.010071225,0,0,0,0,0,105.0108,0,4271.7009,27.32049985,358.65078,0,0,0,0,0,0,2.75E-06,0,0,1.84E-04,0,0.147636382,7.720863757,60.40434182,3.773697199,15.83103088,0,1340.023262,0.007723273,0,0 +1804,0.00956559,0.21724696,0,0,2.197298087,0,0.024856862,0.010071225,0,0,0,0,0,105.0121,0,4271.7691,27.46474997,359.528696,0,0,0,0,0,0,2.79E-06,0,0,1.88E-04,0,0.150425568,7.68708673,60.36470275,3.871473305,15.67624811,0,1347.990682,0.007723273,0,0 +1805,0.009351564,0.221243678,0,0,2.215042398,0,0.024856862,0.010071225,0,0,0,0,0,104.98963,0,4270.588,27.9507982,364.3037043,0,0,0,0,0,0,2.82E-06,0,0,1.92E-04,0,0.153267447,7.835162209,61.31991146,3.843518327,16.0941548,0,1367.021932,0.007723273,0,0 +1806,0.009786482,0.225313924,0,0,2.222822585,0,0.024856862,0.010071225,0,0,0,0,0,104.98239,0,4270.2074,28.13437245,364.3432293,0,0,0,0,0,0,2.86E-06,0,0,1.96E-04,0,0.156163016,7.843541453,61.22344968,3.877012285,15.95144317,0,1370.297233,0.007723273,0,0 +1807,0.010470139,0.229459052,0,0,2.239871982,0,0.024856862,0.010071225,0,0,0,0,0,104.99423,0,4270.8298,28.45865603,367.2349328,0,0,0,0,0,0,2.90E-06,0,0,2.00E-04,0,0.159113289,7.906227329,61.70646914,3.906741383,16.11756408,0,1389.725529,0.007723273,0,0 +1808,0.009785087,0.233680437,0,0,2.311936484,0,0.024856862,0.010071225,0,0,0,0,0,104.95199,0,4268.6094,29.18524117,380.035272,0,0,0,0,0,0,2.93E-06,0,0,2.04E-04,0,0.162119299,8.095303457,64.08195973,4.070358273,16.7315469,0,1425.575123,0.007723273,0,0 +1809,0.009793704,0.237979484,0,0,2.26744264,0,0.024856862,0.010071225,0,0,0,0,0,104.979,0,4270.0292,29.12865813,372.8486855,0,0,0,0,0,0,2.97E-06,0,0,2.08E-04,0,0.1651821,8.062766978,62.71002213,3.940068496,16.44016599,0,1403.131587,0.007723273,0,0 +1810,0.010412685,0.242357621,0,0,2.279523716,0,0.024856862,0.010071225,0,0,0,0,0,104.93988,0,4267.9729,29.42453242,374.7180119,0,0,0,0,0,0,3.00E-06,0,0,2.12E-04,0,0.168302763,8.107079152,62.97351665,3.9615916,16.52538808,0,1414.194561,0.007723273,0,0 +1811,0.011014901,0.246816304,0,0,2.252530236,0,0.024856862,0.010071225,0,0,0,0,0,104.96903,0,4269.505,29.40578756,369.2694863,0,0,0,0,0,0,3.04E-06,0,0,2.17E-04,0,0.171482384,8.026948341,61.829606,3.9187457,16.18886557,0,1403.686743,0.007723273,0,0 +1812,0.011395912,0.251357013,0,0,2.228006935,0,0.024856862,0.010071225,0,0,0,0,0,104.99029,0,4270.6225,29.4202985,364.5806875,0,0,0,0,0,0,3.07E-06,0,0,2.21E-04,0,0.174722074,7.965169636,60.85746997,3.875988658,15.92905063,0,1394.884132,0.007723273,0,0 +1813,0.011449081,0.255981258,0,0,2.231996859,0,0.024856862,0.010071225,0,0,0,0,0,104.97005,0,4269.5589,29.77847603,365.9138874,0,0,0,0,0,0,3.11E-06,0,0,2.25E-04,0,0.178022969,8.032995952,61.1361302,3.844088557,16.06491504,0,1400.325553,0.007723273,0,0 +1814,0.011703716,0.260690576,0,0,2.291579691,0,0.024856862,0.010071225,0,0,0,0,0,104.93884,0,4267.9182,30.54785186,377.9855417,0,0,0,0,0,0,3.14E-06,0,0,2.29E-04,0,0.181386226,8.255365792,63.49192823,3.946873452,16.71992349,0,1449.11988,0.007723273,0,0 +1815,0.012094117,0.265486531,0,0,2.287324694,0,0.024856862,0.010071225,0,0,0,0,0,104.94955,0,4268.4808,30.64433954,375.5806648,0,0,0,0,0,0,3.18E-06,0,0,2.33E-04,0,0.184813022,8.178894558,62.8715757,3.977998266,16.48749688,0,1442.834604,0.007723273,0,0 +1816,0.013382563,0.270370719,0,0,2.261022,0,0.024856862,0.010071225,0,0,0,0,0,104.93504,0,4267.7184,30.79985622,371.6298228,0,0,0,0,0,0,3.22E-06,0,0,2.37E-04,0,0.188304559,8.188247477,62.14643252,3.866008445,16.39503385,0,1449.517631,0.007723273,0,0 +1817,0.013970106,0.275344761,0,0,2.296180569,0,0.024856862,0.010071225,0,0,0,0,0,104.95336,0,4268.6815,31.19839541,376.4429441,0,0,0,0,0,0,3.25E-06,0,0,2.41E-04,0,0.191862058,8.220825384,62.94153101,3.981202576,16.51722865,0,1472.005827,0.007723273,0,0 +1818,0.014054847,0.280410312,0,0,2.335490105,0,0.024856862,0.010071225,0,0,0,0,0,104.94012,0,4267.9855,31.68760832,383.9142096,0,0,0,0,0,0,3.29E-06,0,0,2.45E-04,0,0.195486767,8.306817108,64.26768049,4.109295846,16.84964888,0,1503.330753,0.007723273,0,0 +1819,0.01412101,0.285569054,0,0,2.304129482,0,0.024856862,0.010071225,0,0,0,0,0,104.92235,0,4267.0511,31.84544135,378.3325838,0,0,0,0,0,0,3.32E-06,0,0,2.49E-04,0,0.199179954,8.302878859,63.25758927,3.96351919,16.66519821,0,1480.397209,0.007723273,0,0 +1820,0.014336733,0.290822702,0,0,2.321048766,0,0.024856862,0.010071225,0,0,0,0,0,104.88909,0,4265.3029,32.33339467,382.4197483,0,0,0,0,0,0,3.36E-06,0,0,2.53E-04,0,0.202942914,8.416077975,64.0766433,3.958562233,16.96356441,0,1500.127423,0.007723273,0,0 +1821,0.014562069,0.296173002,0,0,2.333483777,0,0.024856862,0.010071225,0,0,0,0,0,104.93899,0,4267.9261,32.52138863,382.8975341,0,0,0,0,0,0,3.40E-06,0,0,2.57E-04,0,0.206776965,8.396299171,63.98744909,4.029731628,16.86010032,0,1506.00016,0.007723273,0,0 +1822,0.015133379,0.301621733,0,0,2.302515118,0,0.024856862,0.010071225,0,0,0,0,0,104.92104,0,4266.9822,32.73451052,378.6708004,0,0,0,0,0,0,3.43E-06,0,0,2.61E-04,0,0.21068345,8.447852069,63.22724653,3.871133523,16.79629808,0,1499.477254,0.007723273,0,0 +1823,0.016038149,0.307170704,0,0,2.282471765,0,0.024856862,0.010071225,0,0,0,0,0,104.94096,0,4268.0293,32.75571509,374.3931813,0,0,0,0,0,0,3.47E-06,0,0,2.65E-04,0,0.214663737,8.395261064,62.26076437,3.846052063,16.53271228,0,1499.604752,0.007723273,0,0 +1824,0.016501009,0.31282176,0,0,2.310947811,0,0.024856862,0.010071225,0,0,0,0,0,104.93425,0,4267.6765,33.0519787,377.0407114,0,0,0,0,0,0,3.50E-06,0,0,2.69E-04,0,0.218719221,8.395833943,62.5634338,3.956577313,16.47072526,0,1512.912552,0.007723273,0,0 +1825,0.017222663,0.318576779,0,0,2.322703112,0,0.024856862,0.010071225,0,0,0,0,0,104.91652,0,4266.7449,33.52533882,380.3167498,0,0,0,0,0,0,3.54E-06,0,0,2.73E-04,0,0.222851322,8.516236489,63.18578955,3.919068065,16.80867752,0,1538.203336,0.007723273,0,0 +1826,0.01738223,0.324437675,0,0,2.320968834,0,0.024856862,0.010071225,0,0,0,0,0,104.90841,0,4266.3186,33.7481029,378.8222655,0,0,0,0,0,0,3.57E-06,0,0,2.77E-04,0,0.227061488,8.523620414,62.81594151,3.911604483,16.62077908,0,1531.982813,0.007723273,0,0 +1827,0.018639877,0.330406393,0,0,2.346337782,0,0.024856862,0.010071225,0,0,0,0,0,104.91515,0,4266.6729,34.15505001,382.4773392,0,0,0,0,0,0,3.61E-06,0,0,2.81E-04,0,0.231351194,8.585850324,63.38999011,3.962793591,16.79991923,0,1566.092214,0.007723273,0,0 +1828,0.018824746,0.336484919,0,0,2.420774153,0,0.024856862,0.010071225,0,0,0,0,0,104.87222,0,4264.4159,34.99912851,395.9754325,0,0,0,0,0,0,3.64E-06,0,0,2.85E-04,0,0.235721941,8.801495947,65.90535949,4.116354977,17.4805645,0,1618.020723,0.007723273,0,0 +1829,0.018664196,0.342675273,0,0,2.379376332,0,0.024856862,0.010071225,0,0,0,0,0,104.90025,0,4265.8895,35.01640513,389.1746282,0,0,0,0,0,0,3.68E-06,0,0,2.89E-04,0,0.240175262,8.767229394,64.57289824,4.000350816,17.19408165,0,1597.238302,0.007723273,0,0 +1830,0.024933734,0.348979511,0,0,2.403159831,0,0.024856862,0.010071225,0,0,0,0,0,104.8667,0,4264.1256,35.40215534,392.1065329,0,0,0,0,0,0,3.72E-06,0,0,2.93E-04,0,0.244712716,8.818806446,64.94076179,4.03843029,17.31425157,0,1705.903254,0.007723273,0,0 +1831,0.023660178,0.355399729,0,0,2.361347125,0,0.024856862,0.010071225,0,0,0,0,0,104.89174,0,4265.442,35.37418705,384.2012507,0,0,0,0,0,0,3.75E-06,0,0,2.97E-04,0,0.249335894,8.731507392,63.33682174,3.947409453,16.87772867,0,1661.03313,0.007723273,0,0 +1832,0.023685925,0.36193806,0,0,2.353863299,0,0.024856862,0.010071225,0,0,0,0,0,104.90924,0,4266.362,35.56272349,382.363398,0,0,0,0,0,0,3.79E-06,0,0,3.01E-04,0,0.254046413,8.712430009,62.87089656,3.946175053,16.73898675,0,1660.610583,0.007723273,0,0 +1833,0.024226693,0.368596678,0,0,2.356959381,0,0.024856862,0.010070485,0,0,0,0,0,104.89175,0,4265.4426,35.98083111,383.4537928,0,0,0,0,0,0,3.82E-06,0,0,3.05E-04,0,0.258845925,8.790922957,63.0695837,3.905335594,16.86449692,0,1673.874936,0.007723273,0,0 +1834,0.024702586,0.375377795,0,0,2.412445466,0,0.024856862,0.010071964,0,0,0,0,0,104.854,0,4263.4584,36.76106097,394.1429023,0,0,0,0,0,0,3.86E-06,0,0,3.09E-04,0,0.26373611,9.001420472,65.10499264,3.989061294,17.45428534,0,1721.269347,0.007723273,0,0 +1835,0.025273638,0.382283665,0,0,2.405456375,0,0.024856862,0.010071225,0,0,0,0,0,104.8698,0,4264.2887,36.88278973,390.5551392,0,0,0,0,0,0,3.90E-06,0,0,3.13E-04,0,0.268718682,8.925548286,64.23544317,3.998558037,17.17048679,0,1718.222125,0.007723273,0,0 +1836,0.029221069,0.389316584,0,0,2.404187956,0,0.024856862,0.010071225,0,0,0,0,0,104.84901,0,4263.1961,37.24729235,389.9786644,0,0,0,0,0,0,3.93E-06,0,0,3.17E-04,0,0.273795386,8.993015086,64.08016333,3.917445996,17.23500429,0,1783.083419,0.007723273,0,0 +1837,0.029260399,0.396478888,0,0,2.440210174,0,0.024856862,0.010071225,0,0,0,0,0,104.86946,0,4264.2707,37.69980678,394.7565038,0,0,0,0,0,0,3.97E-06,0,0,3.21E-04,0,0.278968001,9.027059824,64.82242714,4.040217213,17.35383524,0,1798.088197,0.007723273,0,0 +1838,0.030288693,0.403772957,0,0,2.477311746,0,0.024856862,0.010071225,0,0,0,0,0,104.85548,0,4263.5362,38.24210962,401.296187,0,0,0,0,0,0,4.00E-06,0,0,3.25E-04,0,0.284238338,9.122535895,65.94724657,4.142172855,17.64153847,0,1841.543139,0.007723273,0,0 +1839,0.031310557,0.411201217,0,0,2.452638138,0,0.024856862,0.010071225,0,0,0,0,0,104.83788,0,4262.6108,38.51117556,396.9116369,0,0,0,0,0,0,4.04E-06,0,0,3.29E-04,0,0.289608243,9.139608329,65.11131218,4.015311872,17.50517633,0,1843.080824,0.007723273,0,0 +1840,0.033542974,0.418766135,0,0,2.443877522,0,0.024856862,0.010071225,0,0,0,0,0,104.80755,0,4261.0163,38.88776194,395.8809162,0,0,0,0,0,0,4.07E-06,0,0,3.33E-04,0,0.295079598,9.211326299,64.92298176,3.92426914,17.57513248,0,1874.141828,0.007723273,0,0 +1841,0.034601229,0.426470225,0,0,2.490489852,0,0.024856862,0.010071225,0,0,0,0,0,104.84789,0,4263.137,39.38162317,402.3727418,0,0,0,0,0,0,4.11E-06,0,0,3.37E-04,0,0.30065432,9.249453202,65.94544518,4.089445548,17.74554357,0,1916.264207,0.007723273,0,0 +1842,0.03663998,0.434316049,0,0,2.449170469,0,0.024856862,0.010070485,0,0,0,0,0,104.84034,0,4262.7403,39.61872888,396.9951221,0,0,0,0,0,0,4.14E-06,0,0,3.41E-04,0,0.30633436,9.261381852,64.92167359,3.936168061,17.59096172,0,1931.462508,0.007723273,0,0 +1843,0.037450386,0.442306214,0,0,2.411136271,0,0.024856862,0.010071964,0,0,0,0,0,104.85726,0,4263.6297,39.65326382,389.7367809,0,0,0,0,0,0,4.18E-06,0,0,3.45E-04,0,0.31212171,9.185852612,63.42406091,3.846066212,17.21821832,0,1929.660398,0.007723273,0,0 +1844,0.039846973,0.450443374,0,0,2.443825896,0,0.024856862,0.010071225,0,0,0,0,0,104.85117,0,4263.3094,40.04426499,392.7074417,0,0,0,0,0,0,4.22E-06,0,0,3.49E-04,0,0.318018395,9.178913526,63.7624543,3.965309781,17.1801219,0,1991.445647,0.007723273,0,0 +1845,0.043792129,0.458730235,0,0,2.471371875,0,0.024856862,0.010071225,0,0,0,0,0,104.83257,0,4262.3319,40.66967667,397.850056,0,0,0,0,0,0,4.25E-06,0,0,3.53E-04,0,0.324026483,9.307905911,64.68556723,3.957876345,17.5993633,0,2080.381092,0.007723273,0,0 +1846,0.044197374,0.46716955,0,0,2.471198742,0,0.024856862,0.010071225,0,0,0,0,0,104.82423,0,4261.8933,40.97519975,395.9082622,0,0,0,0,0,0,4.29E-06,0,0,3.57E-04,0,0.330148076,9.302498358,64.24405153,3.94954154,17.39887857,0,2072.290434,0.007723273,0,0 +1847,0.047464619,0.475764124,0,0,2.521115228,0,0.024856862,0.010071225,0,0,0,0,0,104.82758,0,4262.0693,41.61647168,402.9851575,0,0,0,0,0,0,4.32E-06,0,0,3.61E-04,0,0.336385321,9.401962019,65.44362075,4.0405661,17.76051419,0,2154.230603,0.007723273,0,0 +1848,0.047117807,0.484516814,0,0,2.5773718,1.49E-05,0.024856862,0.010070485,0,0,0,0,0,104.78829,0,4260.004,42.44947063,413.5582929,0,0,0,0,0,0,4.36E-06,0,0,3.65E-04,0,0.342740401,9.573238567,67.39824375,4.1550565,18.30069373,0,2204.416735,0.007723273,0,0 +1849,0.048851442,0.493430528,0,0,2.552394089,1.20E-04,0.024856862,0.010071964,0,0,0,0,0,104.81678,0,4261.5016,42.63396461,408.9399341,0,0,0,0,0,0,4.39E-06,0,0,3.69E-04,0,0.349215542,9.543358834,66.42707154,4.087020956,18.07478627,0,2224.89572,0.007723273,0,0 +1850,0.051384895,0.502508228,0,0,2.571124479,2.25E-04,0.024856862,0.010071225,0,0,0,0,0,104.93295,0,4267.6083,43.14236365,411.4628743,0,0,0,0,0,0,4.44E-06,0,0,3.74E-04,0,0.355813014,9.604162557,66.78304875,4.096904208,18.22682479,0,2275.776711,0.007723273,0,0 +1851,0.051562308,0.494656367,0,0,2.526692589,2.41E-04,0.024856862,0.010071225,0,0,0,0,0,104.96457,0,4269.2706,43.15191371,402.2448153,0,0,0,0,0,0,4.48E-06,0,0,3.78E-04,0,0.363793441,9.478471328,64.95004659,4.010397678,17.72630049,0,2256.815147,0.007723273,0,0 +1852,0.05364238,0.550685869,0,0,2.50763416,2.42E-04,0.024856862,0.010071225,0,0,0,0,0,104.98199,0,4270.1861,43.34412933,397.49852,0,0,0,0,0,0,4.51E-06,0,0,3.83E-04,0,0.372424224,9.424520247,63.95789986,3.958451611,17.47926155,0,2277.634405,0.007723273,0,0 +1853,0.055952349,0.548631086,0,0,2.527811743,2.43E-04,0.024856862,0.010071225,0,0,0,0,0,104.9693,0,4269.5191,43.88435963,400.3388041,0,0,0,0,0,0,4.55E-06,0,0,3.87E-04,0,0.380109709,9.493187126,64.44555418,3.968326235,17.65848988,0,2326.420616,0.007723273,0,0 +1854,0.065895655,0.546739774,0,0,2.610048543,2.44E-04,0.024856862,0.010071225,0,0,0,0,0,104.9226,0,4267.0641,44.80907906,413.3991315,0,0,0,0,0,0,4.58E-06,0,0,3.90E-04,0,0.388118038,9.708926054,66.79469522,4.086374133,18.34043133,0,2535.158195,0.007723273,0,0 +1855,0.066560595,0.543758287,0,0,2.593264313,2.45E-04,0.024856862,0.010070485,0,0,0,0,0,104.95064,0,4268.5385,44.9570539,408.1104539,0,0,0,0,0,0,4.62E-06,0,0,3.95E-04,0,0.395154931,9.60821845,65.65156398,4.071657216,17.9916486,0,2531.882071,0.007723273,0,0 +1856,0.071195717,0.549725266,0,0,2.573430007,2.47E-04,0.024856862,0.010071964,0,0,0,0,0,104.92886,0,4267.3934,45.32147323,404.8549167,0,0,0,0,0,0,4.65E-06,0,0,3.98E-04,0,0.401213616,9.648967408,65.0425347,3.941501863,17.95411805,0,2598.32335,0.007723273,0,0 +1857,0.071893947,0.555060913,0,0,2.636452577,2.49E-04,0.024856862,0.010071225,0,0,0,0,0,104.94976,0,4268.4922,46.01300694,414.6731918,0,0,0,0,0,0,4.69E-06,0,0,4.03E-04,0,0.40752619,9.717987449,66.72779877,4.159141007,18.29156565,0,2646.996287,0.007723273,0,0 +1858,0.07302816,0.55973691,0,0,2.660122642,2.51E-04,0.024856862,0.010071225,0,0,0,0,0,104.93987,0,4267.9722,46.54057729,419.0140236,0,0,0,0,0,0,4.73E-06,0,0,4.07E-04,0,0.412517456,9.773872717,67.47060376,4.240872485,18.4792763,0,2684.853418,0.007723273,0,0 +1859,0.077852113,0.567385369,0,0,2.64820325,2.53E-04,0.024856862,0.010071225,0,0,0,0,0,104.91443,0,4266.635,46.94962615,416.2997485,0,0,0,0,0,0,4.76E-06,0,0,4.10E-04,0,0.416997408,9.815633788,66.95694734,4.119710729,18.44950598,0,2765.351504,0.007723273,0,0 +1860,0.08580579,0.57190571,0,0,2.648404731,2.55E-04,0.024856862,0.010810676,0,0,0,0,0,104.89112,0,4265.4096,47.37614023,416.0639966,0,0,0,0,0,0,4.79E-06,0,0,4.14E-04,0,0.420752578,9.868462594,66.84953493,4.060976263,18.520468,0,2898.377784,0.007723273,0,0 +1861,0.090437572,0.583095346,0,0,2.670268663,2.57E-04,0.024856862,0.010810691,0,0,0,0,0,104.94268,0,4268.1198,48.2346867,417.2441372,0,0,0,0,0,0,4.83E-06,0,0,4.19E-04,0,0.42335986,9.857135646,66.88575551,4.161212988,18.43711983,0,2971.278843,0.007723273,0,0 +1862,0.091865591,0.522956563,0,0,2.648564983,2.60E-04,0.024856862,0.010071254,0,0,0,0,0,104.93302,0,4267.612,49.13056212,414.1628066,0,0,0,0,0,0,4.87E-06,0,0,4.23E-04,0,0.425968395,9.918881972,66.35896016,4.042449359,18.41589321,0,2976.388043,0.007723273,0,0 +1863,0.097488554,0.523134297,0,0,2.629269514,2.62E-04,0.024856862,0.010071254,0,0,0,0,0,104.9509,0,4268.552,49.71022253,408.1224194,0,0,0,0,0,0,4.91E-06,0,0,4.27E-04,0,0.428432683,9.868665854,65.0096354,3.971519356,18.09141101,0,3064.446907,0.007723273,0,0 +1864,0.104725139,0.523481383,0,0,2.667755634,2.65E-04,0.024856862,0.010071254,0,0,0,0,0,104.94467,0,4268.2247,50.66032473,411.3310643,0,0,0,0,0,0,4.94E-06,0,0,4.31E-04,0,0.431014196,9.887134077,65.39906664,4.087458726,18.0938173,0,3193.218259,0.007723273,0,0 +1865,0.110936319,0.524250384,0,0,2.720201066,2.68E-04,0.024856862,0.010810706,0,0,0,0,0,104.93017,0,4267.4623,51.9800751,420.489005,0,0,0,0,0,0,4.98E-06,0,0,4.35E-04,0,0.433438772,10.07353478,67.10347351,4.157661467,18.66656838,0,3327.080176,0.007723273,0,0 +1866,0.114738508,0.524386363,0,0,2.710298337,2.71E-04,0.024856862,0.01081072,0,0,0,0,0,104.92398,0,4267.1368,52.74699293,417.1011849,0,0,0,0,0,0,5.01E-06,0,0,4.39E-04,0,0.435744776,10.06454912,66.37528156,4.133671178,18.39468019,0,3388.258078,0.007723273,0,0 +1867,0.12258204,0.522876455,0,0,2.761022671,2.74E-04,0.024856862,0.010070544,0,0,0,0,0,104.93094,0,4267.5026,53.94102178,424.2969753,0,0,0,0,0,0,5.05E-06,0,0,4.43E-04,0,0.438210649,10.1891331,67.66026449,4.231180961,18.76835617,0,3565.435535,0.007723273,0,0 +1868,0.125609442,0.521415398,0,0,2.825140562,2.77E-04,0.024856862,0.010072023,0,0,0,0,0,104.89186,0,4265.4483,55.28767356,434.9302283,0,0,0,0,0,0,5.08E-06,0,0,4.47E-04,0,0.441434256,10.37220092,69.64729381,4.363304735,19.30124757,0,3668.308732,0.007723273,0,0 +1869,0.133291522,0.519770898,0,0,2.785004317,2.81E-04,0.024856862,0.010810735,0,0,0,0,0,104.93014,0,4267.4609,55.83359728,426.4036167,0,0,0,0,0,0,5.12E-06,0,0,4.51E-04,0,0.443908266,10.31106127,67.92949559,4.245329954,18.88882504,0,3791.462745,0.007723273,0,0 +1870,0.136674384,0.51867186,0,0,2.831200782,2.84E-04,0.024856862,0.01081075,0,0,0,0,0,104.89317,0,4265.5174,56.99659231,433.2287624,0,0,0,0,0,0,5.15E-06,0,0,4.55E-04,0,0.446639961,10.44102397,69.12187694,4.32346865,19.25812075,0,3887.529335,0.007723273,0,0 +1871,0.145249161,0.538815215,0,0,2.797830347,2.88E-04,0.024856862,0.010071314,0,0,0,0,0,104.92871,0,4267.3856,57.57401422,425.1606513,0,0,0,0,0,0,5.19E-06,0,0,4.59E-04,0,0.454335934,10.3694977,67.42862358,4.269404037,18.76177377,0,4016.032279,0.007723273,0,0 +1872,0.160346513,0.624237802,0,0,2.771292694,2.92E-04,0.024856862,0.010810765,0,0,0,0,0,104.95075,0,4268.5441,58.18710545,417.7442734,0,0,0,0,0,0,5.23E-06,0,0,4.63E-04,0,0.470862622,10.33038424,65.84553711,4.178709817,18.36534165,0,4250.256916,0.007723273,0,0 +1873,0.170095482,0.635197776,0,0,2.841633848,2.96E-04,0.024856862,0.01081078,0,0,0,0,0,104.93223,0,4267.5705,59.62016165,429.280289,0,0,0,0,0,0,5.26E-06,0,0,4.67E-04,0,0.49389425,10.56453512,67.99437045,4.309987324,18.9372989,0,4473.449628,0.007723273,0,0 +1874,0.161012643,0.642458922,0,0,2.86805891,3.00E-04,0.024856862,0.010810794,0,0,0,0,0,104.88493,0,4265.0843,60.88850035,435.80418,0,0,0,0,0,0,5.30E-06,0,0,4.71E-04,0,0.521735812,10.75161101,69.34908007,4.369596918,19.30481072,0,4382.176552,0.007723273,0,0 +1875,0.173259068,0.650321509,0,0,2.833489105,3.05E-04,0.024856862,0.010810809,0,0,0,0,0,104.93101,0,4267.5065,61.4471703,426.8934955,0,0,0,0,0,0,5.33E-06,0,0,4.75E-04,0,0.552163614,10.66354523,67.4820886,4.311546236,18.75387609,0,4552.510356,0.007723273,0,0 +1876,0.175938232,0.65804039,0,0,2.843125267,3.09E-04,0.024856862,0.010810824,0,0,0,0,0,104.90175,0,4265.968,62.60294811,429.4805477,0,0,0,0,0,0,5.37E-06,0,0,4.79E-04,0,0.58288316,10.83189303,68.07266489,4.273649915,19.00214066,0,4640.322706,0.007723273,0,0 +1877,0.179825348,0.664694086,0,0,2.881579173,3.14E-04,0.024856862,0.010810839,0,0,0,0,0,104.92824,0,4267.3608,63.64524259,434.060346,0,0,0,0,0,0,5.41E-06,0,0,4.83E-04,0,0.612226706,10.8970216,68.77838073,4.413505724,19.0890591,0,4762.604755,0.007723273,0,0 +1878,0.180776983,0.671585762,0,0,2.905036494,3.19E-04,0.024856862,0.010810853,0,0,0,0,0,104.92472,0,4267.1759,64.71120383,437.9599498,0,0,0,0,0,0,5.44E-06,0,0,4.87E-04,0,0.637718424,10.99894534,69.46979574,4.503130841,19.22817131,0,4806.316495,0.007723273,0,0 +1879,0.193175438,0.678615294,0,0,2.92925864,3.23E-04,0.024856862,0.010810868,0,0,0,0,0,104.88028,0,4264.8396,65.90279841,440.8517591,0,0,0,0,0,0,5.47E-06,0,0,4.91E-04,0,0.658926777,11.18150569,70.08572002,4.447158396,19.48731539,0,5054.634873,0.007723273,0,0 +1880,0.219340005,0.684857424,0,0,2.921172062,3.29E-04,0.024856862,0.010810144,0,0,0,0,0,104.88174,0,4264.9162,66.6649843,437.3657275,0,0,0,0,0,0,5.51E-06,0,0,4.95E-04,0,0.672777776,11.21057035,69.18788119,4.386751757,19.32682128,0,5476.691841,0.007723273,0,0 +1881,0.22522318,0.722626203,0,0,2.962877226,3.34E-04,0.024856862,0.011551088,0,0,0,0,0,104.92914,0,4267.4079,67.70670095,440.9737248,0,0,0,0,0,0,5.55E-06,0,0,4.99E-04,0,0.680636704,11.27474846,69.70896889,4.531822011,19.32716624,0,5655.562653,0.007723273,0,0 +1882,0.236948997,0.674378608,0,0,2.944345851,3.39E-04,0.024856862,0.011550379,0,0,0,0,0,104.92759,0,4267.3266,68.57787524,436.0786301,0,0,0,0,0,0,5.59E-06,0,0,5.04E-04,0,0.689255681,11.34322096,68.75016749,4.409841205,19.15816229,0,5878.580768,0.007723273,0,0 +1883,0.250894677,0.681454028,0,0,2.918084088,3.45E-04,0.024856862,0.010810957,0,0,0,0,0,104.95902,0,4268.979,69.1859791,428.2212034,0,0,0,0,0,0,5.62E-06,0,0,5.08E-04,0,0.695872552,11.30107278,67.06254476,4.344707595,18.70936137,0,6136.750815,0.007723273,0,0 +1884,0.252849902,0.684683542,0,0,2.97815874,3.50E-04,0.024856862,0.010810972,0,0,0,0,0,104.93535,0,4267.7345,70.48060515,436.5183492,0,0,0,0,0,0,5.66E-06,0,0,5.12E-04,0,0.70169045,11.46377857,68.59402326,4.507763748,19.00988998,0,6243.347605,0.007723273,0,0 +1885,0.254442991,0.690863781,0,0,2.987658653,3.56E-04,0.024856862,0.011550438,0,0,0,0,0,104.93798,0,4267.8727,71.60546241,438.1415385,0,0,0,0,0,0,5.69E-06,0,0,5.16E-04,0,0.707890871,11.60315357,68.94977818,4.492846371,19.20686906,0,6294.938313,0.007723273,0,0 +1886,0.258326127,0.691934912,0,0,3.000148376,3.62E-04,0.024856862,0.011550467,0,0,0,0,0,104.9357,0,4267.7531,72.58254388,437.7333269,0,0,0,0,0,0,5.73E-06,0,0,5.20E-04,0,0.712632779,11.67579747,68.86926284,4.534738954,19.06781958,0,6353.027294,0.007723273,0,0 +1887,0.270973326,0.691885463,0,0,3.044590075,3.68E-04,0.024856862,0.011550497,0,0,0,0,0,104.94903,0,4268.4538,73.77743063,443.1077381,0,0,0,0,0,0,5.77E-06,0,0,5.24E-04,0,0.71821666,11.82565523,69.79403942,4.618994874,19.32845364,0,6605.766965,0.007723273,0,0 +1888,0.299024069,0.691539784,0,0,3.123484052,3.74E-04,0.024856862,0.011550526,0,0,0,0,0,104.91459,0,4266.6433,75.11035553,452.502308,0,0,0,0,0,0,5.80E-06,0,0,5.28E-04,0,0.724224235,12.04162329,71.42723744,4.741896917,19.78574643,0,7182.264809,0.007723273,0,0 +1889,0.29939589,0.691049208,0,0,3.104668338,3.81E-04,0.024856862,0.011550556,0,0,0,0,0,104.95877,0,4268.9657,75.92960019,448.6908696,0,0,0,0,0,0,5.84E-06,0,0,5.32E-04,0,0.730764112,12.07532791,70.65718772,4.727164288,19.55277705,0,7178.592239,0.007723273,0,0 +1890,0.32528597,0.68776294,0,0,3.159194949,3.87E-04,0.024856862,0.011550586,0,0,0,0,0,104.9317,0,4267.5425,77.07862319,453.8990323,0,0,0,0,0,0,5.87E-06,0,0,5.36E-04,0,0.755661554,12.22188071,71.47659717,4.807916688,19.77806486,0,7728.431301,0.007723273,0,0 +1891,0.340453909,0.684411407,0,0,3.125180696,3.94E-04,0.024856862,0.011550615,0,0,0,0,0,104.97344,0,4269.7366,77.68229292,444.3827318,0,0,0,0,0,0,5.91E-06,0,0,5.40E-04,0,0.766996007,12.1596402,69.53172191,4.743306066,19.19967303,0,8025.900173,0.007723273,0,0 +1892,0.342946092,0.69893132,0,0,3.110528365,4.01E-04,0.024856862,0.011550645,0,0,0,0,0,104.99082,0,4270.6504,78.54558089,439.808659,0,0,0,0,0,0,5.95E-06,0,0,5.45E-04,0,0.778272468,12.19914652,68.66391959,4.695682305,18.94952176,0,8166.143155,0.007723273,0,0 +1893,0.33787039,0.699713125,0,0,3.125430895,4.08E-04,0.024856862,0.012290126,0,0,0,0,0,104.97994,0,4270.0783,79.81501329,443.3506558,0,0,0,0,0,0,5.99E-06,0,0,5.49E-04,0,0.789729823,12.37945386,69.48705802,4.715239733,19.1784562,0,8120.644735,0.007723273,0,0 +1894,0.351124504,0.715581396,0,0,3.205110618,4.15E-04,0.024856862,0.01229017,0,0,0,0,0,104.93101,0,4267.5063,81.38345626,456.6960325,0,0,0,0,0,0,6.02E-06,0,0,5.52E-04,0,0.802004637,12.66238559,71.90804381,4.888948538,19.83612848,0,8411.388473,0.007723273,0,0 +1895,0.371712037,0.720945096,0,0,3.216163845,4.22E-04,0.024856862,0.011550763,0,0,0,0,0,104.96751,0,4269.4251,82.23116014,453.551885,0,0,0,0,0,0,6.06E-06,0,0,5.57E-04,0,0.812887633,12.67244423,71.15178658,4.919171254,19.52250048,0,8846.66701,0.007723273,0,0 +1896,0.383674818,0.723440788,0,0,3.170768747,4.30E-04,0.024856862,0.012290244,0,0,0,0,0,104.96751,0,4269.4252,83.00005426,444.0944278,0,0,0,0,0,0,6.09E-06,0,0,5.61E-04,0,0.824102858,12.72059369,69.42267706,4.733994615,19.17728772,0,9089.598433,0.007723273,0,0 +1897,0.401981164,0.725878271,0,0,3.268702112,4.37E-04,0.024856862,0.012290288,0,0,0,0,0,104.99693,0,4270.9718,84.39253635,456.4122055,0,0,0,0,0,0,6.13E-06,0,0,5.65E-04,0,0.834637127,12.8902171,71.5467325,5.026760132,19.58218288,0,9520.393854,0.007723273,0,0 +1898,0.42330421,0.72837657,0,0,3.296870259,4.45E-04,0.02485618,0.012290333,0,0,0,0,0,105.01512,0,4271.9281,85.36127162,456.6037674,0,0,0,0,0,0,6.17E-06,0,0,5.69E-04,0,0.844305316,12.95906823,71.45665952,5.098029535,19.50168111,0,10010.09583,0.007723236,0,0 +1899,0.463317192,0.728556158,0,0,3.355831345,4.86E-04,0.024857703,0.012290377,0,0,0,0,0,104.97653,0,4269.8993,86.70543387,462.1035994,0,0,0,0,0,0,6.20E-06,0,0,5.73E-04,0,0.853783366,13.20706844,72.46072256,5.094979384,19.86870993,0,10838.11345,0.007723233,0,0 +1900,0.488155862,0.73057236,0,0,3.361821037,0.002392668,0.024856437,0.028558348,0,0,0,0,0,104.98481,0,4270.3344,87.61328845,459.5444669,0,0,0,0,0,0,6.24E-06,0,0,5.77E-04,0,0.863169654,13.27666955,71.90656631,5.089168388,19.75078793,0,11348.7275,0.007723268,0,0 +1901,0.504485719,0.796906313,0,0,3.382952935,0.004820097,0.024857442,0.047784449,0,0,0,0,0,105.04131,0,4273.3046,88.39116711,457.6168305,0,0,0,0,0,0,6.28E-06,0,0,5.82E-04,0,0.871405959,13.3014099,71.63263161,5.202144138,19.48762217,0,11775.2552,0.007723268,0,0 +1902,0.519345117,0.800278636,0,0,3.38154147,0.005778122,0.024856062,0.050743008,0,0,0,0,0,105.04898,0,4273.708,89.26282464,455.0261768,0,0,0,0,0,0,6.32E-06,0,0,5.86E-04,0,0.881215447,13.41248803,71.24149846,5.179688037,19.3580615,0,12100.54877,0.007723268,0,0 +1903,0.566454621,0.829571146,0,0,3.389386332,0.006957613,0.024857979,0.05591998,0,0,0,0,0,105.09555,0,4276.1561,89.89074057,449.9625304,0,0,0,0,0,0,6.36E-06,0,0,5.90E-04,0,0.890660734,13.43752052,70.25376393,5.190103458,19.03059788,0,13044.15816,0.007723268,0,0 +1904,0.575152133,0.856100074,0,0,3.4640583,0.009436339,0.024855289,0.068491568,0,0,0,0,0,105.07939,0,4275.3063,91.35674943,462.621765,0,0,0,0,0,0,6.39E-06,0,0,5.94E-04,0,0.900998672,13.7314717,72.88437625,5.400226563,19.65611973,0,13274.43719,0.007723268,0,0 +1905,0.612296247,0.883090418,0,0,3.525334738,0.013412831,0.024859105,0.087718467,0,0,0,0,0,105.08907,0,4275.8152,92.40132432,467.4401288,0,0,0,0,0,0,6.43E-06,0,0,5.99E-04,0,0.911796751,13.85510547,73.70973522,5.570897784,19.75296716,0,14100.97838,0.007723268,0,0 +1906,0.644276357,0.913945895,0,0,3.54932448,0.018196454,0.024853655,0.11138246,0,0,0,0,0,105.10645,0,4276.7286,93.24998316,466.4356479,0,0,0,0,0,0,6.47E-06,0,0,6.03E-04,0,0.922864309,13.95964537,73.46173851,5.607842107,19.60693136,0,14766.45012,0.007723268,0,0 +1907,0.726915977,0.922997028,0,0,3.674457368,0.016966195,0.025812945,0.10398923,0,0,0,0,0,105.14627,0,4278.822,94.56080194,480.3174564,0,0,0,0,0,0,6.51E-06,0,0,6.07E-04,0,0.933557019,14.21677499,76.00444514,5.92575152,20.14449075,0,16264.98721,0.007723268,0,0 +1908,0.703232591,0.932378464,0,0,3.67587664,0.021404879,0.029231937,0.12765503,0,0,0,0,0,105.12414,0,4277.6586,95.71237193,482.582634,0,0,0,0,0,0,6.54E-06,0,0,6.11E-04,0,0.943978146,14.40742286,76.856238,5.975251674,20.34218955,0,15590.71312,0.007723268,0,0 +1909,0.7293531,0.939463987,0,0,3.690048662,0.036714367,0.765086,0.21121463,0,0,0,0,0,105.16533,0,4279.824,96.4666946,480.6894688,0,0,0,0,0,0,6.58E-06,0,0,6.16E-04,0,0.954146693,14.46573428,76.4408771,6.041715332,20.10967131,0,16371.00547,0.007723268,0,0 +1910,0.765726395,0.945592087,0,0,3.767608107,0.042342327,1.0366888,0.24301505,0,0,0,0,0,105.14442,0,4278.7248,97.77187103,491.4713622,0,0,0,0,0,0,6.62E-06,0,0,6.20E-04,0,0.964867509,14.73060447,78.48124343,6.225241543,20.6023284,0,17123.07052,0.007723268,0,0 +1911,0.781014654,0.887403675,0,0,3.725917532,0.047217079,0.55672031,0.27037941,0,0,0,0,0,105.20214,0,4281.7592,98.42938116,482.3736484,0,0,0,0,0,0,6.66E-06,0,0,6.24E-04,0,0.976172007,14.67937454,76.73370569,6.205453711,20.00760743,0,17244.18549,0.007723268,0,0 +1912,0.819966191,0.85083987,0,0,3.709100468,0.055977137,1.3372385,0.31844894,0,0,0,0,0,105.23472,0,4283.4718,99.26614632,477.9889215,0,0,0,0,0,0,6.70E-06,0,0,6.29E-04,0,0.99242033,14.7136648,75.83160819,6.219463911,19.68089243,0,17989.19691,0.007723268,0,0 +1913,0.88953397,0.82034848,0,0,3.787939036,0.05934571,2.7874772,0.33694139,0,0,0,0,0,105.25437,0,4284.5046,100.6125584,488.2676035,0,0,0,0,0,0,6.74E-06,0,0,6.33E-04,0,1.011440097,14.92180765,77.5799616,6.45387962,20.00732869,0,19072.75319,0.007723268,0,0 +1914,0.811491369,0.809204505,0,0,3.764418792,0.064801984,4.5655912,0.36726542,0,0,0,0,0,105.19867,0,4281.5767,102.2840587,494.4978826,0,0,0,0,0,0,6.77E-06,0,0,6.36E-04,0,1.032129514,15.24149746,79.77807343,6.499176733,20.59248109,0,17594.43406,0.007723268,0,0 +1915,0.802991659,0.797401958,0,0,3.722337783,0.084000629,6.2098372,0.47153519,0,0,0,0,0,105.2716,0,4285.4105,103.0579197,484.2476849,0,0,0,0,0,0,6.81E-06,0,0,6.41E-04,0,1.054619583,15.23213103,78.35040062,6.482772073,20.06142458,0,17573.11604,0.007723268,0,0 +1916,0.86533079,0.799710226,0,0,3.744207069,0.10465075,5.9968917,0.58467971,0,0,0,0,0,105.29863,0,4286.831,104.0889435,482.954266,0,0,0,0,0,0,6.85E-06,0,0,6.46E-04,0,1.077791382,15.34284718,78.27985155,6.601680858,19.90829861,0,19065.48428,0.007723268,0,0 +1917,0.896621585,0.802745574,0,0,3.826396856,0.11034348,5.1585271,0.61870744,0,0,0,0,0,105.37275,0,4290.7275,105.4397415,492.9600448,0,0,0,0,0,0,6.89E-06,0,0,6.51E-04,0,1.100255613,15.500365,80.45481807,7.003710361,20.17756104,0,19906.99893,0.007723268,0,0 +1918,0.887395559,0.80603585,0,0,3.83059738,0.10461425,4.2721672,0.58914082,0,0,0,0,0,105.37311,0,4290.7462,106.7459316,496.2420731,0,0,0,0,0,0,6.93E-06,0,0,6.55E-04,0,1.121226709,15.70439103,81.61294814,7.118191256,20.36895158,0,19743.24497,0.007723268,0,0 +1919,0.780860402,0.811159148,0,0,3.722641135,0.10155164,3.196035,0.57214502,0,0,0,0,0,105.33647,0,4288.8202,108.095107,490.9794171,0,0,0,0,0,0,6.96E-06,0,0,6.59E-04,0,1.140233478,15.91565271,81.67724386,6.926922673,20.36863821,0,16994.78687,0.007723268,0,0 +1920,0.903060101,0.813518455,0,0,3.813010121,0.071874804,4.0059497,0.41169313,0,0,0,0,0,105.40157,0,4292.2427,109.1336385,498.8745999,0,0,0,0,0,0,7.01E-06,0,0,6.64E-04,0,1.157633765,16.03665614,82.96992111,7.318815146,20.4023951,0,18802.69892,0.007723268,0,0 +1921,0.793835864,0.861299333,0,0,3.661222702,0.05599481,6.3575755,0.32444592,0,0,0,0,0,105.42979,0,4293.7261,109.809348,486.6136242,0,0,0,0,0,0,7.05E-06,0,0,6.68E-04,0,1.173417685,16.0101613,81.18725519,7.146950074,19.84610877,0,16049.70593,0.007723268,0,0 +1922,0.843896663,0.853369204,0,0,3.658333723,0.10093674,7.5196689,0.56921203,0,0,0,0,0,105.47367,0,4296.0327,110.4858104,484.8273418,0,0,0,0,0,0,7.09E-06,0,0,6.73E-04,0,1.188779372,16.07300912,80.53069431,7.252038815,19.4742784,0,16950.896,0.007723268,0,0 +1923,0.959559001,0.86148441,0,0,3.88124621,0.13753371,8.1995609,0.77479139,0,0,0,0,0,105.54539,0,4299.8026,112.2535641,514.2343951,0,0,0,0,0,0,7.13E-06,0,0,6.78E-04,0,1.205120978,16.4693053,86.27583424,8.013836332,20.41782521,0,19723.67202,0.007723268,0,0 +1924,0.970359441,0.867663331,0,0,3.774809016,0.14595489,10.064032,0.82730698,0,0,0,0,0,105.55899,0,4300.5175,112.633506,499.0974144,0,0,0,0,0,0,7.17E-06,0,0,6.82E-04,0,1.222219042,16.41564777,83.21123114,7.790296572,19.77882376,0,19521.89407,0.007723268,0,0 +1925,0.983699121,0.870847171,0,0,3.790606982,0.15281139,9.887985,0.86947278,0,0,0,0,0,105.60265,0,4302.8128,113.6704269,502.6957688,0,0,0,0,0,0,7.21E-06,0,0,6.87E-04,0,1.237791101,16.84168156,84.06174423,7.983263812,19.75345484,0,19738.88984,0.007723268,0,0 +1926,0.971193664,0.875288161,0,0,3.724383638,0.16877181,10.020584,0.96266008,0,0,0,0,0,105.65209,0,4305.4116,114.5456303,499.0418204,0,0,0,0,0,0,7.25E-06,0,0,6.92E-04,0,1.252612106,17.14732508,84.16877083,8.057166102,19.57302011,0,19808.91323,0.007723268,0,0 +1927,1.071982298,0.914815243,0,0,3.850357382,0.19366311,13.691728,1.1076116,0,0,0,0,0,105.65063,0,4305.3352,115.74748,515.0910884,0,0,0,0,0,0,7.29E-06,0.004945027,0,6.96E-04,0,1.266765284,17.43232174,86.52753525,8.499773807,19.87550986,0,21139.78229,0.007723268,0,0 +1928,1.076174298,0.918261907,0,0,3.828134932,0.2132805,16.914307,1.2252077,0.020814729,0,0,0,0,105.59392,0,4302.3537,116.7958666,515.8400889,0,0,0,0,0,0,7.32E-06,0.030139896,0,6.99E-04,0,1.279785085,17.62700285,87.11586337,8.569023695,19.91593076,0,21065.04746,0.007723269,0,0 +1929,1.156951387,0.945536477,0,0,3.890215994,0.20802541,19.38339,1.2037865,0.33502494,0,0,0,0,105.60372,0,4297.9849,118.0199977,527.0535755,0,0,0,0,0,0,7.35E-06,0.003329301,0,7.02E-04,0,1.290827582,17.86727278,89.37670247,8.894481948,20.27497394,0,22402.21952,0.007723266,0,0 +1930,1.072886478,1.022800884,0,0,3.907622806,0.17035764,20.571834,0.99750344,1.1701026,0,0,0,0,105.91829,0,4287.8382,119.6701788,535.0349028,0,0,0,0,0,0,7.36E-06,-0.026051043,0,7.03E-04,0,1.300370355,18.10997615,91.59573863,8.841770878,20.95238859,0,20792.33986,0.007723273,0,0 +1931,0.968671726,1.033130291,0,0,3.699193086,0.11326202,21.232329,0.6766021,1.6600329,0,0,0,0,106.6887,0,4282.6938,119.9075078,504.8981345,0,0,0,0,0,0,7.38E-06,-0.003829208,0,7.06E-04,0,1.307318192,17.9582942,86.48531867,8.206316153,19.78298346,0,18348.146,0.007723259,0,0 +1932,0.880274393,0.934985061,0,0,3.701120519,0.085847633,23.837144,0.51911084,1.6167368,0,0,0,0,107.41813,0,4276.7559,121.4219873,510.1823315,0,0,0.005764349,0,0,0,7.40E-06,7.43E-04,0,7.08E-04,0,1.314106352,18.10001304,87.90725373,8.142484302,20.16181555,0,16151.1052,0.007723289,0,0 +1933,0.923452608,0.931801343,0,0,3.673991696,0.1016274,28.120028,0.61081444,1.6336582,0,0,0,0,108.09758,0,4271.2585,122.3437659,508.1160121,0,0,0.14482802,0,0,0,7.43E-06,8.08E-04,0,7.11E-04,0,1.319777787,18.14058312,87.73926442,8.102332977,20.01961331,0,16995.04081,0.007723222,0,0 +1934,1.000687974,0.920029755,0,0,3.817622407,0.15202423,34.519287,0.91252255,1.6505883,0,0,0,0,108.91202,0,4272.3774,123.9532999,528.033166,0,0,0.60639434,0,0,0,7.47E-06,8.78E-04,0,7.15E-04,0,1.326062979,18.32411359,91.49703968,8.603675585,20.70261784,0,18679.91277,0.007723374,0,0 +1935,1.050596869,0.918684315,0,0,3.826763235,0.22028466,40.132859,1.3303298,1.6675173,0,0,0,0,109.70014,0,4272.1486,124.8946044,529.4409406,0,0,0.97427321,0,0,0,7.50E-06,9.54E-04,0,7.19E-04,0,1.33245233,18.31731965,91.90214074,8.779424673,20.54319704,0,20077.94332,0.007723023,0,0 +1936,1.150366722,0.927069389,0,0,3.972008023,0.28820401,42.33712,1.7570203,1.6844464,0,0,0,0,110.56758,0,4275.9063,126.4647048,550.0398549,0,0,1.0455299,0,0,0,7.55E-06,0.001037276,0,7.24E-04,0,1.338689989,18.65286964,95.83484543,9.362043925,21.16418654,0,21597.57179,0.007723846,0,0 +1937,1.231103105,0.904516492,0,0,3.977215074,0.34372195,44.188471,2.1186454,1.7013755,0.006390022,0,0,0,111.3625,0,4275.9946,127.1823371,550.6109419,0,0,1.1131878,0,0,0,7.58E-06,0.001127477,0,7.28E-04,0,1.346525353,18.735883,95.84567433,9.575630542,20.85060471,0,23231.71203,0.00772185,0,0 +1938,1.161421971,0.907321542,0,0,3.879546431,0.39883954,49.06474,2.4891541,1.7183047,0.1328808,0,0,0,112.0603,0,4271.2734,127.905393,535.4268485,0,0,1.185033,0,0,0,7.61E-06,0.001225424,0,7.31E-04,0,1.355126677,18.72062801,93.23706062,9.133612085,20.283818,0,21542.97587,0.007728553,0,0 +1939,1.232613704,0.905880028,0,0,4.010820601,0.43390074,56.683054,2.745053,1.7352338,0.68779311,0,0,0,112.8293,0,4270.1197,129.5013568,554.5379171,0,0,1.2571398,0,0,0,7.64E-06,0.001332062,0,7.35E-04,0,1.366829172,18.98792969,97.34535423,9.632984019,21.02085333,0,23010.26881,0.11813875,0,0 +1940,1.332494478,0.893463629,0,0,4.026253626,0.50172554,67.980741,3.2190952,1.7521629,1.4928916,0,0,0,113.75015,0,4276.3916,130.1349943,550.4654056,0,0,1.3304594,0,0,0,7.69E-06,0.001448183,0,7.41E-04,0,1.379589207,18.93380648,96.49612887,9.961368881,20.56627575,0,25159.07412,0.21814961,0,0 +1941,1.35733239,0.876081403,0,0,4.050294267,0.64957282,81.740279,4.2240743,1.769092,2.2339929,0,0,0,114.54353,0,4282.9257,132.2180939,552.9500651,0,0,1.4028748,0,0,0,7.73E-06,0.00157415,0,7.45E-04,0,1.427063176,19.03403078,97.09407345,10.19371174,20.46203137,0,26113.9497,0.1951164,0,0 +1942,1.359049319,0.897314522,0,0,4.114193284,0.84353078,95.021136,5.585489,1.7860212,2.976471,0,0,0.19841173,115.26991,0,4303.7401,134.7060241,560.1841861,0,0,1.4745564,0,0,0,7.76E-06,0.001710955,0,7.48E-04,0,1.529818545,19.21018323,98.65719695,10.34548378,21.01419377,0,26702.04279,0.16898031,0,0 +1943,1.402945825,0.892124843,0,0,4.114085782,0.80476688,89.521615,5.4576739,1.8029502,3.7199961,0,0.056451758,4.3053247,116.04761,0,4331.4951,136.6296869,561.0185503,0,0,1.5467027,0,0,0,7.79E-06,0.001859737,0,7.52E-04,0,1.677793207,19.22648995,99.48634644,10.64406286,20.76469901,0,27110.34859,0.14684461,0,0 +1944,1.387913119,0.898318952,0,0,4.111269896,0.41764093,72.694302,2.9606569,1.8198794,4.4638059,0,0.97266311,16.545617,116.85265,0,4354.745,138.9310562,569.4275578,0,0,1.6191675,0,0,0,7.83E-06,0.002021507,0,7.56E-04,0,1.853743997,19.45467137,102.0083052,10.97214997,20.91812228,0,26578.15151,0.11439264,0,0 +1945,1.180916482,0.898822172,0,0,3.970406317,0.20111842,68.369262,1.5076942,1.8368084,5.2077233,0,3.4593405,24.846154,117.6118,0,4376.5008,141.022964,562.3881403,0,0,1.69101,0,0,0,7.86E-06,0.002197258,0,7.60E-04,0,2.046836624,19.53099873,102.3868629,10.81105837,20.63041519,0,23414.92286,0.080798572,0,0 +1946,1.294211066,0.982947007,0,0,3.971696435,0.27970458,74.717234,2.0726649,1.8537378,5.9856104,0,4.9404679,24.839378,118.39896,0,4399.6117,142.7064022,555.289963,0,0,1.7631908,0,0,0,7.89E-06,0.002388349,0,7.64E-04,0,2.242235208,19.68948842,102.6581835,10.80993836,20.3059335,0,23137.29124,0.064300427,0,0 +1947,1.449894938,1.013635265,0,0,4.004289599,0.34838359,84.081746,2.6369074,1.8706665,6.4443541,0,4.8390374,24.982371,119.2973,0,4428.0553,144.7944965,563.4037754,0,0,1.8372679,0,0,0,7.94E-06,0.002596315,0,7.69E-04,0,2.428654505,19.91609513,104.1573676,11.48967842,20.19099947,0.003372839,25978.58013,0.046731228,0,0 +1948,1.541746758,1.021788966,0,0,4.123520873,0.33316898,90.670686,2.6243892,1.8875961,6.6649072,0,4.8563661,24.987103,120.08364,0,4451.0369,147.2720295,586.53608,0,0,1.966277,0,0,0,7.98E-06,0.003327672,0,7.73E-04,0,2.589644896,20.34906056,108.0964174,12.19576499,20.65035706,0.023611977,27162.31675,0.020169381,0,0 +1949,1.51503408,1.032229109,0,0,4.095746551,0.31424196,91.962416,2.5926444,1.8955033,7.1640705,0,5.561141,27.295461,120.70601,0,4466.7618,150.2157149,588.4410387,0,0,1.6426278,0,0,0,7.99E-06,0.02463759,0,7.75E-04,0,2.714013981,20.9091959,109.1544258,11.86397123,21.08117938,0.063741035,26198.85137,-0.001578436,0,0 +1950,1.695680787,1.04543439,0,0,4.331260791,0.32876887,78.580053,2.8441101,1.9897329,7.4706053,0,8.1460574,32.673745,121.62274,0,4499.2896,152.2010084,619.9439709,0,0,1.0661465,0,0,0,8.05E-06,0.10531435,0,7.81E-04,0,2.786823806,21.60140457,113.8598472,13.13214183,22.10581056,0.16053368,29148.54682,2.43E-04,0,0 +1951,1.817356704,1.263788462,0,0,4.212336067,0.33222262,70.47669,3.0430784,2.1685287,7.5542237,0,12.050138,36.815853,122.51807,0.014330518,4529.1876,155.2719352,593.1994506,0,0,1.0527789,0,0,0,8.09E-06,0.2343219,0,7.85E-04,0,2.830792646,21.71096706,109.0909544,13.15219389,20.39818818,0.23983988,30378.93497,0.001166432,0,0 +1952,1.85187593,1.291508658,0,0,4.278249967,0.32854487,76.508762,3.2228257,2.4120426,7.6734014,0,16.078842,40.441283,123.26435,0.21725302,4558.7052,160.5733576,606.95634,0,0,1.4414744,0,0,0,8.10E-06,0.3628351,0,7.87E-04,0,2.873469224,22.39378605,112.6182109,13.48661504,20.95793435,0.24565292,30772.87938,-0.002030065,0,0 +1953,1.905887196,1.288662579,0,0,4.400134891,0.31999622,81.681224,3.3863087,2.8478934,7.7034458,0,20.201055,45.581432,124.06078,1.3575508,4600.7084,165.6818323,623.9750548,0,0,2.100408,0,0,0,8.12E-06,0.48047903,0,7.90E-04,0,2.918473221,23.08627653,116.7765378,14.05062035,21.60093971,0.24572915,31392.44296,-2.28E-04,0,0 +1954,1.955325831,1.342683244,0,0,4.475107773,0.29457384,86.86347,3.4048632,3.2763156,7.760213,0,25.212381,51.892411,124.75392,3.6198833,4629.2231,170.3710079,628.9096635,0,0,2.8888848,0,0,0,8.14E-06,0.59576061,0,7.91E-04,0,2.965305231,23.5182693,118.7896929,14.35262782,21.65473895,0.24580572,31601.64062,-0.004070821,0,0 +1955,2.138786817,1.387820683,0,0,4.585745112,0.26311875,91.980019,3.3346824,3.6788015,7.6370702,0,30.727319,59.871881,125.74327,6.4848679,4666.3367,174.7404471,641.3267253,0,0,3.5564777,0,0,0,8.18E-06,0.70910415,0,7.96E-04,0,3.016004168,23.78869162,122.5425815,15.35988489,21.61194057,0.24588273,34555.40272,0.001049355,0,0 +1956,2.291039468,1.446283643,0,0,4.844401489,0.22075982,97.008491,3.0796375,4.2759912,7.5430316,0,33.546756,66.950489,126.58168,9.1561662,4699.2729,180.6711175,673.806229,0,0,4.5322658,0,0,0,8.21E-06,0.82044371,0,8.00E-04,0,3.06769313,24.39548109,129.82302,16.40773077,22.72448276,0.24595899,37118.77109,0.006640162,0,0 +1957,2.384773,1.477494579,0,0,5.084522572,0.18587639,102.11597,2.8571248,4.9612019,7.3765313,0,32.871446,72.204141,127.41838,11.488509,4733.2024,186.0555677,695.9496131,0,0,5.9875108,0,0,0,8.25E-06,0.92977447,0,8.03E-04,0,3.122765936,25.10938271,135.5915206,17.20228851,23.82634945,0.24603635,38873.75431,0.004342369,0,0 +1958,2.467095469,1.528597347,0,0,5.060488043,0.17928487,107.206,2.9954591,5.6330503,6.9087313,0,34.746284,80.925329,128.42262,14.781202,4771.3965,188.3855399,661.2854858,0,0,7.120204,0,0,0,8.29E-06,1.0371306,0,8.08E-04,0,3.184188319,25.26871426,129.2085836,17.04310474,22.2466504,0.2461131,39341.99136,0.002605294,1.53E-05,1.55E-04 +1959,2.603672914,1.473668289,0,0,5.186762349,0.18081021,112.29185,3.2476716,6.3880226,6.8760458,0,43.506257,93.983467,129.47587,18.063698,4808.726,192.6867573,665.4367222,0,0,8.0253807,0,0,0,8.33E-06,1.1424694,0,8.12E-04,0,3.250322629,25.78456832,131.2104974,17.51526633,22.13695045,0.30755864,41319.47351,8.68E-04,1.22E-04,0.001246036 +1960,2.728446849,1.461519532,0,0,5.288213084,0.17259465,117.2597,3.3209398,7.3201718,7.2392631,0,56.281481,107.5417,130.53321,21.750437,4847.0424,197.2611005,668.565663,0,0,9.5885732,0,0,0,8.37E-06,1.2458107,0,8.17E-04,0,3.323928526,26.12794679,133.3368149,18.13798676,22.06866314,0.4304021,42970.73471,-8.68E-04,2.31E-04,0.002375087 +1961,2.75210185,1.531158202,0,0,5.280187775,0.16861102,121.58986,3.4304351,8.4287849,7.4514735,0.001861801,70.618557,123.80387,131.26152,27.278298,4864.0212,205.1383413,701.0053453,0,0,11.884386,0,0,0,8.37E-06,1.346892,0,8.17E-04,0,3.545375735,26.8897385,143.5652635,18.73899699,23.37357314,0.55328481,48370.7476,-0.002605324,2.49E-04,0.003546415 +1962,2.868392579,1.520724684,0,0,5.268371109,0.17112099,125.71015,3.6249821,9.6127678,7.5805279,0.045181371,86.214551,144.89716,132.4011,32.049021,4895.6486,207.2122992,678.8492234,0,0,14.500089,0,0,0,8.41E-06,1.4460951,0,8.21E-04,0,3.678783292,27.3913443,140.105892,19.33292939,22.55009464,0.61483924,49373.46267,-0.004342521,2.53E-04,0.004920676 +1963,3.036186161,1.527209311,0,0,5.437875743,0.18314033,128.88013,3.9881367,10.949721,7.9110854,0.24720738,101.83231,167.67883,132.99126,37.52532,4904.2354,216.1922656,741.3196016,0,0,17.280228,0,0,0,8.39E-06,1.5429261,0,8.19E-04,0,3.803776307,28.74464761,156.130954,20.52084737,24.60921093,0.55366285,50918.54792,-0.007869931,3.52E-04,0.005972759 +1964,3.193585727,1.518253087,0,0,5.259909465,0.20130699,129.76929,4.4326257,12.657214,8.4778946,0.46848862,116.30072,189.8766,134.07707,49.914046,4933.087,216.556163,689.11146,0,0,20.771971,0,0,0,8.44E-06,1.6379776,0,8.24E-04,0,3.945754292,28.60741633,146.4547756,21.25062666,22.37762398,0.49245891,52831.63767,-7.60E-04,0.001030371,0.033580017 +1965,3.342046615,1.549410355,0,0,5.270010253,0.2250418,129.69213,4.9089192,14.528257,9.0358315,0.58010695,130.83984,213.3919,135.19804,70.507935,4953.0596,222.6664157,709.3122963,0,0,25.0603,0,0,0,8.46E-06,1.7308461,0,8.27E-04,0,4.115195266,29.97215368,153.4053912,22.08301054,22.64997293,0.4926084,54063.80178,0.015948649,0.002140689,0.11324642 +1966,3.50172055,1.551765281,0,0,5.285174796,0.26721734,129.70542,5.6248074,16.547774,9.5008952,0.77191369,147.99606,240.15802,136.46754,94.258765,4976.4474,226.3106958,710.9414665,0,0,30.477075,0,0,0,8.51E-06,1.8217969,0,8.32E-04,0,4.311197356,31.55306755,156.4949809,22.8477914,22.43429714,0.61550021,55269.31676,0.069786165,0.003103097,0.20275693 +1967,3.625966014,1.595865386,0,0,5.390458849,0.32052973,129.68847,6.3547572,18.918172,9.9208119,1.0373,169.42177,269.58286,137.66763,116.32544,4995.4184,232.3331465,746.2098209,0,0,36.036945,1.25E-05,0,6.90E-05,8.54E-06,1.9105949,0,8.37E-04,0,4.481777635,33.16777605,164.7753162,24.19623738,23.58529354,0.7384486,54762.8971,0.24404072,0.003754249,0.26151045 +1968,3.834595266,1.546993091,0,0,5.370373092,0.40423022,129.73308,7.3324415,21.713594,10.295172,1.3673824,195.13757,299.71437,139.24379,133.08156,5029.5667,235.3354027,740.4824182,0,0.009237978,40.359034,8.80E-05,0,4.86E-04,8.63E-06,1.9976935,0,8.46E-04,0,4.618299686,34.38157284,165.0957088,25.41081254,22.82579691,0.67731523,56868.37887,0.44305972,0.005543179,0.29037411 +1969,4.061567727,1.543708902,0,0,5.404091613,0.5206411,129.76058,8.4831718,24.938178,10.638634,1.7120901,220.72612,327.55328,140.05867,146.61896,5026.2804,239.1848516,747.0297315,0,0.18322115,44.144508,9.37E-05,0,5.04E-04,0.009824818,2.0817369,0,8.45E-04,0,4.732615323,34.96181251,169.6815713,26.06506901,22.10048951,0.67751619,58467.8108,0.55613635,0.03648951,0.30862539 +1970,4.323514044,1.531929069,0,0,5.549708797,0.6581692,129.69302,9.5318801,28.576904,11.00827,1.8909658,245.38621,354.60102,141.52757,173.56366,5048.3132,244.4183955,781.0375523,0,0.60795801,49.037394,2.47E-05,0,1.09E-04,0.036330653,2.1644992,0,8.52E-04,0,4.714190308,37.46957853,179.6859547,27.82408407,22.78022432,0.80047128,61529.77979,0.64373178,0.11813403,0.34789664 +1971,4.510244869,1.405554242,0,0,5.703748992,0.82992065,129.60227,10.711494,32.729139,11.452529,2.1402118,276.44309,387.53989,143.1196,217.72405,5067.5026,249.2895331,796.2029425,0,0.8564576,55.790888,1.33E-05,0,4.26E-05,0.064586906,2.2451174,0,8.59E-04,0,4.663522046,38.13342516,183.5355579,28.61726398,23.19511601,0.86210262,61716.79563,0.78786166,0.2232129,0.40686343 +1972,4.706494312,1.326937135,0,0,5.971153375,1.0559029,129.65777,12.24311,37.465523,11.97792,2.5517628,314.22879,427.68026,144.52172,267.60333,5079.1924,257.2102054,868.4735708,0,0.87667663,61.456633,1.35E-05,0,4.30E-05,0.082580189,2.3233295,0,8.64E-04,0,4.93074212,39.56446297,196.6655247,30.23622151,25.52743454,0.86237286,63465.10424,1.0951867,0.31882408,0.4721474 +1973,4.975651786,1.318385656,0,0,5.895831576,1.330787,129.79157,14.085332,42.979262,12.585161,2.92937,338.0693,454.71123,146.54158,301.85553,5118.3195,260.294725,826.0293132,0,0.82240702,65.420113,1.38E-05,0,5.50E-05,0.090214925,2.4006492,0,8.77E-04,0,5.050826137,39.95714271,186.5259319,31.24009688,23.45564811,0.92401065,66317.71189,1.5930673,0.39726303,0.54390644 +1974,4.948149198,1.290549,0,0,5.971643938,1.4191691,129.76026,14.311146,49.247959,13.447442,3.5184015,340.6055,453.22872,147.80664,327.35544,5113.8208,261.8082771,824.6214022,0,0.76119143,71.666995,1.40E-05,0,0.052416219,0.087063163,2.474116,0,8.78E-04,0,5.034419125,40.69211664,183.6005251,31.07740605,23.59962462,1.0394718,65371.62667,2.1806547,0.67241083,0.65809554 +1975,4.9286224,1.303204964,0,0,5.998431374,1.4004084,129.65616,14.321042,57.565811,14.538442,4.2176868,337.71465,440.16522,148.91662,384.99818,5104.4298,263.0585486,816.9194859,0,0.80304672,79.153904,1.42E-05,0,0.19213674,0.072875586,2.545125,0,8.78E-04,0,5.206812767,41.4767259,177.5130673,30.76637271,23.12965379,1.1646458,64182.76882,2.8018363,1.2682709,0.8287437 +1976,5.194661022,1.320205358,0,0,6.237496532,1.5554771,129.63321,16.011714,57.24638,15.386466,4.743647,329.27602,426.10768,150.23158,475.43135,5104.2152,269.9482097,856.0634915,0,0.82394648,92.664426,1.44E-05,0,0.33759564,0.047412585,2.614347,0,8.80E-04,0,5.352361697,42.52135697,186.2474273,32.28663209,24.40571792,1.4235416,67153.40876,3.4107057,1.8435573,0.98712807 +1977,5.36442864,1.352097971,0,0,6.353178768,1.692355,129.63647,16.762577,55.875241,15.71703,5.1782548,306.11158,404.2283,152.04264,533.0325,5117.6518,274.0301524,868.4313097,0,0.93269902,109.06413,2.14E-06,0,0.42456315,0.022180513,3.5323931,0,8.87E-04,0,5.499463795,43.27485688,189.2255323,33.05929028,24.38724427,2.1583469,67777.19082,3.8826089,2.1420878,1.0852977 +1978,5.581802903,1.2993019,0,0,6.579044818,1.7691766,130.48849,16.898235,72.245349,15.529417,5.5214166,278.45958,383.9896,153.91731,529.79652,5132.0601,276.3333545,897.4051484,0,1.277913,112.78031,-6.25E-05,0,0.45249588,-0.059867027,4.661461,0,8.95E-04,0,5.625120896,44.24089207,192.9347955,34.2691933,25.01974419,2.8286901,68023.04188,4.2701212,2.1599238,1.1209157 +1979,5.73073214,1.252317648,0,0,6.677231649,1.9203395,128.37989,17.898313,94.634628,14.991238,6.1020639,271.13342,394.80033,155.58904,518.50501,5138.651,281.6000656,900.4664227,0,1.7595655,113.22088,-2.04E-06,0,0.42017076,-0.17766763,5.0937882,0,9.00E-04,0,5.807081799,45.13478108,196.0169029,35.01398718,25.21247986,2.8296177,69119.86371,4.6513697,2.0579417,1.1328091 +1980,5.650947967,1.244135794,0,0,6.618387125,1.9633226,125.08456,17.664267,120.23426,14.760861,7.2362595,276.09356,398.43779,157.04196,513.02719,5131.8984,283.3464702,890.5114952,0,2.0330453,118.29604,7.94E-05,0,0.35605477,-0.12485274,5.1732709,0,9.02E-04,8.17E-05,5.872959052,45.97852705,194.391242,34.76440147,25.23254566,2.8304823,68783.84557,5.1129913,2.1545661,1.1562096 +1981,5.539335981,1.252813549,0,0,6.57778223,1.7391266,126.52811,16.187192,128.45086,13.920115,8.6372447,271.00597,403.07178,158.51506,516.86109,5123.4643,279.7894207,875.7816094,0,1.96562,122.37567,1.71E-05,0,0.32601335,0.11779446,4.4274361,0,9.03E-04,6.97E-04,5.805407446,46.37436562,189.1686139,34.11541673,24.87329597,2.9541119,66688.82722,6.0090215,2.4863888,1.1742814 +1982,5.477249508,1.258145478,0,0,6.915258578,1.6205522,129.38621,15.97381,128.57689,13.885459,9.2748324,277.72577,391.79861,159.18065,532.93449,5083.3728,287.6693154,967.4292983,0,1.6573364,125.26367,-8.23E-05,0,0.33083911,0.22216908,3.5575865,0,8.94E-04,0.001578501,6.043062728,47.66689068,206.8844648,34.15609141,28.27220571,2.9550432,65532.30175,6.4693449,3.0131287,1.352411 +1983,5.483062193,1.433024176,0,0,6.625402214,1.8456854,130.75989,16.384525,150.74703,15.564841,9.057039,353.29433,385.70972,160.09109,547.19948,5047.3484,281.6176584,862.0214943,0,1.3378778,129.4055,-2.71E-05,0,0.33559498,0.09748991,3.8040369,0,8.87E-04,0.002017846,6.06583408,47.6454021,183.8358223,33.28512898,24.45951343,3.2014371,64552.41617,6.0034055,3.8198142,1.378774 +1984,5.619005091,1.461224853,0,0,6.815018955,1.954181,134.9934,14.927399,167.86607,17.177696,10.537606,352.61795,438.30954,162.15076,546.6524,5054.1956,285.0030452,889.7020107,0,1.2391705,137.14097,8.66E-05,0,0.48356263,0.027417786,4.8805395,0,8.93E-04,0.004307161,5.996375963,48.69349353,189.3335257,34.32486538,25.32627636,3.570683,65309.89915,6.3412338,4.7987259,1.1329507 +1985,5.678895003,1.499743779,0,0,6.922761989,1.930951,138.44665,13.863624,191.20489,18.042992,12.093107,321.80334,487.46531,164.43684,559.24581,5072.7864,285.6752697,906.9368199,0,1.4290266,148.48134,2.16E-04,0,0.56320674,0.085787554,5.2553933,0,9.02E-04,0.012966035,5.996554239,49.41563613,190.4568857,34.8615092,25.83243998,3.6945657,65474.08715,7.6862714,5.5359652,1.1864916 +1986,5.784334368,1.530113569,0,0,7.013703662,2.0447892,134.66824,14.595216,226.48099,17.343175,11.156209,363.19165,561.19711,166.53505,605.54478,5079.9439,290.8084488,914.5218093,0,2.1480617,163.26271,2.16E-04,6.84E-04,0.57273931,0.044305139,5.6896951,0,9.08E-04,0.028102657,6.123193923,50.21167874,195.6652235,35.24652923,25.91211685,3.9411958,65479.27148,8.6199267,5.6626388,1.453026 +1987,5.942054872,1.515689335,0,0,7.200139154,2.1868179,140.05915,15.122737,234.71551,15.986362,11.176584,377.17492,543.59326,168.70781,636.85035,5087.8651,295.0485147,952.0611492,0.001157823,3.2631248,177.25124,5.82E-05,0.004878587,0.79616882,-0.099665792,6.5386064,0,9.14E-04,0.044783508,6.350228642,51.33101366,203.5851701,36.43815818,27.25186717,4.3106697,66721.094,9.1692428,5.2412687,1.7364871 +1988,6.133362797,1.515094775,0,0,7.39663506,2.2384091,134.89421,15.295333,225.34631,14.052169,12.063592,324.40759,433.01446,171.54521,645.54402,5119.7697,298.6854951,950.4151874,0.34924766,5.2661192,185.3279,0.021115007,0.06849384,0.88192316,-0.073662439,6.6278139,0,9.28E-04,0.060567348,6.188309996,51.72677742,203.5322276,37.79778929,27.18506613,4.6802608,67287.4839,10.094657,4.7030971,1.770198 +1989,6.211121149,1.53212989,0,0,7.320233668,2.2075539,105.50252,15.212081,212.83728,10.119863,11.292045,246.46809,357.7641,174.22363,713.52261,5139.3872,302.1641744,930.8467755,0.72136249,10.730464,189.56819,0.31476996,0.67304705,0.82629641,0.054397397,6.6572182,0,0.006065534,0.076147787,6.264529715,52.06403696,200.3165052,38.13825088,26.33140677,5.0499664,67312.93275,10.904862,4.3864096,1.6702493 +1990,6.186811699,1.445096887,0,0,7.508271532,2.1076967,86.426532,14.407865,176.8456,7.0905085,10.591201,208.25652,333.97703,176.36773,658.40311,5137.248,305.2725547,940.5626313,1.5203264,17.768055,192.30881,0.96053501,1.7208698,0.69729352,0.18589003,6.6838429,0,0.02696988,0.091767095,6.277152283,52.52170068,203.021231,38.25721546,27.36536835,5.1743108,67094.07179,10.051338,4.2741531,1.7373255 +1991,6.190131152,1.63686011,0,0,8.011536269,1.982897,85.142226,12.924815,120.64491,6.9542228,10.775591,159.81289,286.27307,177.30503,474.47964,5089.9323,318.7311921,1129.983883,6.9394223,22.06288,185.52075,1.727734,2.7251313,0.70613627,0.24819351,7.0572566,0,0.058141591,0.10715402,6.344945592,54.26130892,244.4286341,39.69249193,34.39493833,5.29866,66472.31502,9.6580528,4.1585749,1.6735462 +1992,6.145912973,1.683057085,0,0,7.364888993,1.9500444,85.437279,11.907588,74.361852,5.3089984,10.120439,106.91739,227.43518,179.3441,361.04368,5056.1355,299.4017955,913.3754186,22.26499,24.233416,194.061,2.4767485,4.0250116,1.0018637,0.18194194,7.9102615,0,0.088755914,0.12273589,6.358476439,52.37759099,198.238473,38.71717596,26.64897689,5.4230636,64223.92565,10.784362,3.8127392,1.4631107 +1993,6.193394815,1.54672743,0,0,7.531122847,1.9984803,84.458339,11.381334,50.567396,3.463778,8.6771649,84.3251,231.9618,179.76429,256.33383,5078.4684,299.4425141,941.8816353,34.33223,22.551362,208.33854,3.0949997,11.967198,1.5166355,0.157163,8.3534838,0,0.1188094,0.13825367,6.310752017,52.78275226,203.7757832,39.74372709,28.11499626,5.424762,63195.55052,11.612337,3.3180441,1.2514505 +1994,6.240067755,1.503716685,0,0,7.895732734,2.1430557,86.05046,11.006658,37.565451,4.6095776,8.163643,85.893495,238.58315,178.03958,159.08791,5003.2837,310.2518368,1060.282744,45.287421,24.423112,237.88968,3.5515518,24.558229,2.3253155,0.20390529,8.737968,0,0.14808425,0.15358509,6.441827,54.21042307,231.0503543,40.27137016,33.14335063,5.5491826,61820.50124,11.303115,2.9604627,1.1962062 +1995,6.377386454,1.486080505,0,0,7.813189501,2.3880707,80.480245,10.682998,23.473127,5.7076242,7.6747577,86.264975,210.72453,180.13151,95.783763,5016.3948,305.4095889,955.0363062,51.095458,27.59918,230.3453,3.8771223,36.211193,3.4395305,0.29614801,9.315257,0,0.17780027,0.16982122,6.504076136,53.41671788,206.4742485,40.45040793,29.71540754,5.6736625,60635.50707,11.011358,2.8923304,1.0842597 +1996,6.511379279,1.470193985,0,0,7.686339551,2.6638414,75.256035,10.505743,13.005309,4.6522227,5.5242189,85.278741,170.78176,183.444,59.514335,5297.7083,307.2912075,930.0218807,53.568363,26.00128,224.86947,4.0579149,48.538296,4.5014521,0.39044285,9.7707047,0,0.20547879,0.23841137,6.542220103,53.42127729,200.8724208,40.45019229,28.71419152,5.5527008,59650.01603,10.510994,2.8654227,0.84755661 +1997,6.574573879,2.18331399,0,0,8.269788743,2.8728437,75.489912,10.417958,10.398164,3.7691062,3.4559389,86.341446,160.63531,180.149,29.550907,5288.9251,331.2889198,1204.992305,55.763481,29.370536,240.5221,4.6266327,58.758537,5.5717023,0.427562,9.7952259,4.96E-05,0.25820595,0.31501343,6.740456045,56.11803189,264.6751503,41.89315592,38.34138232,5.7834259,59868.27682,9.8242768,2.8566852,0.76826308 +1998,6.590459871,1.541245282,0,0,8.412226876,2.9899069,72.916263,10.335348,12.992477,3.9615346,2.9318362,86.348141,156.67666,176.1082,23.412636,5175.5355,315.3326212,1085.430599,55.956781,28.471196,234.46613,6.9049469,70.049792,6.8917397,0.54029666,10.02529,3.58E-04,0.60512272,0.38665542,6.446521521,56.58934432,232.3180182,42.33468434,37.8122783,5.6031107,58604.36759,10.323837,2.701239,0.76943857 +1999,6.661329053,1.303430472,0,0,7.698162125,2.9607505,72.96355,10.216505,14.054175,3.9749853,3.1538842,82.703538,140.42544,168.37661,18.420173,5112.4264,309.4083709,940.700678,58.338707,25.741051,252.31636,8.6848445,91.978363,7.9486502,0.7424207,10.07373,0.003108151,1.0699013,0.49435229,6.281150807,54.7693723,205.1118782,40.94720104,30.44917133,5.1676463,55523.54474,10.262658,2.1509855,0.7706312 +2000,6.893167303,1.201338049,0,0,7.457347232,2.8153943,72.651408,9.9231457,9.4043884,3.9867142,2.3476518,76.330076,122.76605,165.25876,19.471227,5074.2696,310.1868098,886.5647302,56.341686,25.730152,263.60627,10.640667,99.657424,8.5987563,0.86319988,9.2978389,0.034006926,1.411492,0.57423278,6.112229814,54.50959652,195.3241582,41.26362178,27.9819784,5.2735332,55661.00151,9.4801348,1.9694412,0.77151922 +2001,6.957086928,0.961802096,0,0,7.591758769,3.0480682,70.656969,10.593275,5.9590471,3.2771364,1.1600545,68.271466,111.64066,165.599,19.806901,5094.2258,312.8963787,881.6703956,56.368781,24.490463,261.60586,11.075295,96.243251,9.8521252,0.94275566,8.9840003,0.80619906,1.6540309,0.63867332,6.188009183,54.70989639,196.1877828,41.37717554,27.87799844,5.3282102,56049.16643,8.8337936,2.3248261,0.74608572 +2002,7.097947295,1.070652511,0,0,8.046474187,3.4534372,70.456674,11.982167,3.1513602,2.420559,0.95011524,63.484809,101.90454,161.14055,12.302716,5096.5932,322.2788312,970.7244172,50.843174,25.156097,270.32175,12.214474,102.73275,11.617585,1.2107813,9.7208997,2.9170651,2.8037817,0.73327062,6.359556248,57.07665954,218.4604141,41.89878327,33.80824329,5.4976481,55687.52236,8.3685909,2.2797577,0.67660085 +2003,7.424688348,0.901041903,0,0,8.241697598,3.16329,69.839024,12.579882,5.7693016,1.7336337,0.74505988,62.277955,97.844828,158.92828,10.122917,5113.7538,328.1242242,944.7470786,44.441172,25.070909,287.30923,15.640539,117.40605,13.114832,1.560512,11.005369,5.226518,4.7856897,0.85366012,6.428305305,57.69037488,214.4033914,42.68216556,34.36218135,5.5417194,57641.7237,8.0831154,2.0262772,0.60195554 +2004,7.812644316,1.038213168,0,0,8.542465507,2.2029533,66.998563,12.194883,9.216749,1.4729969,0.75667708,60.966802,87.654103,156.21655,9.7469995,5141.4447,338.9417722,945.5469501,49.135801,28.554887,307.57676,15.758879,125.65071,13.097501,2.0510461,12.712613,6.6512131,5.4873038,0.97410928,6.590470047,58.11358477,216.6872834,44.5568559,32.33033041,5.6480085,60340.85189,7.5267646,2.1192661,0.55294607 +2005,8.093491316,1.025657164,0,0,8.840128386,1.9480504,63.195607,11.060838,4.6297025,1.8139658,0.58070615,60.331179,71.956593,154.12291,7.5405195,5209.9819,346.3955546,950.5924444,53.955471,33.447493,329.52471,16.143675,126.49199,12.434284,2.365528,14.626529,7.0791974,6.3606922,1.0845927,6.693579484,58.88341048,218.7880648,45.62238086,32.72399071,6.2799143,62587.82672,6.9433284,1.8947828,0.46971744 +2006,8.35813441,1.092642828,0,0,8.92564815,2.045423,60.048081,10.21735,0.6450641,1.7510311,0.58710647,63.037203,65.575271,152.41471,9.3190485,5272.2746,356.4696896,986.1510089,51.911598,36.489809,346.30497,19.891066,133.41048,14.118518,2.3531588,12.639849,6.8754044,8.3862482,1.1852524,6.875606953,60.37974253,229.8954395,46.63913374,34.3551466,6.9409178,63046.34515,6.3118449,1.5902358,0.43579597 +2007,8.681148087,0.966211967,0,0,9.284494092,1.7666158,57.257154,9.3272415,4.5089203,1.5545493,0.78280059,64.737513,61.623755,147.28895,9.6981304,5250.6823,355.0225755,945.8695944,49.953532,37.109679,357.26506,26.595246,127.25708,16.399738,2.4154053,9.3262891,6.6980995,8.4029745,1.2649376,6.596141361,60.96582609,219.7058707,48.13085999,33.27729799,6.9754073,62641.3592,5.7707437,1.7021554,0.59162888 +2008,8.733139806,0.668337987,0,0,9.091850914,1.746034,56.837697,9.0353429,8.3395339,1.9164483,0.45696793,63.060877,57.108479,144.47281,6.337645,5191.6855,360.4917105,912.5104843,54.881457,33.091627,362.72449,30.815622,138.28669,17.544095,2.6196596,8.8123411,7.076053,10.669375,1.3164863,6.638276368,61.31644175,214.695495,48.0350761,31.61901151,6.8835341,61275.77058,5.5737514,1.6171325,0.63840472 +2009,8.584990107,0.754863283,0,0,9.109514002,1.7995507,55.355253,9.6854874,5.7877004,1.6755174,0.3835494,60.065148,54.788238,144.24254,3.7694324,5145.2658,364.2003634,917.7292309,61.506343,32.081369,366.5558,33.926872,160.10848,21.142804,2.9666725,9.9336003,7.8522494,16.223306,1.4335012,6.712782947,61.3779593,218.7581143,46.48309573,31.77247637,7.159861,58721.16171,5.2570896,1.7272846,0.47723148 +2010,8.975543684,0.885110055,0,0,9.665129376,1.7742176,56.090865,10.48947,4.4070317,1.4644148,0.65896445,58.86009,52.271203,142.6745,2.4614781,5179.9719,370.8962528,953.2286303,65.209531,29.851794,361.74691,35.069515,165.044,20.460881,3.1827017,11.247607,8.7778712,15.914528,1.3375544,6.708375368,62.44447212,224.6021121,47.31829704,34.61053251,7.2759031,58249.45527,4.8975548,1.8511656,0.39655186 +2011,9.25596626,0.91365454,0,0,9.478876566,1.8467555,57.565927,11.056837,4.6237938,2.0468287,0.85601742,62.415615,52.120722,140.42156,3.0036158,5252.9333,372.6576832,906.7673675,67.690592,28.645628,366.94427,43.330418,190.47655,22.158614,3.410604,12.498165,9.4654578,20.415233,1.1291345,6.648935415,62.39874927,218.628754,48.49222156,32.51825927,7.4656928,58834.52202,4.3361773,2.096153,0.39105944 +2012,9.386649745,0.970689078,0,0,9.705285171,1.794986,59.464919,9.6609456,5.4529267,2.0520518,0.7168607,70.235225,53.35878,136.71475,3.0096674,5232.3317,380.8097666,949.6022184,63.311547,25.468261,356.29002,45.81505,205.00564,21.423,3.2771162,12.591587,9.054248,24.0671,0.98551995,6.742796632,63.84845417,229.1069362,48.17674509,35.82690196,7.7062836,57925.01408,3.8379813,1.7328717,0.41594871 +2013,9.659396496,0.91865757,0,0,9.560553735,1.6324652,62.512861,8.3027436,6.5167934,1.9408617,0.61330322,75.740842,54.819887,133.39273,1.8384424,5231.2321,381.5943928,901.2387566,59.817791,19.467118,342.89828,38.8888,202.01825,23.8069,2.9986006,11.604213,9.7859,21.452891,0.87225171,6.847910646,63.65097665,219.3811793,47.50620674,33.24556583,7.686158,57413.51787,3.5745493,0.96258078,0.44442215 +2014,9.719224641,1.095764818,0,0,9.744379658,1.6517,53.5475,9.8735,2.8024,1.6696,1.114899,54.9365,28.9612,133.6791,1.2625,5358.4982,387.8735392,964.0476182,59.82,22.47,358.8813,57.1243,200.0249,25.2487,3.5393,12.991,10.1025,30.4858,1.1516,6.916164551,65.03685366,233.525518,47.38523786,36.14582139,7.8784,57093.26142,3.481,1.2299,0.3854 +2015,9.724603237,0.959883081,0,0,9.727423577,1.57,47.5476,10.8699,0.8742,1.6696,1.6714,43.5734,14.6096,133.823,0,5404.8069,388.0727957,934.3498847,59.82,22.47,358.8813,78.7906,201.9534,32.381,3.6633,14.4857,11.7285,38.5792,1.1516,6.937624392,65.27970313,227.2448193,47.34877178,34.74602423,8.02,50464.18814,3.2933,1.3378,0.3481 +2016,9.949869256,0.983474428,0,0,9.665241152,1.65952,45.01716,11.2451366,0.78156,1.515231454,1.61422146,41.88082,12.88774,135.46146,0,5443.7829,389.9511154,924.3121223,60.8428786,21.9901556,351.625206,97.9818,214.41974,38.63372,4.05325878,12.12156,13.658721,32.28288,1.18008914,7.043620069,66.16008017,227.6426909,47.78426143,33.98323709,8.09854,48398.93583,3.07158,1.29166,0.33428 +2017,10.17513528,1.007065775,0,0,9.603058728,1.74904,42.48672,11.6203732,0.68892,1.360862908,1.55704292,40.18824,11.16588,137.09992,0,5482.7589,391.8294351,914.2743599,61.8657572,21.5103112,344.369112,117.173,226.88608,44.88644,4.44321756,9.75742,15.588942,25.98656,1.20857828,7.149615746,67.0404572,228.0405626,48.21975107,33.22044995,8.17708,46333.68352,2.84986,1.24552,0.32046 +2018,10.40040129,1.030657121,0,0,9.540876303,1.83856,39.95628,11.9956098,0.59628,1.206494362,1.49986438,38.49566,9.44402,138.73838,0,5521.7349,393.7077548,904.2365975,62.8886358,21.0304668,337.113018,136.3642,239.35242,51.13916,4.83317634,7.39328,17.519163,19.69024,1.23706742,7.255611423,67.92083423,228.4384342,48.65524072,32.4576628,8.25562,44268.43121,2.62814,1.19938,0.30664 +2019,10.62566731,1.054248468,0,0,9.478693879,1.92808,37.42584,12.3708464,0.50364,1.052125816,1.44268584,36.80308,7.72216,140.37684,0,5560.7109,395.5860746,894.1988351,63.9115144,20.5506224,329.856924,155.5554,251.81876,57.39188,5.22313512,5.02914,19.449384,13.39392,1.26555656,7.3616071,68.80121127,228.8363058,49.09073036,31.69487566,8.33416,42203.1789,2.40642,1.15324,0.29282 +2020,10.85093333,1.077839815,0,0,9.416511454,2.0176,34.8954,12.746083,0.411,0.89775727,1.3855073,35.1105,6.0003,142.0153,0,5599.6869,397.4643943,884.1610727,64.934393,20.070778,322.60083,174.7466,264.2851,63.6446,5.6130939,2.665,21.379605,7.0976,1.2940457,7.467602777,69.6815883,229.2341774,49.52622001,30.93208852,8.4127,40137.92659,2.1847,1.1071,0.279 +2021,11.15076166,1.09413659,0,0,9.318521072,1.95172,33.28538,12.5072952,0.37899,0.833926213,1.342148655,33.87909,5.50149,140.80952,0,5574.8839,403.1647109,871.2058361,63.8401921,19.2265454,304.67177,190.678475,269.17534,69.25233,5.84986144,2.48147,23.2108326,6.60881,1.27822932,7.525782921,70.42946495,228.1913852,49.51701374,30.27921928,8.50082,39705.18638,2.06237,1.07222,0.26903 +2022,11.45058999,1.110433365,0,0,9.22053069,1.88584,31.67536,12.2685074,0.34698,0.770095156,1.29879001,32.64768,5.00268,139.60374,0,5550.0809,408.8650274,858.2505995,62.7459912,18.3823128,286.74271,206.61035,274.06558,74.86006,6.08662898,2.29794,25.0420602,6.12002,1.26241294,7.583963065,71.1773416,227.148593,49.50780748,29.62635004,8.58894,39272.44617,1.94004,1.03734,0.25906 +2023,11.75041832,1.12673014,0,0,9.122540308,1.81996,30.06534,12.0297196,0.31497,0.706264099,1.255431365,31.41627,4.50387,138.39796,0,5525.2779,414.565344,845.2953629,61.6517903,17.5380802,268.81365,222.542225,278.95582,80.46779,6.32339652,2.11441,26.8732878,5.63123,1.24659656,7.642143209,71.92521824,226.1058008,49.49860121,28.9734808,8.67706,38839.70596,1.81771,1.00246,0.24909 +2024,12.05024665,1.143026916,0,0,9.024549926,1.75408,28.45532,11.7909318,0.28296,0.642433042,1.21207272,30.18486,4.00506,137.19218,0,5500.4749,420.2656606,832.3401263,60.5575894,16.6938476,250.88459,238.4741,283.84606,86.07552,6.56016406,1.93088,28.7045154,5.14244,1.23078018,7.700323354,72.67309489,225.0630086,49.48939495,28.32061156,8.76518,38406.96576,1.69538,0.96758,0.23912 +2025,12.35007498,1.159323691,0,0,8.926559544,1.6882,26.8453,11.552144,0.25095,0.578601985,1.168714075,28.95345,3.50625,135.9864,0,5475.6719,425.9659772,819.3848897,59.4633885,15.849615,232.95553,254.405975,288.7363,91.68325,6.7969316,1.74735,30.535743,4.65365,1.2149638,7.758503498,73.42097154,224.0202165,49.48018868,27.66774232,8.8533,37974.22555,1.57305,0.9327,0.22915 +2026,12.64990331,1.175620466,0,0,8.828569162,1.62232,25.23528,11.3133562,0.21894,0.514770928,1.12535543,27.72204,3.00744,134.78062,0,5450.8689,431.6662937,806.4296531,58.3691876,15.0053824,215.02647,270.33785,293.62654,97.29098,7.03369914,1.56382,32.3669706,4.16486,1.19914742,7.816683642,74.16884819,222.9774243,49.47098242,27.01487307,8.94142,37541.48534,1.45072,0.89782,0.21918 +2027,12.94973164,1.191917241,0,0,8.73057878,1.55644,23.62526,11.0745684,0.18693,0.450939871,1.081996785,26.49063,2.50863,133.57484,0,5426.0659,437.3666103,793.4744165,57.2749867,14.1611498,197.09741,286.269725,298.51678,102.89871,7.27046668,1.38029,34.1981982,3.67607,1.18333104,7.874863787,74.91672483,221.9346321,49.46177615,26.36200383,9.02954,37108.74514,1.32839,0.86294,0.20921 +2028,13.24955996,1.208214016,0,0,8.632588398,1.49056,22.01524,10.8357806,0.15492,0.387108814,1.03863814,25.25922,2.00982,132.36906,0,5401.2629,443.0669269,780.5191799,56.1807858,13.3169172,179.16835,302.2016,303.40702,108.50644,7.50723422,1.19676,36.0294258,3.18728,1.16751466,7.933043931,75.66460148,220.8918399,49.45256989,25.70913459,9.11766,36676.00493,1.20606,0.82806,0.19924 +2029,13.54938829,1.224510792,0,0,8.534598016,1.42468,20.40522,10.5969928,0.12291,0.323277757,0.995279495,24.02781,1.51101,131.16328,0,5376.4599,448.7672435,767.5639433,55.0865849,12.4726846,161.23929,318.133475,308.29726,114.11417,7.74400176,1.01323,37.8606534,2.69849,1.15169828,7.991224075,76.41247813,219.8490477,49.44336362,25.05626535,9.20578,36243.26472,1.08373,0.79318,0.18927 +2030,13.84921662,1.240807567,0,0,8.436607634,1.3588,18.7952,10.358205,0.0909,0.2594467,0.95192085,22.7964,1.0122,129.9575,0,5351.6569,454.46756,754.6087067,53.992384,11.628452,143.31023,334.06535,313.1875,119.7219,7.9807693,0.8297,39.691881,2.2097,1.1358819,8.04940422,77.16035477,218.8062555,49.43415736,24.40339611,9.2939,35810.52452,0.9614,0.7583,0.1793 +2031,14.2473737,1.210485456,0,0,8.399193441,1.31663,17.92802,10.20601637,0.08382,0.241007612,0.922171126,21.99688,0.92805,129.18567,0,5335.84899,463.2500777,749.767513,51.7698,10.82562094,131.008084,342.701149,313.95416,123.37401,8.03104942,0.79985,40.9593659,2.1302,1.118346335,8.09606417,77.5339096,217.8821935,49.65505515,24.09682947,9.3593,35808.74627,0.90757,0.7344,0.1729 +2032,14.64553079,1.180163345,0,0,8.361779249,1.27446,17.06084,10.05382774,0.07674,0.222568525,0.892421402,21.19736,0.8439,128.41384,0,5320.04108,472.0325954,744.9263192,49.547216,10.02278988,118.705938,351.336948,314.72082,127.02612,8.08132954,0.77,42.2268508,2.0507,1.10081077,8.142724119,77.90746443,216.9581315,49.87595295,23.79026283,9.4247,35806.96801,0.85374,0.7105,0.1665 +2033,15.04368787,1.149841234,0,0,8.324365056,1.23229,16.19366,9.90163911,0.06966,0.204129437,0.862671678,20.39784,0.75975,127.64201,0,5304.23317,480.8151131,740.0851255,47.324632,9.21995882,106.403792,359.972747,315.48748,130.67823,8.13160966,0.74015,43.4943357,1.9712,1.083275205,8.189384069,78.28101926,216.0340695,50.09685075,23.48369619,9.4901,35805.18976,0.79991,0.6866,0.1601 +2034,15.44184495,1.119519122,0,0,8.286950864,1.19012,15.32648,9.74945048,0.06258,0.18569035,0.832921954,19.59832,0.6756,126.87018,0,5288.42526,489.5976308,735.2439317,45.102048,8.41712776,94.101646,368.608546,316.25414,134.33034,8.18188978,0.7103,44.7618206,1.8917,1.06573964,8.236044019,78.65457409,215.1100075,50.31774854,23.17712955,9.5555,35803.41151,0.74608,0.6627,0.1537 +2035,15.84000203,1.089197011,0,0,8.249536671,1.14795,14.4593,9.59726185,0.0555,0.167251262,0.80317223,18.7988,0.59145,126.09835,0,5272.61735,498.3801486,730.4027379,42.879464,7.6142967,81.7995,377.244345,317.0208,137.98245,8.2321699,0.68045,46.0293055,1.8122,1.048204075,8.282703969,79.02812892,214.1859455,50.53864634,22.87056291,9.6209,35801.63326,0.69225,0.6388,0.1473 +2036,16.23815912,1.0588749,0,0,8.212122479,1.10578,13.59212,9.44507322,0.04842,0.148812174,0.773422506,17.99928,0.5073,125.32652,0,5256.80944,507.1626663,725.5615442,40.65688,6.81146564,69.497354,385.880144,317.78746,141.63456,8.28245002,0.6506,47.2967904,1.7327,1.03066851,8.329363919,79.40168375,213.2618835,50.75954414,22.56399627,9.6863,35799.85501,0.63842,0.6149,0.1409 +2037,16.6363162,1.028552789,0,0,8.174708286,1.06361,12.72494,9.29288459,0.04134,0.130373087,0.743672782,17.19976,0.42315,124.55469,0,5241.00153,515.945184,720.7203504,38.434296,6.00863458,57.195208,394.515943,318.55412,145.28667,8.33273014,0.62075,48.5642753,1.6532,1.013132945,8.376023868,79.77523858,212.3378215,50.98044193,22.25742963,9.7517,35798.07676,0.58459,0.591,0.1345 +2038,17.03447328,0.998230678,0,0,8.137294094,1.02144,11.85776,9.14069596,0.03426,0.111933999,0.713923058,16.40024,0.339,123.78286,0,5225.19362,524.7277017,715.8791567,36.211712,5.20580352,44.893062,403.151742,319.32078,148.93878,8.38301026,0.5909,49.8317602,1.5737,0.99559738,8.422683818,80.1487934,211.4137595,51.20133973,21.95086299,9.8171,35796.29851,0.53076,0.5671,0.1281 +2039,17.43263036,0.967908567,0,0,8.099879901,0.97927,10.99058,8.98850733,0.02718,0.093494912,0.684173334,15.60072,0.25485,123.01103,0,5209.38571,533.5102194,711.0379629,33.989128,4.40297246,32.590916,411.787541,320.08744,152.59089,8.43329038,0.56105,51.0992451,1.4942,0.978061815,8.469343768,80.52234823,210.4896975,51.42223753,21.64429635,9.8825,35794.52026,0.47693,0.5432,0.1217 +2040,17.83078745,0.937586456,0,0,8.062465709,0.9371,10.1234,8.8363187,0.0201,0.075055824,0.65442361,14.8012,0.1707,122.2392,0,5193.5778,542.2927371,706.1967692,31.766544,3.6001414,20.28877,420.42334,320.8541,156.243,8.4835705,0.5312,52.36673,1.4147,0.96052625,8.516003718,80.89590306,209.5656355,51.64313532,21.3377297,9.9479,35792.74201,0.4231,0.5193,0.1153 +2041,18.26483035,0.899852311,0,0,7.946306556,0.91014,9.65632,8.7385696,0.01853,0.0697235,0.633957487,14.28209,0.15651,121.74576,0,5183.42455,547.0932273,702.7722316,30.4061322,3.34120265,18.44822429,431.405524,326.57948,160.71566,8.61920207,0.50822,54.070386,1.3535,0.964222471,8.502727514,80.91751696,209.0394505,51.38704155,21.23722097,10.02518,35240.28488,0.39941,0.50294,0.11118 +2042,18.69887326,0.862118167,0,0,7.830147404,0.88318,9.18924,8.6408205,0.01696,0.064391176,0.613491364,13.76298,0.14232,121.25232,0,5173.2713,551.8937176,699.3476941,29.0457204,3.0822639,16.60767858,442.387708,332.30486,165.18832,8.75483364,0.48524,55.774042,1.2923,0.967918692,8.489451311,80.93913085,208.5132654,51.13094778,21.13671224,10.10246,34687.82774,0.37572,0.48658,0.10706 +2043,19.13291617,0.824384022,0,0,7.713988251,0.85622,8.72216,8.5430714,0.01539,0.059058851,0.593025241,13.24387,0.12813,120.75888,0,5163.11805,556.6942078,695.9231566,27.6853086,2.82332515,14.76713287,453.369892,338.03024,169.66098,8.89046521,0.46226,57.477698,1.2311,0.971614913,8.476175107,80.96074474,207.9870804,50.874854,21.0362035,10.17974,34135.37061,0.35203,0.47022,0.10294 +2044,19.56695907,0.786649878,0,0,7.597829098,0.82926,8.25508,8.4453223,0.01382,0.053726527,0.572559118,12.72476,0.11394,120.26544,0,5152.9648,561.4946981,692.498619,26.3248968,2.5643864,12.92658716,464.352076,343.75562,174.13364,9.02609678,0.43928,59.181354,1.1699,0.975311134,8.462898904,80.98235864,207.4608953,50.61876023,20.93569477,10.25702,33582.91348,0.32834,0.45386,0.09882 +2045,20.00100198,0.748915733,0,0,7.481669946,0.8023,7.788,8.3475732,0.01225,0.048394203,0.552092995,12.20565,0.09975,119.772,0,5142.81155,566.2951883,689.0740815,24.964485,2.30544765,11.08604145,475.33426,349.481,178.6063,9.16172835,0.4163,60.88501,1.1087,0.979007355,8.4496227,81.00397253,206.9347103,50.36266646,20.83518603,10.3343,33030.45635,0.30465,0.4375,0.0947 +2046,20.43504488,0.711181588,0,0,7.365510793,0.77534,7.32092,8.2498241,0.01068,0.043061879,0.531626872,11.68654,0.08556,119.27856,0,5132.6583,571.0956785,685.6495439,23.6040732,2.0465089,9.24549574,486.316444,355.20638,183.07896,9.29735992,0.39332,62.588666,1.0475,0.982703576,8.436346497,81.02558643,206.4085252,50.10657269,20.7346773,10.41158,32477.99921,0.28096,0.42114,0.09058 +2047,20.86908779,0.673447444,0,0,7.249351641,0.74838,6.85384,8.152075,0.00911,0.037729555,0.511160749,11.16743,0.07137,118.78512,0,5122.50505,575.8961688,682.2250064,22.2436614,1.78757015,7.40495003,497.298628,360.93176,187.55162,9.43299149,0.37034,64.292322,0.9863,0.986399797,8.423070293,81.04720032,205.8823402,49.85047891,20.63416857,10.48886,31925.54208,0.25727,0.40478,0.08646 +2048,21.3031307,0.635713299,0,0,7.133192488,0.72142,6.38676,8.0543259,0.00754,0.03239723,0.490694626,10.64832,0.05718,118.29168,0,5112.3518,580.696659,678.8004688,20.8832496,1.5286314,5.56440432,508.280812,366.65714,192.02428,9.56862306,0.34736,65.995978,0.9251,0.990096018,8.40979409,81.06881422,205.3561551,49.59438514,20.53365983,10.56614,31373.08495,0.23358,0.38842,0.08234 +2049,21.7371736,0.597979154,0,0,7.017033336,0.69446,5.91968,7.9565768,0.00597,0.027064906,0.470228503,10.12921,0.04299,117.79824,0,5102.19855,585.4971493,675.3759313,19.5228378,1.26969265,3.72385861,519.262996,372.38252,196.49694,9.70425463,0.32438,67.699634,0.8639,0.993792239,8.396517886,81.09042811,204.8299701,49.33829137,20.4331511,10.64342,30820.62781,0.20989,0.37206,0.07822 +2050,22.17121651,0.56024501,0,0,6.900874183,0.6675,5.4526,7.8588277,0.0044,0.021732582,0.44976238,9.6101,0.0288,117.3048,0,5092.0453,590.2976395,671.9513938,18.162426,1.0107539,1.8833129,530.24518,378.1079,200.9696,9.8398862,0.3014,69.40329,0.8027,0.99748846,8.383241683,81.112042,204.303785,49.0821976,20.33264236,10.7207,30268.17068,0.1862,0.3557,0.0741 +2051,22.6884564,0.508024521,0,0,6.86775827,0.65022,5.20103,7.79585828,0.00406,0.020186656,0.435696317,9.27305,0.02641,116.98853,0,5085.50463,591.0588934,672.3153942,17.3846094,0.938056143,1.712466056,543.545966,385.33678,206.15558,9.93093498,0.28994,71.5055304,0.77218,1.005273854,8.400122039,81.34046986,204.6249251,49.19632084,20.27601079,10.75191,30439.62386,0.17577,0.34449,0.07145 +2052,23.20569629,0.455804033,0,0,6.834642356,0.63294,4.94946,7.73288886,0.00372,0.01864073,0.421630254,8.936,0.02402,116.67226,0,5078.96396,591.8201474,672.6793947,16.6067928,0.865358386,1.541619212,556.846752,392.56566,211.34156,10.02198376,0.27848,73.6077708,0.74166,1.013059248,8.417002395,81.56889772,204.9460652,49.31044408,20.21937922,10.78312,30611.07703,0.16534,0.33328,0.0688 +2053,23.72293618,0.403583544,0,0,6.801526443,0.61566,4.69789,7.66991944,0.00338,0.017094804,0.407564191,8.59895,0.02163,116.35599,0,5072.42329,592.5814013,673.0433951,15.8289762,0.792660629,1.370772368,570.147538,399.79454,216.52754,10.11303254,0.26702,75.7100112,0.71114,1.020844642,8.433882751,81.79732558,205.2672053,49.42456733,20.16274765,10.81433,30782.5302,0.15491,0.32207,0.06615 +2054,24.24017607,0.351363055,0,0,6.768410529,0.59838,4.44632,7.60695002,0.00304,0.015548878,0.393498128,8.2619,0.01924,116.03972,0,5065.88262,593.3426553,673.4073956,15.0511596,0.719962872,1.199925524,583.448324,407.02342,221.71352,10.20408132,0.25556,77.8122516,0.68062,1.028630036,8.450763108,82.02575343,205.5883455,49.53869057,20.10611608,10.84554,30953.98338,0.14448,0.31086,0.0635 +2055,24.75741596,0.299142567,0,0,6.735294616,0.5811,4.19475,7.5439806,0.0027,0.014002952,0.379432065,7.92485,0.01685,115.72345,0,5059.34195,594.1039092,673.771396,14.273343,0.647265115,1.02907868,596.74911,414.2523,226.8995,10.2951301,0.2441,79.914492,0.6501,1.03641543,8.467643464,82.25418129,205.9094856,49.65281382,20.0494845,10.87675,31125.43655,0.13405,0.29965,0.06085 +2056,25.27465585,0.246922078,0,0,6.702178703,0.56382,3.94318,7.48101118,0.00236,0.012457026,0.365366002,7.5878,0.01446,115.40718,0,5052.80128,594.8651631,674.1353965,13.4955264,0.574567358,0.858231836,610.049896,421.48118,232.08548,10.38617888,0.23264,82.0167324,0.61958,1.044200824,8.48452382,82.48260915,206.2306257,49.76693706,19.99285293,10.90796,31296.88973,0.12362,0.28844,0.0582 +2057,25.79189574,0.19470159,0,0,6.669062789,0.54654,3.69161,7.41804176,0.00202,0.0109111,0.351299939,7.25075,0.01207,115.09091,0,5046.26061,595.6264171,674.499397,12.7177098,0.501869601,0.687384992,623.350682,428.71006,237.27146,10.47722766,0.22118,84.1189728,0.58906,1.051986218,8.501404176,82.71103701,206.5517658,49.88106031,19.93622136,10.93917,31468.3429,0.11319,0.27723,0.05555 +2058,26.30913563,0.142481101,0,0,6.635946876,0.52926,3.44004,7.35507234,0.00168,0.009365174,0.337233876,6.9137,0.00968,114.77464,0,5039.71994,596.387671,674.8633974,11.9398932,0.429171844,0.516538148,636.651468,435.93894,242.45744,10.56827644,0.20972,86.2212132,0.55854,1.059771612,8.518284532,82.93946487,206.8729059,49.99518355,19.87958979,10.97038,31639.79607,0.10276,0.26602,0.0529 +2059,26.82637552,0.090260612,0,0,6.602830963,0.51198,3.18847,7.29210292,0.00134,0.007819249,0.323167813,6.57665,0.00729,114.45837,0,5033.17927,597.1489249,675.2273979,11.1620766,0.356474087,0.345691304,649.952254,443.16782,247.64342,10.65932522,0.19826,88.3234536,0.52802,1.067557006,8.535164888,83.16789272,207.194046,50.1093068,19.82295822,11.00159,31811.24925,0.09233,0.25481,0.05025 +2060,27.34361541,0.038040124,0,0,6.569715049,0.4947,2.9369,7.2291335,0.001,0.006273323,0.30910175,6.2396,0.0049,114.1421,0,5026.6386,597.9101789,675.5913983,10.38426,0.28377633,0.17484446,663.25304,450.3967,252.8294,10.750374,0.1868,90.425694,0.4975,1.0753424,8.552045244,83.39632058,207.5151861,50.22343004,19.76632665,11.0328,31982.70242,0.0819,0.2436,0.0476 +2061,27.80305645,0.027961473,0,0,6.521597973,0.48364,2.80139,7.18911387,9.20E-04,0.005825228,0.299431331,6.02076,0.00449,113.93967,0,5022.48175,597.8320023,674.6864791,9.93955833,0.263361767,0.158985329,677.741778,459.35405,258.86776,10.8360253,0.17924,92.8068766,0.47737,1.08548552,8.55189579,83.58140095,207.0829338,49.99017805,19.72570981,11.05564,31859.10101,0.07732,0.23592,0.0459 +2062,28.26249748,0.017882822,0,0,6.473480897,0.47258,2.66588,7.14909424,8.40E-04,0.005377134,0.289760912,5.80192,0.00408,113.73724,0,5018.3249,597.7538257,673.7815599,9.49485666,0.242947203,0.143126197,692.230516,468.3114,264.90612,10.9216766,0.17168,95.1880592,0.45724,1.09562864,8.551746336,83.76648133,206.6506815,49.75692607,19.68509297,11.07848,31735.49959,0.07274,0.22824,0.0442 +2063,28.72193851,0.007804172,0,0,6.425363821,0.46152,2.53037,7.10907461,7.60E-04,0.004929039,0.280090493,5.58308,0.00367,113.53481,0,5014.16805,597.6756491,672.8766408,9.05015499,0.22253264,0.127267066,706.719254,477.26875,270.94448,11.0073279,0.16412,97.5692418,0.43711,1.10577176,8.551596882,83.9515617,206.2184293,49.52367408,19.64447613,11.10132,31611.89817,0.06816,0.22056,0.0425 +2064,29.18137954,0,0,0.002274479,6.377246745,0.45046,2.39486,7.06905498,6.80E-04,0.004480945,0.270420074,5.36424,0.00326,113.33238,0,5010.0112,597.5974726,671.9717216,8.60545332,0.202118076,0.111407935,721.207992,486.2261,276.98284,11.0929792,0.15656,99.9504244,0.41698,1.11591488,8.551447428,84.13664207,205.786177,49.29042209,19.60385929,11.12416,31488.29675,0.06358,0.21288,0.0408 +2065,29.64082057,0,0,0.01235313,6.329129668,0.4394,2.25935,7.02903535,6.00E-04,0.00403285,0.260749655,5.1454,0.00285,113.12995,0,5005.85435,597.519296,671.0668024,8.16075165,0.181703513,0.095548804,735.69673,495.18345,283.0212,11.1786305,0.149,102.331607,0.39685,1.126058,8.551297973,84.32172245,205.3539247,49.0571701,19.56324245,11.147,31364.69534,0.059,0.2052,0.0391 +2066,30.1002616,0,0,0.02243178,6.281012592,0.42834,2.12384,6.98901572,5.20E-04,0.003584756,0.251079236,4.92656,0.00244,112.92752,0,5001.6975,597.4411194,670.1618832,7.71604998,0.16128895,0.079689672,750.185468,504.1408,289.05956,11.2642818,0.14144,104.7127896,0.37672,1.13620112,8.551148519,84.50680282,204.9216725,48.82391812,19.52262561,11.16984,31241.09392,0.05442,0.19752,0.0374 +2067,30.55970264,0,0,0.032510431,6.232895516,0.41728,1.98833,6.94899609,4.40E-04,0.003136661,0.241408817,4.70772,0.00203,112.72509,0,4997.54065,597.3629428,669.256964,7.27134831,0.140874386,0.063830541,764.674206,513.09815,295.09792,11.3499331,0.13388,107.0939722,0.35659,1.14634424,8.550999065,84.69188319,204.4894202,48.59066613,19.48200877,11.19268,31117.4925,0.04984,0.18984,0.0357 +2068,31.01914367,0,0,0.042589082,6.18477844,0.40622,1.85282,6.90897646,3.60E-04,0.002688567,0.231738398,4.48888,0.00162,112.52266,0,4993.3838,597.2847663,668.3520448,6.82664664,0.120459823,0.04797141,779.162944,522.0555,301.13628,11.4355844,0.12632,109.4751548,0.33646,1.15648736,8.550849611,84.87696357,204.0571679,48.35741414,19.44139193,11.21552,30993.89108,0.04526,0.18216,0.034 +2069,31.4785847,0,0,0.052667732,6.136661364,0.39516,1.71731,6.86895683,2.80E-04,0.002240472,0.222067979,4.27004,0.00121,112.32023,0,4989.22695,597.2065897,667.4471256,6.38194497,0.100045259,0.032112278,793.651682,531.01285,307.17464,11.5212357,0.11876,111.8563374,0.31633,1.16663048,8.550700157,85.06204394,203.6249157,48.12416215,19.4007751,11.23836,30870.28967,0.04068,0.17448,0.0323 +2070,31.93802573,0,0,0.062746383,6.088544288,0.3841,1.5818,6.8289372,2.00E-04,0.001792378,0.21239756,4.0512,8.00E-04,112.1178,0,4985.0701,597.1284131,666.5422064,5.9372433,0.079630696,0.016253147,808.14042,539.9702,313.213,11.606887,0.1112,114.23752,0.2962,1.1767736,8.550550702,85.24712431,203.1926634,47.89091017,19.36015826,11.2612,30746.68825,0.0361,0.1668,0.0306 +2071,32.2862286,0,0,0.060506521,6.022095762,0.37702,1.50882,6.80335743,1.80E-04,0.00165795,0.205751345,3.90912,7.30E-04,111.98821,0,4982.41311,594.3134758,665.2630437,5.68298413,0.073907751,0.014775588,814.753706,545.60062,316.13491,11.5928417,0.10591,115.571547,0.28211,1.17862785,8.553999053,85.17560606,202.8850402,47.52778014,19.31837395,11.24508,30340.85314,0.03408,0.16155,0.02951 +2072,32.63443147,0,0,0.058266658,5.955647237,0.36994,1.43584,6.77777766,1.60E-04,0.001523521,0.19910513,3.76704,6.60E-04,111.85862,0,4979.75612,591.4985386,663.9838809,5.42872496,0.068184805,0.013298029,821.366992,551.23104,319.05682,11.5787964,0.10062,116.905574,0.26802,1.1804821,8.557447404,85.10408781,202.5774171,47.16465011,19.27658964,11.22896,29935.01803,0.03206,0.1563,0.02842 +2073,32.98263434,0,0,0.056026796,5.889198711,0.36286,1.36286,6.75219789,1.40E-04,0.001389093,0.192458915,3.62496,5.90E-04,111.72903,0,4977.09913,588.6836013,662.7047181,5.17446579,0.06246186,0.011820471,827.980278,556.86146,321.97873,11.5647511,0.09533,118.239601,0.25393,1.18233635,8.560895754,85.03256956,202.269794,46.80152008,19.23480533,11.21284,29529.18292,0.03004,0.15105,0.02733 +2074,33.33083721,0,0,0.053786934,5.822750186,0.35578,1.28988,6.72661812,1.20E-04,0.001254665,0.1858127,3.48288,5.20E-04,111.59944,0,4974.44214,585.868664,661.4255553,4.92020662,0.056738915,0.010342912,834.593564,562.49188,324.90064,11.5507058,0.09004,119.573628,0.23984,1.1841906,8.564344105,84.96105131,201.9621708,46.43839006,19.19302102,11.19672,29123.34781,0.02802,0.1458,0.02624 +2075,33.67904008,0,0,0.051547072,5.75630166,0.3487,1.2169,6.70103835,1.00E-04,0.001120236,0.179166485,3.3408,4.50E-04,111.46985,0,4971.78515,583.0537268,660.1463925,4.66594745,0.05101597,0.008865353,841.20685,568.1223,327.82255,11.5366605,0.08475,120.907655,0.22575,1.18604485,8.567792455,84.88953306,201.6545477,46.07526003,19.15123671,11.1806,28717.5127,0.026,0.14055,0.02515 +2076,34.02724295,0,0,0.049307209,5.689853135,0.34162,1.14392,6.67545858,8.00E-05,9.86E-04,0.17252027,3.19872,3.80E-04,111.34026,0,4969.12816,580.2387895,658.8672297,4.41168828,0.045293024,0.007387794,847.820136,573.75272,330.74446,11.5226152,0.07946,122.241682,0.21166,1.1878991,8.571240806,84.81801481,201.3469246,45.71213,19.1094524,11.16448,28311.67759,0.02398,0.1353,0.02406 +2077,34.37544582,0,0,0.047067347,5.623404609,0.33454,1.07094,6.64987881,6.00E-05,8.51E-04,0.165874055,3.05664,3.10E-04,111.21067,0,4966.47117,577.4238522,657.588067,4.15742911,0.039570079,0.005910235,854.433422,579.38314,333.66637,11.5085699,0.07417,123.575709,0.19757,1.18975335,8.574689156,84.74649656,201.0393014,45.34899997,19.06766809,11.14836,27905.84248,0.02196,0.13005,0.02297 +2078,34.72364869,0,0,0.044827485,5.556956084,0.32746,0.99796,6.62429904,4.00E-05,7.17E-04,0.15922784,2.91456,2.40E-04,111.08108,0,4963.81418,574.608915,656.3089042,3.90316994,0.033847134,0.004432676,861.046708,585.01356,336.58828,11.4945246,0.06888,124.909736,0.18348,1.1916076,8.578137507,84.67497831,200.7316783,44.98586995,19.02588378,11.13224,27500.00736,0.01994,0.1248,0.02188 +2079,35.07185156,0,0,0.042587622,5.490507558,0.32038,0.92498,6.59871927,2.00E-05,5.83E-04,0.152581625,2.77248,1.70E-04,110.95149,0,4961.15719,571.7939777,655.0297414,3.64891077,0.028124188,0.002955118,867.659994,590.64398,339.51019,11.4804793,0.06359,126.243763,0.16939,1.19346185,8.581585857,84.60346006,200.4240552,44.62273992,18.98409947,11.11612,27094.17225,0.01792,0.11955,0.02079 +2080,35.42005443,0,0,0.04034776,5.424059033,0.3133,0.852,6.5731395,0,4.48E-04,0.14593541,2.6304,1.00E-04,110.8219,0,4958.5002,568.9790404,653.7505786,3.3946516,0.022401243,0.001477559,874.27328,596.2744,342.4321,11.466434,0.0583,127.57779,0.1553,1.1953161,8.585034208,84.53194181,200.116432,44.25960989,18.94231516,11.1,26688.33714,0.0159,0.1143,0.0197 +2081,35.45489516,0,0,0.049831212,5.322125268,0.30073,0.81269,6.52760992,-1.12E-14,4.26E-04,0.141363939,2.53814,9.00E-05,110.59184,0,4953.77102,563.414218,650.0361864,3.24927085,0.020790643,0.00134622,871.200821,596.59043,341.2003,11.3535556,0.05519,127.524658,0.14701,1.18732195,8.568209641,84.54350715,198.9621115,43.5951988,18.86989004,11.074,26119.52653,0.01501,0.1107,0.01899 +2082,35.48973589,0,0,0.059314664,5.220191503,0.28816,0.77338,6.48208034,-2.24E-14,4.03E-04,0.136792468,2.44588,8.00E-05,110.36178,0,4949.04184,557.8493957,646.3217943,3.1038901,0.019180042,0.001214882,868.128362,596.90646,339.9685,11.2406772,0.05208,127.471526,0.13872,1.1793278,8.551385075,84.55507249,197.807791,42.93078771,18.79746492,11.048,25550.71592,0.01412,0.1071,0.01828 +2083,35.52457662,0,0,0.068798116,5.118257738,0.27559,0.73407,6.43655076,-3.36E-14,3.81E-04,0.132220997,2.35362,7.00E-05,110.13172,0,4944.31266,552.2845733,642.6074021,2.95850935,0.017569442,0.001083543,865.055903,597.22249,338.7367,11.1277988,0.04897,127.418394,0.13043,1.17133365,8.534560508,84.56663783,196.6534705,42.26637662,18.72503981,11.022,24981.90531,0.01323,0.1035,0.01757 +2084,35.55941735,0,0,0.078281568,5.016323974,0.26302,0.69476,6.39102118,-4.47E-14,3.58E-04,0.127649526,2.26136,6.00E-05,109.90166,0,4939.58348,546.7197509,638.8930099,2.8131286,0.015958842,9.52E-04,861.983444,597.53852,337.5049,11.0149204,0.04586,127.365262,0.12214,1.1633395,8.517735942,84.57820317,195.49915,41.60196553,18.65261469,10.996,24413.09469,0.01234,0.0999,0.01686 +2085,35.59425808,0,0,0.087765019,4.914390209,0.25045,0.65545,6.3454916,-5.59E-14,3.36E-04,0.123078055,2.1691,5.00E-05,109.6716,0,4934.8543,541.1549285,635.1786178,2.66774785,0.014348241,8.21E-04,858.910985,597.85455,336.2731,10.902042,0.04275,127.31213,0.11385,1.15534535,8.500911375,84.58976851,194.3448295,40.93755444,18.58018957,10.97,23844.28408,0.01145,0.0963,0.01615 +2086,35.6290988,0,0,0.097248471,4.812456444,0.23788,0.61614,6.29996202,-6.71E-14,3.14E-04,0.118506584,2.07684,4.00E-05,109.44154,0,4930.12512,535.5901061,631.4642256,2.5223671,0.012737641,6.90E-04,855.838526,598.17058,335.0413,10.7891636,0.03964,127.258998,0.10556,1.1473512,8.484086809,84.60133385,193.190509,40.27314335,18.50776446,10.944,23275.47347,0.01056,0.0927,0.01544 +2087,35.66393953,0,0,0.106731923,4.710522679,0.22531,0.57683,6.25443244,-7.83E-14,2.91E-04,0.113935113,1.98458,3.00E-05,109.21148,0,4925.39594,530.0252837,627.7498335,2.37698635,0.011127041,5.58E-04,852.766067,598.48661,333.8095,10.6762852,0.03653,127.205866,0.09727,1.13935705,8.467262242,84.61289919,192.0361885,39.60873226,18.43533934,10.918,22706.66285,0.00967,0.0891,0.01473 +2088,35.69878026,0,0,0.116215375,4.608588914,0.21274,0.53752,6.20890286,-8.95E-14,2.69E-04,0.109363642,1.89232,2.00E-05,108.98142,0,4920.66676,524.4604614,624.0354413,2.2316056,0.00951644,4.27E-04,849.693608,598.80264,332.5777,10.5634068,0.03342,127.152734,0.08898,1.1313629,8.450437675,84.62446453,190.881868,38.94432117,18.36291422,10.892,22137.85224,0.00878,0.0855,0.01402 +2089,35.73362099,0,0,0.125698827,4.506655149,0.20017,0.49821,6.16337328,-1.01E-13,2.46E-04,0.104792171,1.80006,1.00E-05,108.75136,0,4915.93758,518.895639,620.3210491,2.08622485,0.00790584,2.96E-04,846.621149,599.11867,331.3459,10.4505284,0.03031,127.099602,0.08069,1.12336875,8.433613109,84.63602987,189.7275475,38.27991008,18.29048911,10.866,21569.04163,0.00789,0.0819,0.01331 +2090,35.76846172,0,0,0.135182279,4.404721384,0.1876,0.4589,6.1178437,-1.12E-13,2.24E-04,0.1002207,1.7078,0,108.5213,0,4911.2084,513.3308166,616.606657,1.9408441,0.00629524,1.64E-04,843.54869,599.4347,330.1141,10.33765,0.0272,127.04647,0.0724,1.1153746,8.416788542,84.64759521,188.573227,37.61549899,18.21806399,10.84,21000.23102,0.007,0.0783,0.0126 +2091,35.67966304,0,0,0.163425266,4.29562444,0.1876,0.43762,6.1178437,-1.01E-13,2.02E-04,0.097055836,1.64769,0.0012,108.5213,0,4911.2084,510.2122834,612.610549,1.86679494,0.007758679,0.001050708,838.339802,597.86408,328.07465,10.2188704,0.02448,126.542861,0.06516,1.10611563,8.385030357,84.33537508,186.0471806,36.85983896,18.15654725,10.808,20378.24707,0.0071,0.07583,0.01215 +2092,35.59086436,0,0,0.191668253,4.186527496,0.1876,0.41634,6.1178437,-8.95E-14,1.79E-04,0.093890972,1.58758,0.0024,108.5213,0,4911.2084,507.0937503,608.6144411,1.79274578,0.009222117,0.001937244,833.130914,596.29346,326.0352,10.1000908,0.02176,126.039252,0.05792,1.09685666,8.353272172,84.02315495,183.5211342,36.10417893,18.09503051,10.776,19756.26313,0.0072,0.07336,0.0117 +2093,35.50206568,0,0,0.21991124,4.077430552,0.1876,0.39506,6.1178437,-7.83E-14,1.57E-04,0.090726108,1.52747,0.0036,108.5213,0,4911.2084,503.9752171,604.6183332,1.71869662,0.010685556,0.002823779,827.922026,594.72284,323.99575,9.9813112,0.01904,125.535643,0.05068,1.08759769,8.321513987,83.71093482,180.9950878,35.34851891,18.03351376,10.744,19134.27918,0.0073,0.07089,0.01125 +2094,35.41326699,0,0,0.248154228,3.968333609,0.1876,0.37378,6.1178437,-6.71E-14,1.34E-04,0.087561244,1.46736,0.0048,108.5213,0,4911.2084,500.8566839,600.6222253,1.64464746,0.012148995,0.003710314,822.713138,593.15222,321.9563,9.8625316,0.01632,125.032034,0.04344,1.07833872,8.289755802,83.39871469,178.4690414,34.59285888,17.97199702,10.712,18512.29524,0.0074,0.06842,0.0108 +2095,35.32446831,0,0,0.276397215,3.859236665,0.1876,0.3525,6.1178437,-5.59E-14,1.12E-04,0.08439638,1.40725,0.006,108.5213,0,4911.2084,497.7381508,596.6261174,1.5705983,0.013612434,0.00459685,817.50425,591.5816,319.91685,9.743752,0.0136,124.528425,0.0362,1.06907975,8.257997617,83.08649457,175.942995,33.83719886,17.91048028,10.68,17890.31129,0.0075,0.06595,0.01035 +2096,35.23566963,0,0,0.304640202,3.750139721,0.1876,0.33122,6.1178437,-4.47E-14,8.96E-05,0.081231515,1.34714,0.0072,108.5213,0,4911.2084,494.6196176,592.6300095,1.49654914,0.015075873,0.005483385,812.295362,590.01098,317.8774,9.6249724,0.01088,124.024816,0.02896,1.05982078,8.226239432,82.77427444,173.4169486,33.08153883,17.84896353,10.648,17268.32734,0.0076,0.06348,0.0099 +2097,35.14687095,0,0,0.332883189,3.641042777,0.1876,0.30994,6.1178437,-3.36E-14,6.72E-05,0.078066651,1.28703,0.0084,108.5213,0,4911.2084,491.5010844,588.6339016,1.42249998,0.016539312,0.00636992,807.086474,588.44036,315.83795,9.5061928,0.00816,123.521207,0.02172,1.05056181,8.194481247,82.46205431,170.8909022,32.3258788,17.78744679,10.616,16646.3434,0.0077,0.06101,0.00945 +2098,35.05807227,0,0,0.361126177,3.531945833,0.1876,0.28866,6.1178437,-2.24E-14,4.48E-05,0.074901787,1.22692,0.0096,108.5213,0,4911.2084,488.3825513,584.6377937,1.34845082,0.01800275,0.007256455,801.877586,586.86974,313.7985,9.3874132,0.00544,123.017598,0.01448,1.04130284,8.162723062,82.14983418,168.3648558,31.57021878,17.72593005,10.584,16024.35945,0.0078,0.05854,0.009 +2099,34.96927359,0,0,0.389369164,3.422848889,0.1876,0.26738,6.1178437,-1.12E-14,2.24E-05,0.071736923,1.16681,0.0108,108.5213,0,4911.2084,485.2640181,580.6416858,1.27440166,0.019466189,0.008142991,796.668698,585.29912,311.75905,9.2686336,0.00272,122.513989,0.00724,1.03204387,8.130964878,81.83761405,165.8388093,30.81455875,17.66441331,10.552,15402.37551,0.0079,0.05607,0.00855 +2100,34.8804749,0,0,0.417612151,3.313751945,0.1876,0.2461,6.1178437,0,0,0.068572059,1.1067,0.012,108.5213,0,4911.2084,482.1454849,576.6455779,1.2003525,0.020929628,0.009029526,791.45981,583.7285,309.7196,9.149854,0,122.01038,0,1.0227849,8.099206693,81.52539392,163.3127629,30.05889872,17.60289656,10.52,14780.39156,0.008,0.0536,0.0081 +2101,34.6479384,0,0,0.409259908,3.302680746,0.186349333,0.244459333,6.077058075,0,0,0.068114912,1.099322,0.01192,107.7978247,0,4878.467011,480.0384274,575.0502072,1.19235015,0.020790097,0.008969329,786.1834113,579.8369767,307.6548027,9.088854973,0,121.1969775,0,1.015966334,8.089500563,81.430945,162.6346611,29.90474086,17.58189946,10.44986667,14688.5345,0.007946667,0.053242667,0.008046 +2102,34.4154019,0,0,0.400907665,3.291609546,0.185098667,0.242818667,6.036272451,0,0,0.067657765,1.091944,0.01184,107.0743493,0,4845.725621,477.9313698,573.4548364,1.1843478,0.020650566,0.008909132,780.9070125,575.9454533,305.5900053,9.027855947,0,120.3835749,0,1.009147768,8.079794433,81.33649608,161.9565593,29.750583,17.56090237,10.37973333,14596.67745,0.007893333,0.052885333,0.007992 +2103,34.18286541,0,0,0.392555422,3.280538347,0.183848,0.241178,5.995486826,0,0,0.067200618,1.084566,0.01176,106.350874,0,4812.984232,475.8243123,571.8594657,1.17634545,0.020511035,0.008848935,775.6306138,572.05393,303.525208,8.96685692,0,119.5701724,0,1.002329202,8.070088303,81.24204716,161.2784575,29.59642513,17.53990527,10.3096,14504.82039,0.00784,0.052528,0.007938 +2104,33.95032891,0,0,0.384203179,3.269467148,0.182597333,0.239537333,5.954701201,0,0,0.066743471,1.077188,0.01168,105.6273987,0,4780.242843,473.7172547,570.264095,1.1683431,0.020371505,0.008788739,770.3542151,568.1624067,301.4604107,8.905857893,0,118.7567699,0,0.995510636,8.060382174,81.14759825,160.6003557,29.44226727,17.51890817,10.23946667,14412.96333,0.007786667,0.052170667,0.007884 +2105,33.71779241,0,0,0.375850936,3.258395948,0.181346667,0.237896667,5.913915577,0,0,0.066286324,1.06981,0.0116,104.9039233,0,4747.501453,471.6101972,568.6687242,1.16034075,0.020231974,0.008728542,765.0778163,564.2708833,299.3956133,8.844858867,0,117.9433673,0,0.98869207,8.050676044,81.05314933,159.9222539,29.28810941,17.49791107,10.16933333,14321.10627,0.007733333,0.051813333,0.00783 +2106,33.48525591,0,0,0.367498693,3.247324749,0.180096,0.236256,5.873129952,0,0,0.065829177,1.062432,0.01152,104.180448,0,4714.760064,469.5031397,567.0733535,1.1523384,0.020092443,0.008668345,759.8014176,560.37936,297.330816,8.78385984,0,117.1299648,0,0.981873504,8.040969914,80.95870041,159.244152,29.13395154,17.47691397,10.0992,14229.24921,0.00768,0.051456,0.007776 +2107,33.25271941,0,0,0.35914645,3.23625355,0.178845333,0.234615333,5.832344327,0,0,0.06537203,1.055054,0.01144,103.4569727,0,4682.018675,467.3960821,565.4779827,1.14433605,0.019952912,0.008608148,754.5250189,556.4878367,295.2660187,8.722860813,0,116.3165623,0,0.975054938,8.031263784,80.86425149,158.5660502,28.97979368,17.45591687,10.02906667,14137.39215,0.007626667,0.051098667,0.007722 +2108,33.02018291,0,0,0.350794207,3.22518235,0.177594667,0.232974667,5.791558703,0,0,0.064914883,1.047676,0.01136,102.7334973,0,4649.277285,465.2890246,563.882612,1.1363337,0.019813381,0.008547951,749.2486201,552.5963133,293.2012213,8.661861787,0,115.5031597,0,0.968236372,8.021557655,80.76980257,157.8879484,28.82563582,17.43491977,9.958933333,14045.53509,0.007573333,0.050741333,0.007668 +2109,32.78764641,0,0,0.342441964,3.214111151,0.176344,0.231334,5.750773078,0,0,0.064457735,1.040298,0.01128,102.010022,0,4616.535896,463.181967,562.2872413,1.12833135,0.01967385,0.008487754,743.9722214,548.70479,291.136424,8.60086276,0,114.6897572,0,0.961417806,8.011851525,80.67535365,157.2098466,28.67147795,17.41392267,9.8888,13953.67803,0.00752,0.050384,0.007614 +2110,32.55510991,0,0,0.334089721,3.203039952,0.175093333,0.229693333,5.709987453,0,0,0.064000588,1.03292,0.0112,101.2865467,0,4583.794507,461.0749095,560.6918705,1.120329,0.019534319,0.008427558,738.6958227,544.8132667,289.0716267,8.539863733,0,113.8763547,0,0.95459924,8.002145395,80.58090473,156.5317448,28.51732009,17.39292557,9.818666667,13861.82097,0.007466667,0.050026667,0.00756 +2111,32.32257341,0,0,0.325737478,3.191968752,0.173842667,0.228052667,5.669201829,0,0,0.063543441,1.025542,0.01112,100.5630713,0,4551.053117,458.9678519,559.0964998,1.11232665,0.019394789,0.008367361,733.4194239,540.9217433,287.0068293,8.478864707,0,113.0629521,0,0.947780674,7.992439265,80.48645581,155.853643,28.36316223,17.37192848,9.748533333,13769.96391,0.007413333,0.049669333,0.007506 +2112,32.09003691,0,0,0.317385235,3.180897553,0.172592,0.226412,5.628416204,0,0,0.063086294,1.018164,0.01104,99.839596,0,4518.311728,456.8607944,557.5011291,1.1043243,0.019255258,0.008307164,728.1430252,537.03022,284.942032,8.41786568,0,112.2495496,0,0.940962108,7.982733136,80.39200689,155.1755411,28.20900436,17.35093138,9.6784,13678.10685,0.00736,0.049312,0.007452 +2113,31.85750041,0,0,0.309032992,3.169826354,0.171341333,0.224771333,5.587630579,0,0,0.062629147,1.010786,0.01096,99.11612067,0,4485.570339,454.7537368,555.9057583,1.09632195,0.019115727,0.008246967,722.8666265,533.1386967,282.8772347,8.356866653,0,111.4361471,0,0.934143542,7.973027006,80.29755797,154.4974393,28.0548465,17.32993428,9.608266667,13586.2498,0.007306667,0.048954667,0.007398 +2114,31.62496391,0,0,0.300680749,3.158755154,0.170090667,0.223130667,5.546844955,0,0,0.062172,1.003408,0.01088,98.39264533,0,4452.828949,452.6466793,554.3103876,1.0883196,0.018976196,0.00818677,717.5902277,529.2471733,280.8124373,8.295867627,0,110.6227445,0,0.927324976,7.963320876,80.20310905,153.8193375,27.90068864,17.30893718,9.538133333,13494.39274,0.007253333,0.048597333,0.007344 +2115,31.39242741,0,0,0.292328506,3.147683955,0.16884,0.22149,5.50605933,0,0,0.061714853,0.99603,0.0108,97.66917,0,4420.08756,450.5396218,552.7150169,1.08031725,0.018836665,0.008126573,712.313829,525.35565,278.74764,8.2348686,0,109.809342,0,0.92050641,7.953614747,80.10866014,153.1412357,27.74653077,17.28794008,9.468,13402.53568,0.0072,0.04824,0.00729 +2116,31.15989091,0,0,0.283976263,3.136612756,0.167589333,0.219849333,5.465273705,0,0,0.061257706,0.988652,0.01072,96.94569467,0,4387.346171,448.4325642,551.1196461,1.0723149,0.018697134,0.008066377,707.0374303,521.4641267,276.6828427,8.173869573,0,108.9959395,0,0.913687844,7.943908617,80.01421122,152.4631339,27.59237291,17.26694298,9.397866667,13310.67862,0.007146667,0.047882667,0.007236 +2117,30.92735441,0,0,0.27562402,3.125541556,0.166338667,0.218208667,5.424488081,0,0,0.060800559,0.981274,0.01064,96.22221933,0,4354.604781,446.3255067,549.5242754,1.06431255,0.018557603,0.00800618,701.7610315,517.5726033,274.6180453,8.112870547,0,108.1825369,0,0.906869278,7.934202487,79.9197623,151.7850321,27.43821505,17.24594588,9.327733333,13218.82156,0.007093333,0.047525333,0.007182 +2118,30.69481792,0,0,0.267271777,3.114470357,0.165088,0.216568,5.383702456,0,0,0.060343412,0.973896,0.01056,95.498744,0,4321.863392,444.2184491,547.9289047,1.0563102,0.018418073,0.007945983,696.4846328,513.68108,272.553248,8.05187152,0,107.3691344,0,0.900050712,7.924496357,79.82531338,151.1069303,27.28405718,17.22494878,9.2576,13126.9645,0.00704,0.047168,0.007128 +2119,30.46228142,0,0,0.258919534,3.103399158,0.163837333,0.214927333,5.342916831,0,0,0.059886265,0.966518,0.01048,94.77526867,0,4289.122003,442.1113916,546.3335339,1.04830785,0.018278542,0.007885786,691.2082341,509.7895567,270.4884507,7.990872493,0,106.5557319,0,0.893232146,7.914790228,79.73086446,150.4288284,27.12989932,17.20395169,9.187466667,13035.10744,0.006986667,0.046810667,0.007074 +2120,30.22974492,0,0,0.250567291,3.092327958,0.162586667,0.213286667,5.302131207,0,0,0.059429118,0.95914,0.0104,94.05179333,0,4256.380613,440.004334,544.7381632,1.0403055,0.018139011,0.007825589,685.9318353,505.8980333,268.4236533,7.929873467,0,105.7423293,0,0.88641358,7.905084098,79.63641554,149.7507266,26.97574146,17.18295459,9.117333333,12943.25038,0.006933333,0.046453333,0.00702 +2121,29.99720842,0,0,0.242215048,3.081256759,0.161336,0.211646,5.261345582,0,0,0.058971971,0.951762,0.01032,93.328318,0,4223.639224,437.8972765,543.1427925,1.03230315,0.01799948,0.007765392,680.6554366,502.00651,266.358856,7.86887444,0,104.9289268,0,0.879595014,7.895377968,79.54196662,149.0726248,26.82158359,17.16195749,9.0472,12851.39332,0.00688,0.046096,0.006966 +2122,29.76467192,0,0,0.233862805,3.07018556,0.160085333,0.210005333,5.220559957,0,0,0.058514824,0.944384,0.01024,92.60484267,0,4190.897835,435.790219,541.5474217,1.0243008,0.017859949,0.007705196,675.3790379,498.1149867,264.2940587,7.807875413,0,104.1155243,0,0.872776448,7.885671838,79.4475177,148.394523,26.66742573,17.14096039,8.977066667,12759.53626,0.006826667,0.045738667,0.006912 +2123,29.53213542,0,0,0.225510562,3.05911436,0.158834667,0.208364667,5.179774333,0,0,0.058057677,0.937006,0.01016,91.88136733,0,4158.156445,433.6831614,539.952051,1.01629845,0.017720418,0.007644999,670.1026391,494.2234633,262.2292613,7.746876387,0,103.3021217,0,0.865957882,7.875965709,79.35306878,147.7164212,26.51326787,17.11996329,8.906933333,12667.67921,0.006773333,0.045381333,0.006858 +2124,29.29959892,0,0,0.217158319,3.048043161,0.157584,0.206724,5.138988708,0,0,0.05760053,0.929628,0.01008,91.157892,0,4125.415056,431.5761039,538.3566802,1.0082961,0.017580888,0.007584802,664.8262404,490.33194,260.164464,7.68587736,0,102.4887192,0,0.859139316,7.866259579,79.25861986,147.0383194,26.35911,17.09896619,8.8368,12575.82215,0.00672,0.045024,0.006804 +2125,29.06706242,0,0,0.208806076,3.036971962,0.156333333,0.205083333,5.098203083,0,0,0.057143383,0.92225,0.01,90.43441667,0,4092.673667,429.4690463,536.7613095,1.00029375,0.017441357,0.007524605,659.5498417,486.4404167,258.0996667,7.624878333,0,101.6753167,0,0.85232075,7.856553449,79.16417094,146.3602175,26.20495214,17.07796909,8.766666667,12483.96509,0.006666667,0.044666667,0.00675 +2126,28.83452592,0,0,0.200453833,3.025900763,0.155082667,0.203442667,5.057417459,0,0,0.056686235,0.914872,0.00992,89.71094133,0,4059.932277,427.3619888,535.1659388,0.9922914,0.017301826,0.007464408,654.2734429,482.5488933,256.0348693,7.563879307,0,100.8619141,0,0.845502184,7.846847319,79.06972203,145.6821157,26.05079428,17.05697199,8.696533333,12392.10803,0.006613333,0.044309333,0.006696 +2127,28.60198942,0,0,0.19210159,3.014829563,0.153832,0.201802,5.016631834,0,0,0.056229088,0.907494,0.00984,88.987466,0,4027.190888,425.2549312,533.570568,0.98428905,0.017162295,0.007404211,648.9970442,478.65737,253.970072,7.50288028,0,100.0485116,0,0.838683618,7.83714119,78.97527311,145.0040139,25.89663641,17.03597489,8.6264,12300.25097,0.00656,0.043952,0.006642 +2128,28.36945292,0,0,0.183749347,3.003758364,0.152581333,0.200161333,4.975846209,0,0,0.055771941,0.900116,0.00976,88.26399067,0,3994.449499,423.1478737,531.9751973,0.9762867,0.017022764,0.007344014,643.7206455,474.7658467,251.9052747,7.441881253,0,99.23510907,0,0.831865052,7.82743506,78.88082419,144.3259121,25.74247855,17.0149778,8.556266667,12208.39391,0.006506667,0.043594667,0.006588 +2129,28.13691642,0,0,0.175397103,2.992687165,0.151330667,0.198520667,4.935060585,0,0,0.055314794,0.892738,0.00968,87.54051533,0,3961.708109,421.0408161,530.3798266,0.96828435,0.016883233,0.007283818,638.4442467,470.8743233,249.8404773,7.380882227,0,98.42170653,0,0.825046486,7.81772893,78.78637527,143.6478103,25.58832069,16.9939807,8.486133333,12116.53685,0.006453333,0.043237333,0.006534 +2130,27.90437992,0,0,0.16704486,2.981615965,0.15008,0.19688,4.89427496,0,0,0.054857647,0.88536,0.0096,86.81704,0,3928.96672,418.9337586,528.7844558,0.960282,0.016743702,0.007223621,633.167848,466.9828,247.77568,7.3198832,0,97.608304,0,0.81822792,7.808022801,78.69192635,142.9697085,25.43416282,16.9729836,8.416,12024.67979,0.0064,0.04288,0.00648 +2131,27.67184342,0,0,0.158692617,2.970544766,0.148829333,0.195239333,4.853489335,0,0,0.0544005,0.877982,0.00952,86.09356467,0,3896.225331,416.8267011,527.1890851,0.95227965,0.016604172,0.007163424,627.8914493,463.0912767,245.7108827,7.258884173,0,96.79490147,0,0.811409354,7.798316671,78.59747743,142.2916066,25.28000496,16.9519865,8.345866667,11932.82273,0.006346667,0.042522667,0.006426 +2132,27.43930692,0,0,0.150340374,2.959473567,0.147578667,0.193598667,4.812703711,0,0,0.053943353,0.870604,0.00944,85.37008933,0,3863.483941,414.7196435,525.5937144,0.9442773,0.016464641,0.007103227,622.6150505,459.1997533,243.6460853,7.197885147,0,95.98149893,0,0.804590788,7.788610541,78.50302851,141.6135048,25.1258471,16.9309894,8.275733333,11840.96567,0.006293333,0.042165333,0.006372 +2133,27.20677042,0,0,0.141988131,2.948402367,0.146328,0.191958,4.771918086,0,0,0.053486206,0.863226,0.00936,84.646614,0,3830.742552,412.612586,523.9983436,0.93627495,0.01632511,0.00704303,617.3386518,455.30823,241.581288,7.13688612,0,95.1680964,0,0.797772222,7.778904411,78.40857959,140.935403,24.97168923,16.9099923,8.2056,11749.10862,0.00624,0.041808,0.006318 +2134,26.97423393,0,0,0.133635888,2.937331168,0.145077333,0.190317333,4.731132461,0,0,0.053029059,0.855848,0.00928,83.92313867,0,3798.001163,410.5055284,522.4029729,0.9282726,0.016185579,0.006982833,612.0622531,451.4167067,239.5164907,7.075887093,0,94.35469387,0,0.790953656,7.769198282,78.31413067,140.2573012,24.81753137,16.8889952,8.135466667,11657.25156,0.006186667,0.041450667,0.006264 +2135,26.74169743,0,0,0.125283645,2.926259969,0.143826667,0.188676667,4.690346837,0,0,0.052571912,0.84847,0.0092,83.19966333,0,3765.259773,408.3984709,520.8076022,0.92027025,0.016046048,0.006922637,606.7858543,447.5251833,237.4516933,7.014888067,0,93.54129133,0,0.78413509,7.759492152,78.21968175,139.5791994,24.66337351,16.8679981,8.065333333,11565.3945,0.006133333,0.041093333,0.00621 +2136,26.50916093,0,0,0.116931402,2.915188769,0.142576,0.187036,4.649561212,0,0,0.052114765,0.841092,0.00912,82.476188,0,3732.518384,406.2914133,519.2122314,0.9122679,0.015906517,0.00686244,601.5094556,443.63366,235.386896,6.95388904,0,92.7278888,0,0.777316524,7.749786022,78.12523283,138.9010976,24.50921564,16.847001,7.9952,11473.53744,0.00608,0.040736,0.006156 +2137,26.27662443,0,0,0.108579159,2.90411757,0.141325333,0.185395333,4.608775587,0,0,0.051657618,0.833714,0.00904,81.75271267,0,3699.776995,404.1843558,517.6168607,0.90426555,0.015766986,0.006802243,596.2330569,439.7421367,233.3220987,6.892890013,0,91.91448627,0,0.770497958,7.740079892,78.03078392,138.2229958,24.35505778,16.82600391,7.925066667,11381.68038,0.006026667,0.040378667,0.006102 +2138,26.04408793,0,0,0.100226916,2.893046371,0.140074667,0.183754667,4.567989963,0,0,0.051200471,0.826336,0.00896,81.02923733,0,3667.035605,402.0772982,516.02149,0.8962632,0.015627456,0.006742046,590.9566581,435.8506133,231.2573013,6.831890987,0,91.10108373,0,0.763679392,7.730373763,77.936335,137.5448939,24.20089992,16.80500681,7.854933333,11289.82332,0.005973333,0.040021333,0.006048 +2139,25.81155143,0,0,0.091874673,2.881975171,0.138824,0.182114,4.527204338,0,0,0.050743324,0.818958,0.00888,80.305762,0,3634.294216,399.9702407,514.4261192,0.88826085,0.015487925,0.006681849,585.6802594,431.95909,229.192504,6.77089196,0,90.2876812,0,0.756860826,7.720667633,77.84188608,136.8667921,24.04674205,16.78400971,7.7848,11197.96626,0.00592,0.039664,0.005994 +2140,25.57901493,0,0,0.08352243,2.870903972,0.137573333,0.180473333,4.486418713,0,0,0.050286177,0.81158,0.0088,79.58228667,0,3601.552827,397.8631832,512.8307485,0.8802585,0.015348394,0.006621652,580.4038607,428.0675667,227.1277067,6.709892933,0,89.47427867,0,0.75004226,7.710961503,77.74743716,136.1886903,23.89258419,16.76301261,7.714666667,11106.1092,0.005866667,0.039306667,0.00594 +2141,25.34647843,0,0,0.075170187,2.859832773,0.136322667,0.178832667,4.445633089,0,0,0.04982903,0.804202,0.00872,78.85881133,0,3568.811437,395.7561256,511.2353777,0.87225615,0.015208863,0.006561456,575.1274619,424.1760433,225.0629093,6.648893907,0,88.66087613,0,0.743223694,7.701255373,77.65298824,135.5105885,23.73842633,16.74201551,7.644533333,11014.25214,0.005813333,0.038949333,0.005886 +2142,25.11394193,0,0,0.066817944,2.848761573,0.135072,0.177192,4.404847464,0,0,0.049371882,0.796824,0.00864,78.135336,0,3536.070048,393.6490681,509.640007,0.8642538,0.015069332,0.006501259,569.8510632,420.28452,222.998112,6.58789488,0,87.8474736,0,0.736405128,7.691549244,77.55853932,134.8324867,23.58426846,16.72101841,7.5744,10922.39508,0.00576,0.038592,0.005832 +2143,24.88140543,0,0,0.058465701,2.837690374,0.133821333,0.175551333,4.364061839,0,0,0.048914735,0.789446,0.00856,77.41186067,0,3503.328659,391.5420105,508.0446363,0.85625145,0.014929801,0.006441062,564.5746645,416.3929967,220.9333147,6.526895853,0,87.03407107,0,0.729586562,7.681843114,77.4640904,134.1543849,23.4301106,16.70002131,7.504266667,10830.53802,0.005706667,0.038234667,0.005778 +2144,24.64886893,0,0,0.050113458,2.826619175,0.132570667,0.173910667,4.323276215,0,0,0.048457588,0.782068,0.00848,76.68838533,0,3470.587269,389.434953,506.4492655,0.8482491,0.01479027,0.006380865,559.2982657,412.5014733,218.8685173,6.465896827,0,86.22066853,0,0.722767996,7.672136984,77.36964148,133.476283,23.27595274,16.67902421,7.434133333,10738.68097,0.005653333,0.037877333,0.005724 +2145,24.41633243,0,0,0.041761215,2.815547975,0.13132,0.17227,4.28249059,0,0,0.048000441,0.77469,0.0084,75.96491,0,3437.84588,387.3278954,504.8538948,0.84024675,0.01465074,0.006320668,554.021867,408.60995,216.80372,6.4048978,0,85.407266,0,0.71594943,7.662430854,77.27519256,132.7981812,23.12179487,16.65802711,7.364,10646.82391,0.0056,0.03752,0.00567 +2146,24.18379593,0,0,0.033408972,2.804476776,0.130069333,0.170629333,4.241704965,0,0,0.047543294,0.767312,0.00832,75.24143467,0,3405.104491,385.2208379,503.2585241,0.8322444,0.014511209,0.006260471,548.7454683,404.7184267,214.7389227,6.343898773,0,84.59386347,0,0.709130864,7.652724725,77.18074364,132.1200794,22.96763701,16.63703002,7.293866667,10554.96685,0.005546667,0.037162667,0.005616 +2147,23.95125943,0,0,0.025056729,2.793405577,0.128818667,0.168988667,4.200919341,0,0,0.047086147,0.759934,0.00824,74.51795933,0,3372.363101,383.1137804,501.6631533,0.82424205,0.014371678,0.006200275,543.4690695,400.8269033,212.6741253,6.282899747,0,83.78046093,0,0.702312298,7.643018595,77.08629472,131.4419776,22.81347915,16.61603292,7.223733333,10463.10979,0.005493333,0.036805333,0.005562 +2148,23.71872293,0,0,0.016704486,2.782334377,0.127568,0.167348,4.160133716,0,0,0.046629,0.752556,0.00816,73.794484,0,3339.621712,381.0067228,500.0677826,0.8162397,0.014232147,0.006140078,538.1926708,396.93538,210.609328,6.22190072,0,82.9670584,0,0.695493732,7.633312465,76.99184581,130.7638758,22.65932128,16.59503582,7.1536,10371.25273,0.00544,0.036448,0.005508 +2149,23.48618644,0,0,0.008352243,2.771263178,0.126317333,0.165707333,4.119348091,0,0,0.046171853,0.745178,0.00808,73.07100867,0,3306.880323,378.8996653,498.4724119,0.80823735,0.014092616,0.006079881,532.9162721,393.0438567,208.5445307,6.160901693,0,82.15365587,0,0.688675166,7.623606336,76.89739689,130.085774,22.50516342,16.57403872,7.083466667,10279.39567,0.005386667,0.036090667,0.005454 +2150,23.25364994,0,0,0,2.760191979,0.125066667,0.164066667,4.078562467,0,0,0.045714706,0.7378,0.008,72.34753333,0,3274.138933,376.7926077,496.8770411,0.800235,0.013953085,0.006019684,527.6398733,389.1523333,206.4797333,6.099902667,0,81.34025333,0,0.6818566,7.613900206,76.80294797,129.4076722,22.35100556,16.55304162,7.013333333,10187.53861,0.005333333,0.035733333,0.0054 +2151,23.02111344,0,0,0,2.749120779,0.123816,0.162426,4.037776842,0,0,0.045257559,0.730422,0.00792,71.624058,0,3241.397544,374.6855502,495.2816704,0.79223265,0.013813554,0.005959487,522.3634746,385.26081,204.414936,6.03890364,0,80.5268508,0,0.675038034,7.604194076,76.70849905,128.7295703,22.19684769,16.53204452,6.9432,10095.68155,0.00528,0.035376,0.005346 +2152,22.78857694,0,0,0,2.73804958,0.122565333,0.160785333,3.996991217,0,0,0.044800412,0.723044,0.00784,70.90058267,0,3208.656155,372.5784926,493.6862997,0.7842303,0.013674024,0.00589929,517.0870759,381.3692867,202.3501387,5.977904613,0,79.71344827,0,0.668219468,7.594487946,76.61405013,128.0514685,22.04268983,16.51104742,6.873066667,10003.82449,0.005226667,0.035018667,0.005292 +2153,22.55604044,0,0,0,2.726978381,0.121314667,0.159144667,3.956205593,0,0,0.044343265,0.715666,0.00776,70.17710733,0,3175.914765,370.4714351,492.0909289,0.77622795,0.013534493,0.005839093,511.8106771,377.4777633,200.2853413,5.916905587,0,78.90004573,0,0.661400902,7.584781817,76.51960121,127.3733667,21.88853197,16.49005032,6.802933333,9911.967434,0.005173333,0.034661333,0.005238 +2154,22.32350394,0,0,0,2.715907181,0.120064,0.157504,3.915419968,0,0,0.043886118,0.708288,0.00768,69.453632,0,3143.173376,368.3643775,490.4955582,0.7682256,0.013394962,0.005778897,506.5342784,373.58624,198.220544,5.85590656,0,78.0866432,0,0.654582336,7.575075687,76.42515229,126.6952649,21.7343741,16.46905323,6.7328,9820.110375,0.00512,0.034304,0.005184 +2155,22.09096744,0,0,0,2.704835982,0.118813333,0.155863333,3.874634343,0,0,0.043428971,0.70091,0.0076,68.73015667,0,3110.431987,366.25732,488.9001875,0.76022325,0.013255431,0.0057187,501.2578797,369.6947167,196.1557467,5.794907533,0,77.27324067,0,0.64776377,7.565369557,76.33070337,126.0171631,21.58021624,16.44805613,6.662666667,9728.253316,0.005066667,0.033946667,0.00513 +2156,21.85843094,0,0,0,2.693764783,0.117562667,0.154222667,3.833848719,0,0,0.042971824,0.693532,0.00752,68.00668133,0,3077.690597,364.1502625,487.3048167,0.7522209,0.0131159,0.005658503,495.9814809,365.8031933,194.0909493,5.733908507,0,76.45983813,0,0.640945204,7.555663427,76.23625445,125.3390613,21.42605838,16.42705903,6.592533333,9636.396257,0.005013333,0.033589333,0.005076 +2157,21.62589444,0,0,0,2.682693583,0.116312,0.152582,3.793063094,0,0,0.042514677,0.686154,0.00744,67.283206,0,3044.949208,362.0432049,485.709446,0.74421855,0.012976369,0.005598306,490.7050822,361.91167,192.026152,5.67290948,0,75.6464356,0,0.634126638,7.545957298,76.14180553,124.6609594,21.27190051,16.40606193,6.5224,9544.539198,0.00496,0.033232,0.005022 +2158,21.39335794,0,0,0,2.671622384,0.115061333,0.150941333,3.752277469,0,0,0.04205753,0.678776,0.00736,66.55973067,0,3012.207819,359.9361474,484.1140752,0.7362162,0.012836839,0.005538109,485.4286835,358.0201467,189.9613547,5.611910453,0,74.83303307,0,0.627308072,7.536251168,76.04735661,123.9828576,21.11774265,16.38506483,6.452266667,9452.682139,0.004906667,0.032874667,0.004968 +2159,21.16082144,0,0,0,2.660551185,0.113810667,0.149300667,3.711491845,0,0,0.041600382,0.671398,0.00728,65.83625533,0,2979.466429,357.8290898,482.5187045,0.72821385,0.012697308,0.005477912,480.1522847,354.1286233,187.8965573,5.550911427,0,74.01963053,0,0.620489506,7.526545038,75.9529077,123.3047558,20.96358479,16.36406773,6.382133333,9360.82508,0.004853333,0.032517333,0.004914 +2160,20.92828494,0,0,0,2.649479985,0.11256,0.14766,3.67070622,0,0,0.041143235,0.66402,0.0072,65.11278,0,2946.72504,355.7220323,480.9233338,0.7202115,0.012557777,0.005417716,474.875886,350.2371,185.83176,5.4899124,0,73.206228,0,0.61367094,7.516838908,75.85845878,122.626654,20.80942692,16.34307063,6.312,9268.968021,0.0048,0.03216,0.00486 +2161,20.69574844,0,0,0,2.638408786,0.111309333,0.146019333,3.629920595,0,0,0.040686088,0.656642,0.00712,64.38930467,0,2913.983651,353.6149747,479.327963,0.71220915,0.012418246,0.005357519,469.5994873,346.3455767,183.7669627,5.428913373,0,72.39282547,0,0.606852374,7.507132779,75.76400986,121.9485522,20.65526906,16.32207353,6.241866667,9177.110962,0.004746667,0.031802667,0.004806 +2162,20.46321194,0,0,0,2.627337587,0.110058667,0.144378667,3.589134971,0,0,0.040228941,0.649264,0.00704,63.66582933,0,2881.242261,351.5079172,477.7325923,0.7042068,0.012278715,0.005297322,464.3230885,342.4540533,181.7021653,5.367914347,0,71.57942293,0,0.600033808,7.497426649,75.66956094,121.2704504,20.5011112,16.30107643,6.171733333,9085.253903,0.004693333,0.031445333,0.004752 +2163,20.23067544,0,0,0,2.616266387,0.108808,0.142738,3.548349346,0,0,0.039771794,0.641886,0.00696,62.942354,0,2848.500872,349.4008596,476.1372216,0.69620445,0.012139184,0.005237125,459.0466898,338.56253,179.637368,5.30691532,0,70.7660204,0,0.593215242,7.487720519,75.57511202,120.5923485,20.34695333,16.28007934,6.1016,8993.396844,0.00464,0.031088,0.004698 +2164,19.99813894,0,0,0,2.605195188,0.107557333,0.141097333,3.507563721,0,0,0.039314647,0.634508,0.00688,62.21887867,0,2815.759483,347.2938021,474.5418508,0.6882021,0.011999653,0.005176928,453.7702911,334.6710067,177.5725707,5.245916293,0,69.95261787,0,0.586396676,7.47801439,75.4806631,119.9142467,20.19279547,16.25908224,6.031466667,8901.539785,0.004586667,0.030730667,0.004644 +2165,19.76560245,0,0,0,2.594123989,0.106306667,0.139456667,3.466778097,0,0,0.0388575,0.62713,0.0068,61.49540333,0,2783.018093,345.1867446,472.9464801,0.68019975,0.011860123,0.005116731,448.4938923,330.7794833,175.5077733,5.184917267,0,69.13921533,0,0.57957811,7.46830826,75.38621418,119.2361449,20.03863761,16.23808514,5.961333333,8809.682726,0.004533333,0.030373333,0.00459 +2166,19.53306595,0,0,0,2.58305279,0.105056,0.137816,3.425992472,0,0,0.038400353,0.619752,0.00672,60.771928,0,2750.276704,343.079687,471.3511094,0.6721974,0.011720592,0.005056535,443.2174936,326.88796,173.442976,5.12391824,0,68.3258128,0,0.572759544,7.45860213,75.29176526,118.5580431,19.88447974,16.21708804,5.8912,8717.825667,0.00448,0.030016,0.004536 +2167,19.30052945,0,0,0,2.57198159,0.103805333,0.136175333,3.385206847,0,0,0.037943206,0.612374,0.00664,60.04845267,0,2717.535315,340.9726295,469.7557386,0.66419505,0.011581061,0.004996338,437.9410949,322.9964367,171.3781787,5.062919213,0,67.51241027,0,0.565940978,7.448896,75.19731634,117.8799413,19.73032188,16.19609094,5.821066667,8625.968608,0.004426667,0.029658667,0.004482 +2168,19.06799295,0,0,0,2.560910391,0.102554667,0.134534667,3.344421223,0,0,0.037486059,0.604996,0.00656,59.32497733,0,2684.793925,338.8655719,468.1603679,0.6561927,0.01144153,0.004936141,432.6646961,319.1049133,169.3133813,5.001920187,0,66.69900773,0,0.559122412,7.439189871,75.10286742,117.2018395,19.57616402,16.17509384,5.750933333,8534.111549,0.004373333,0.029301333,0.004428 +2169,18.83545645,0,0,0,2.549839192,0.101304,0.132894,3.303635598,0,0,0.037028912,0.597618,0.00648,58.601502,0,2652.052536,336.7585144,466.5649972,0.64819035,0.011301999,0.004875944,427.3882974,315.21339,167.248584,4.94092116,0,65.8856052,0,0.552303846,7.429483741,75.0084185,116.5237377,19.42200615,16.15409674,5.6808,8442.25449,0.00432,0.028944,0.004374 +2170,18.60291995,0,0,0,2.538767992,0.100053333,0.131253333,3.262849973,0,0,0.036571765,0.59024,0.0064,57.87802667,0,2619.311147,334.6514568,464.9696264,0.640188,0.011162468,0.004815747,422.1118987,311.3218667,165.1837867,4.879922133,0,65.07220267,0,0.54548528,7.419777611,74.91396959,115.8456358,19.26784829,16.13309964,5.610666667,8350.397431,0.004266667,0.028586667,0.00432 +2171,18.37038345,0,0,0,2.527696793,0.098802667,0.129612667,3.222064349,0,0,0.036114618,0.582862,0.00632,57.15455133,0,2586.569757,332.5443993,463.3742557,0.63218565,0.011022937,0.00475555,416.8354999,307.4303433,163.1189893,4.818923107,0,64.25880013,0,0.538666714,7.410071481,74.81952067,115.167534,19.11369043,16.11210254,5.540533333,8258.540372,0.004213333,0.028229333,0.004266 +2172,18.13784695,0,0,0,2.516625594,0.097552,0.127972,3.181278724,0,0,0.035657471,0.575484,0.00624,56.431076,0,2553.828368,330.4373417,461.778885,0.6241833,0.010883407,0.004695354,411.5591012,303.53882,161.054192,4.75792408,0,63.4453976,0,0.531848148,7.400365352,74.72507175,114.4894322,18.95953256,16.09110545,5.4704,8166.683313,0.00416,0.027872,0.004212 +2173,17.90531045,0,0,0,2.505554394,0.096301333,0.126331333,3.140493099,0,0,0.035200324,0.568106,0.00616,55.70760067,0,2521.086979,328.3302842,460.1835142,0.61618095,0.010743876,0.004635157,406.2827025,299.6472967,158.9893947,4.696925053,0,62.63199507,0,0.525029582,7.390659222,74.63062283,113.8113304,18.8053747,16.07010835,5.400266667,8074.826254,0.004106667,0.027514667,0.004158 +2174,17.67277395,0,0,0,2.494483195,0.095050667,0.124690667,3.099707475,0,0,0.034743177,0.560728,0.00608,54.98412533,0,2488.345589,326.2232267,458.5881435,0.6081786,0.010604345,0.00457496,401.0063037,295.7557733,156.9245973,4.635926027,0,61.81859253,0,0.518211016,7.380953092,74.53617391,113.1332286,18.65121684,16.04911125,5.330133333,7982.969195,0.004053333,0.027157333,0.004104 +2175,17.44023745,0,0,0,2.483411996,0.0938,0.12305,3.05892185,0,0,0.03428603,0.55335,0.006,54.26065,0,2455.6042,324.1161691,456.9927727,0.60017625,0.010464814,0.004514763,395.729905,291.86425,154.8598,4.574927,0,61.00519,0,0.51139245,7.371246962,74.44172499,112.4551268,18.49705897,16.02811415,5.26,7891.112136,0.004,0.0268,0.00405 +2176,17.20770095,0,0,0,2.472340796,0.092549333,0.121409333,3.018136225,0,0,0.033828882,0.545972,0.00592,53.53717467,0,2422.862811,322.0091116,455.397402,0.5921739,0.010325283,0.004454566,390.4535063,287.9727267,152.7950027,4.513927973,0,60.19178747,0,0.504573884,7.361540833,74.34727607,111.7770249,18.34290111,16.00711705,5.189866667,7799.255077,0.003946667,0.026442667,0.003996 +2177,16.97516445,0,0,0,2.461269597,0.091298667,0.119768667,2.977350601,0,0,0.033371735,0.538594,0.00584,52.81369933,0,2390.121421,319.902054,453.8020313,0.58417155,0.010185752,0.004394369,385.1771075,284.0812033,150.7302053,4.452928947,0,59.37838493,0,0.497755318,7.351834703,74.25282715,111.0989231,18.18874325,15.98611995,5.119733333,7707.398018,0.003893333,0.026085333,0.003942 +2178,16.74262795,0,0,0,2.450198398,0.090048,0.118128,2.936564976,0,0,0.032914588,0.531216,0.00576,52.090224,0,2357.380032,317.7949965,452.2066605,0.5761692,0.010046221,0.004334172,379.9007088,280.18968,148.665408,4.39192992,0,58.5649824,0,0.490936752,7.342128573,74.15837823,110.4208213,18.03458539,15.96512285,5.0496,7615.540959,0.00384,0.025728,0.003888 +2179,16.51009145,0,0,0,2.439127198,0.088797333,0.116487333,2.895779351,0,0,0.032457441,0.523838,0.00568,51.36674867,0,2324.638643,315.6879389,450.6112898,0.56816685,0.009906691,0.004273976,374.6243101,276.2981567,146.6006107,4.330930893,0,57.75157987,0,0.484118186,7.332422443,74.06392931,109.7427195,17.88042752,15.94412575,4.979466667,7523.6839,0.003786667,0.025370667,0.003834 +2180,16.27755495,0,0,0,2.428055999,0.087546667,0.114846667,2.854993727,0,0,0.032000294,0.51646,0.0056,50.64327333,0,2291.897253,313.5808814,449.0159191,0.5601645,0.00976716,0.004213779,369.3479113,272.4066333,144.5358133,4.269931867,0,56.93817733,0,0.47729962,7.322716314,73.96948039,109.0646177,17.72626966,15.92312865,4.909333333,7431.82684,0.003733333,0.025013333,0.00378 +2181,16.04501846,0,0,0,2.4169848,0.086296,0.113206,2.814208102,0,0,0.031543147,0.509082,0.00552,49.919798,0,2259.155864,311.4738239,447.4205483,0.55216215,0.009627629,0.004153582,364.0715126,268.51511,142.471016,4.20893284,0,56.1247748,0,0.470481054,7.313010184,73.87503148,108.3865159,17.5721118,15.90213156,4.8392,7339.969781,0.00368,0.024656,0.003726 +2182,15.81248196,0,0,0,2.4059136,0.085045333,0.111565333,2.773422477,0,0,0.031086,0.501704,0.00544,49.19632267,0,2226.414475,309.3667663,445.8251776,0.5441598,0.009488098,0.004093385,358.7951139,264.6235867,140.4062187,4.147933813,0,55.31137227,0,0.463662488,7.303304054,73.78058256,107.7084141,17.41795393,15.88113446,4.769066667,7248.112722,0.003626667,0.024298667,0.003672 +2183,15.57994546,0,0,0,2.394842401,0.083794667,0.109924667,2.732636853,0,0,0.030628853,0.494326,0.00536,48.47284733,0,2193.673085,307.2597088,444.2298069,0.53615745,0.009348567,0.004033188,353.5187151,260.7320633,138.3414213,4.086934787,0,54.49796973,0,0.456843922,7.293597925,73.68613364,107.0303122,17.26379607,15.86013736,4.698933333,7156.255663,0.003573333,0.023941333,0.003618 +2184,15.34740896,0,0,0,2.383771202,0.082544,0.108284,2.691851228,0,0,0.030171706,0.486948,0.00528,47.749372,0,2160.931696,305.1526512,442.6344361,0.5281551,0.009209036,0.003972991,348.2423164,256.84054,136.276624,4.02593576,0,53.6845672,0,0.450025356,7.283891795,73.59168472,106.3522104,17.10963821,15.83914026,4.6288,7064.398604,0.00352,0.023584,0.003564 +2185,15.11487246,0,0,0,2.372700002,0.081293333,0.106643333,2.651065603,0,0,0.029714559,0.47957,0.0052,47.02589667,0,2128.190307,303.0455937,441.0390654,0.52015275,0.009069505,0.003912795,342.9659177,252.9490167,134.2118267,3.964936733,0,52.87116467,0,0.44320679,7.274185665,73.4972358,105.6741086,16.95548034,15.81814316,4.558666667,6972.541545,0.003466667,0.023226667,0.00351 +2186,14.88233596,0,0,0,2.361628803,0.080042667,0.105002667,2.610279979,0,0,0.029257412,0.472192,0.00512,46.30242133,0,2095.448917,300.9385361,439.4436947,0.5121504,0.008929975,0.003852598,337.6895189,249.0574933,132.1470293,3.903937707,0,52.05776213,0,0.436388224,7.264479535,73.40278688,104.9960068,16.80132248,15.79714606,4.488533333,6880.684486,0.003413333,0.022869333,0.003456 +2187,14.64979946,0,0,0,2.350557604,0.078792,0.103362,2.569494354,0,0,0.028800265,0.464814,0.00504,45.578946,0,2062.707528,298.8314786,437.8483239,0.50414805,0.008790444,0.003792401,332.4131202,245.16597,130.082232,3.84293868,0,51.2443596,0,0.429569658,7.254773406,73.30833796,104.317905,16.64716462,15.77614896,4.4184,6788.827427,0.00336,0.022512,0.003402 +2188,14.41726296,0,0,0,2.339486404,0.077541333,0.101721333,2.528708729,0,0,0.028343118,0.457436,0.00496,44.85547067,0,2029.966139,296.724421,436.2529532,0.4961457,0.008650913,0.003732204,327.1367215,241.2744467,128.0174347,3.781939653,0,50.43095707,0,0.422751092,7.245067276,73.21388904,103.6398032,16.49300675,15.75515186,4.348266667,6696.970368,0.003306667,0.022154667,0.003348 +2189,14.18472646,0,0,0,2.328415205,0.076290667,0.100080667,2.487923105,0,0,0.027885971,0.450058,0.00488,44.13199533,0,1997.224749,294.6173635,434.6575825,0.48814335,0.008511382,0.003672007,321.8603227,237.3829233,125.9526373,3.720940627,0,49.61755453,0,0.415932526,7.235361146,73.11944012,102.9617013,16.33884889,15.73415476,4.278133333,6605.113309,0.003253333,0.021797333,0.003294 +2190,13.95218996,0,0,0,2.317344006,0.07504,0.09844,2.44713748,0,0,0.027428824,0.44268,0.0048,43.40852,0,1964.48336,292.510306,433.0622117,0.480141,0.008371851,0.00361181,316.583924,233.4914,123.88784,3.6599416,0,48.804152,0,0.40911396,7.225655016,73.0249912,102.2835995,16.18469103,15.71315767,4.208,6513.25625,0.0032,0.02144,0.00324 +2191,13.71965346,0,0,0,2.306272806,0.073789333,0.096799333,2.406351855,0,0,0.026971677,0.435302,0.00472,42.68504467,0,1931.741971,290.4032484,431.466841,0.47213865,0.00823232,0.003551614,311.3075253,229.5998767,121.8230427,3.598942573,0,47.99074947,0,0.402295394,7.215948887,72.93054229,101.6054977,16.03053316,15.69216057,4.137866667,6421.399191,0.003146667,0.021082667,0.003186 +2192,13.48711696,0,0,0,2.295201607,0.072538667,0.095158667,2.365566231,0,0,0.026514529,0.427924,0.00464,41.96156933,0,1899.000581,288.2961909,429.8714702,0.4641363,0.008092789,0.003491417,306.0311265,225.7083533,119.7582453,3.537943547,0,47.17734693,0,0.395476828,7.206242757,72.83609337,100.9273959,15.8763753,15.67116347,4.067733333,6329.542132,0.003093333,0.020725333,0.003132 +2193,13.25458046,0,0,0,2.284130408,0.071288,0.093518,2.324780606,0,0,0.026057382,0.420546,0.00456,41.238094,0,1866.259192,286.1891333,428.2760995,0.45613395,0.007953259,0.00343122,300.7547278,221.81683,117.693448,3.47694452,0,46.3639444,0,0.388658262,7.196536627,72.74164445,100.2492941,15.72221744,15.65016637,3.9976,6237.685073,0.00304,0.020368,0.003078 +2194,13.02204396,0,0,0,2.273059208,0.070037333,0.091877333,2.283994981,0,0,0.025600235,0.413168,0.00448,40.51461867,0,1833.517803,284.0820758,426.6807288,0.4481316,0.007813728,0.003371023,295.4783291,217.9253067,115.6286507,3.415945493,0,45.55054187,0,0.381839696,7.186830497,72.64719553,99.57119226,15.56805957,15.62916927,3.927466667,6145.828014,0.002986667,0.020010667,0.003024 +2195,12.78950746,0,0,0,2.261988009,0.068786667,0.090236667,2.243209357,0,0,0.025143088,0.40579,0.0044,39.79114333,0,1800.776413,281.9750182,425.085358,0.44012925,0.007674197,0.003310826,290.2019303,214.0337833,113.5638533,3.354946467,0,44.73713933,0,0.37502113,7.177124368,72.55274661,98.89309045,15.41390171,15.60817217,3.857333333,6053.970955,0.002933333,0.019653333,0.00297 +2196,12.55697097,0,0,0,2.25091681,0.067536,0.088596,2.202423732,0,0,0.024685941,0.398412,0.00432,39.067668,0,1768.035024,279.8679607,423.4899873,0.4321269,0.007534666,0.003250629,284.9255316,210.14226,111.499056,3.29394744,0,43.9237368,0,0.368202564,7.167418238,72.45829769,98.21498863,15.25974385,15.58717507,3.7872,5962.113896,0.00288,0.019296,0.002916 +2197,12.32443447,0,0,0,2.23984561,0.066285333,0.086955333,2.161638107,0,0,0.024228794,0.391034,0.00424,38.34419267,0,1735.293635,277.7609031,421.8946166,0.42412455,0.007395135,0.003190433,279.6491329,206.2507367,109.4342587,3.232948413,0,43.11033427,0,0.361383998,7.157712108,72.36384877,97.53688682,15.10558598,15.56617797,3.717066667,5870.256837,0.002826667,0.018938667,0.002862 +2198,12.09189797,0,0,0,2.228774411,0.065034667,0.085314667,2.120852483,0,0,0.023771647,0.383656,0.00416,37.62071733,0,1702.552245,275.6538456,420.2992458,0.4161222,0.007255604,0.003130236,274.3727341,202.3592133,107.3694613,3.171949387,0,42.29693173,0,0.354565432,7.148005979,72.26939985,96.858785,14.95142812,15.54518088,3.646933333,5778.399778,0.002773333,0.018581333,0.002808 +2199,11.85936147,0,0,0,2.217703212,0.063784,0.083674,2.080066858,0,0,0.0233145,0.376278,0.00408,36.897242,0,1669.810856,273.5467881,418.7038751,0.40811985,0.007116074,0.003070039,269.0963354,198.46769,105.304664,3.11095036,0,41.4835292,0,0.347746866,7.138299849,72.17495093,96.18068318,14.79727026,15.52418378,3.5768,5686.542719,0.00272,0.018224,0.002754 +2200,11.62682497,0,0,0,2.206632012,0.062533333,0.082033333,2.039281233,0,0,0.022857353,0.3689,0.004,36.17376667,0,1637.069467,271.4397305,417.1085044,0.4001175,0.006976543,0.003009842,263.8199367,194.5761667,103.2398667,3.049951333,0,40.67012667,0,0.3409283,7.128593719,72.08050201,95.50258137,14.64311239,15.50318668,3.506666667,5594.68566,0.002666667,0.017866667,0.0027 +2201,11.39428847,0,0,0,2.195560813,0.061282667,0.080392667,1.998495609,0,0,0.022400206,0.361522,0.00392,35.45029133,0,1604.328077,269.332673,415.5131336,0.39211515,0.006837012,0.002949645,258.5435379,190.6846433,101.1750693,2.988952307,0,39.85672413,0,0.334109734,7.118887589,71.98605309,94.82447955,14.48895453,15.48218958,3.436533333,5502.828601,0.002613333,0.017509333,0.002646 +2202,11.16175197,0,0,0,2.184489614,0.060032,0.078752,1.957709984,0,0,0.021943059,0.354144,0.00384,34.726816,0,1571.586688,267.2256154,413.9177629,0.3841128,0.006697481,0.002889448,253.2671392,186.79312,99.110272,2.92795328,0,39.0433216,0,0.327291168,7.10918146,71.89160418,94.14637774,14.33479667,15.46119248,3.3664,5410.971542,0.00256,0.017152,0.002592 +2203,10.92921547,0,0,0,2.173418415,0.058781333,0.077111333,1.916924359,0,0,0.021485912,0.346766,0.00376,34.00334067,0,1538.845299,265.1185579,412.3223922,0.37611045,0.00655795,0.002829251,247.9907405,182.9015967,97.04547467,2.866954253,0,38.22991907,0,0.320472602,7.09947533,71.79715526,93.46827592,14.1806388,15.44019538,3.296266667,5319.114483,0.002506667,0.016794667,0.002538 +2204,10.69667897,0,0,0,2.162347215,0.057530667,0.075470667,1.876138735,0,0,0.021028765,0.339388,0.00368,33.27986533,0,1506.103909,263.0115003,410.7270214,0.3681081,0.006418419,0.002769055,242.7143417,179.0100733,94.98067733,2.805955227,0,37.41651653,0,0.313654036,7.0897692,71.70270634,92.79017411,14.02648094,15.41919828,3.226133333,5227.257424,0.002453333,0.016437333,0.002484 +2205,10.46414247,0,0,0,2.151276016,0.05628,0.07383,1.83535311,0,0,0.020571618,0.33201,0.0036,32.55639,0,1473.36252,260.9044428,409.1316507,0.36010575,0.006278888,0.002708858,237.437943,175.11855,92.91588,2.7449562,0,36.603114,0,0.30683547,7.08006307,71.60825742,92.11207229,13.87232308,15.39820118,3.156,5135.400365,0.0024,0.01608,0.00243 +2206,10.23160597,0,0,0,2.140204817,0.055029333,0.072189333,1.794567485,0,0,0.020114471,0.324632,0.00352,31.83291467,0,1440.621131,258.7973852,407.53628,0.3521034,0.006139358,0.002648661,232.1615443,171.2270267,90.85108267,2.683957173,0,35.78971147,0,0.300016904,7.070356941,71.5138085,91.43397047,13.71816521,15.37720408,3.085866667,5043.543306,0.002346667,0.015722667,0.002376 +2207,9.999069472,0,0,0,2.129133617,0.053778667,0.070548667,1.753781861,0,0,0.019657324,0.317254,0.00344,31.10943933,0,1407.879741,256.6903277,405.9409092,0.34410105,0.005999827,0.002588464,226.8851455,167.3355033,88.78628533,2.622958147,0,34.97630893,0,0.293198338,7.060650811,71.41935958,90.75586866,13.56400735,15.35620699,3.015733333,4951.686247,0.002293333,0.015365333,0.002322 +2208,9.766532973,0,0,0,2.118062418,0.052528,0.068908,1.712996236,0,0,0.019200177,0.309876,0.00336,30.385964,0,1375.138352,254.5832702,404.3455385,0.3360987,0.005860296,0.002528267,221.6087468,163.44398,86.721488,2.56195912,0,34.1629064,0,0.286379772,7.050944681,71.32491066,90.07776684,13.40984949,15.33520989,2.9456,4859.829188,0.00224,0.015008,0.002268 +2209,9.533996474,0,0,0,2.106991219,0.051277333,0.067267333,1.672210611,0,0,0.018743029,0.302498,0.00328,29.66248867,0,1342.396963,252.4762126,402.7501677,0.32809635,0.005720765,0.00246807,216.3323481,159.5524567,84.65669067,2.500960093,0,33.34950387,0,0.279561206,7.041238551,71.23046174,89.39966503,13.25569162,15.31421279,2.875466667,4767.972129,0.002186667,0.014650667,0.002214 +2210,9.301459974,0,0,0,2.095920019,0.050026667,0.065626667,1.631424987,0,0,0.018285882,0.29512,0.0032,28.93901333,0,1309.655573,250.3691551,401.154797,0.320094,0.005581234,0.002407874,211.0559493,155.6609333,82.59189333,2.439961067,0,32.53610133,0,0.27274264,7.031532422,71.13601282,88.72156321,13.10153376,15.29321569,2.805333333,4676.115069,0.002133333,0.014293333,0.00216 +2211,9.068923475,0,0,0,2.08484882,0.048776,0.063986,1.590639362,0,0,0.017828735,0.287742,0.00312,28.215538,0,1276.914184,248.2620975,399.5594263,0.31209165,0.005441703,0.002347677,205.7795506,151.76941,80.527096,2.37896204,0,31.7226988,0,0.265924074,7.021826292,71.0415639,88.0434614,12.9473759,15.27221859,2.7352,4584.25801,0.00208,0.013936,0.002106 +2212,8.836386976,0,0,0,2.073777621,0.047525333,0.062345333,1.549853737,0,0,0.017371588,0.280364,0.00304,27.49206267,0,1244.172795,246.15504,397.9640555,0.3040893,0.005302172,0.00228748,200.5031519,147.8778867,78.46229867,2.317963013,0,30.90929627,0,0.259105508,7.012120162,70.94711498,87.36535958,12.79321803,15.25122149,2.665066667,4492.400951,0.002026667,0.013578667,0.002052 +2213,8.603850476,0,0,0,2.062706421,0.046274667,0.060704667,1.509068113,0,0,0.016914441,0.272986,0.00296,26.76858733,0,1211.431405,244.0479824,396.3686848,0.29608695,0.005162642,0.002227283,195.2267531,143.9863633,76.39750133,2.256963987,0,30.09589373,0,0.252286942,7.002414032,70.85266607,86.68725777,12.63906017,15.23022439,2.594933333,4400.543892,0.001973333,0.013221333,0.001998 +2214,8.371313977,0,0,0,2.051635222,0.045024,0.059064,1.468282488,0,0,0.016457294,0.265608,0.00288,26.045112,0,1178.690016,241.9409249,394.7733141,0.2880846,0.005023111,0.002167086,189.9503544,140.09484,74.332704,2.19596496,0,29.2824912,0,0.245468376,6.992707903,70.75821715,86.00915595,12.48490231,15.20922729,2.5248,4308.686833,0.00192,0.012864,0.001944 +2215,8.138777477,0,0,0,2.040564023,0.043773333,0.057423333,1.427496863,0,0,0.016000147,0.25823,0.0028,25.32163667,0,1145.948627,239.8338674,393.1779433,0.28008225,0.00488358,0.002106889,184.6739557,136.2033167,72.26790667,2.134965933,0,28.46908867,0,0.23864981,6.983001773,70.66376823,85.33105413,12.33074444,15.18823019,2.454666667,4216.829774,0.001866667,0.012506667,0.00189 +2216,7.906240978,0,0,0,2.029492823,0.042522667,0.055782667,1.386711239,0,0,0.015543,0.250852,0.00272,24.59816133,0,1113.207237,237.7268098,391.5825726,0.2720799,0.004744049,0.002046693,179.3975569,132.3117933,70.20310933,2.073966907,0,27.65568613,0,0.231831244,6.973295643,70.56931931,84.65295232,12.17658658,15.1672331,2.384533333,4124.972715,0.001813333,0.012149333,0.001836 +2217,7.673704479,0,0,0,2.018421624,0.041272,0.054142,1.345925614,0,0,0.015085853,0.243474,0.00264,23.874686,0,1080.465848,235.6197523,389.9872019,0.26407755,0.004604518,0.001986496,174.1211582,128.42027,68.138312,2.01296788,0,26.8422836,0,0.225012678,6.963589514,70.47487039,83.9748505,12.02242872,15.146236,2.3144,4033.115656,0.00176,0.011792,0.001782 +2218,7.441167979,0,0,0,2.007350425,0.040021333,0.052501333,1.305139989,0,0,0.014628706,0.236096,0.00256,23.15121067,0,1047.724459,233.5126947,388.3918311,0.2560752,0.004464987,0.001926299,168.8447595,124.5287467,66.07351467,1.951968853,0,26.02888107,0,0.218194112,6.953883384,70.38042147,83.29674869,11.86827085,15.1252389,2.244266667,3941.258597,0.001706667,0.011434667,0.001728 +2219,7.20863148,0,0,0,1.996279225,0.038770667,0.050860667,1.264354365,0,0,0.014171559,0.228718,0.00248,22.42773533,0,1014.983069,231.4056372,386.7964604,0.24807285,0.004325456,0.001866102,163.5683607,120.6372233,64.00871733,1.890969827,0,25.21547853,0,0.211375546,6.944177254,70.28597255,82.61864687,11.71411299,15.1042418,2.174133333,3849.401538,0.001653333,0.011077333,0.001674 +2220,6.976094981,0,0,0,1.985208026,0.03752,0.04922,1.22356874,0,0,0.013714412,0.22134,0.0024,21.70426,0,982.24168,229.2985796,385.2010897,0.2400705,0.004185926,0.001805905,158.291962,116.7457,61.94392,1.8299708,0,24.402076,0,0.20455698,6.934471124,70.19152363,81.94054506,11.55995513,15.0832447,2.104,3757.544479,0.0016,0.01072,0.00162 +2221,6.743558481,0,0,0,1.974136827,0.036269333,0.047579333,1.182783115,0,0,0.013257265,0.213962,0.00232,20.98078467,0,949.5002907,227.1915221,383.6057189,0.23206815,0.004046395,0.001745708,153.0155633,112.8541767,59.87912267,1.768971773,0,23.58867347,0,0.197738414,6.924764995,70.09707471,81.26244324,11.40579726,15.0622476,2.033866667,3665.68742,0.001546667,0.010362667,0.001566 +2222,6.511021982,0,0,0,1.963065627,0.035018667,0.045938667,1.141997491,0,0,0.012800118,0.206584,0.00224,20.25730933,0,916.7589013,225.0844645,382.0103482,0.2240658,0.003906864,0.001685512,147.7391645,108.9626533,57.81432533,1.707972747,0,22.77527093,0,0.190919848,6.915058865,70.00262579,80.58434142,11.2516394,15.0412505,1.963733333,3573.830361,0.001493333,0.010005333,0.001512 +2223,6.278485483,0,0,0,1.951994428,0.033768,0.044298,1.101211866,0,0,0.012342971,0.199206,0.00216,19.533834,0,884.017512,222.977407,380.4149775,0.21606345,0.003767333,0.001625315,142.4627658,105.07113,55.749528,1.64697372,0,21.9618684,0,0.184101282,6.905352735,69.90817687,79.90623961,11.09748154,15.0202534,1.8936,3481.973302,0.00144,0.009648,0.001458 +2224,6.045948983,0,0,0,1.940923229,0.032517333,0.042657333,1.060426241,0,0,0.011885824,0.191828,0.00208,18.81035867,0,851.2761227,220.8703495,378.8196067,0.2080611,0.003627802,0.001565118,137.1863671,101.1796067,53.68473067,1.585974693,0,21.14846587,0,0.177282716,6.895646605,69.81372796,79.22813779,10.94332367,14.9992563,1.823466667,3390.116243,0.001386667,0.009290667,0.001404 +2225,5.813412484,0,0,0,1.929852029,0.031266667,0.041016667,1.019640617,0,0,0.011428677,0.18445,0.002,18.08688333,0,818.5347333,218.7632919,377.224236,0.20005875,0.003488271,0.001504921,131.9099683,97.28808333,51.61993333,1.524975667,0,20.33506333,0,0.17046415,6.885940476,69.71927904,78.55003598,10.78916581,14.97825921,1.753333333,3298.259184,0.001333333,0.008933333,0.00135 +2226,5.580875985,0,0,0,1.91878083,0.030016,0.039376,0.978854992,0,0,0.010971529,0.177072,0.00192,17.363408,0,785.793344,216.6562344,375.6288652,0.1920564,0.00334874,0.001444724,126.6335696,93.39656,49.555136,1.46397664,0,19.5216608,0,0.163645584,6.876234346,69.62483012,77.87193416,10.63500795,14.95726211,1.6832,3206.402125,0.00128,0.008576,0.001296 +2227,5.348339485,0,0,0,1.907709631,0.028765333,0.037735333,0.938069367,0,0,0.010514382,0.169694,0.00184,16.63993267,0,753.0519547,214.5491768,374.0334945,0.18405405,0.00320921,0.001384527,121.3571709,89.50503667,47.49033867,1.402977613,0,18.70825827,0,0.156827018,6.866528216,69.5303812,77.19383235,10.48085008,14.93626501,1.613066667,3114.545066,0.001226667,0.008218667,0.001242 +2228,5.115802986,0,0,0,1.896638431,0.027514667,0.036094667,0.897283743,0,0,0.010057235,0.162316,0.00176,15.91645733,0,720.3105653,212.4421193,372.4381238,0.1760517,0.003069679,0.00132433,116.0807721,85.61351333,45.42554133,1.341978587,0,17.89485573,0,0.150008452,6.856822086,69.43593228,76.51573053,10.32669222,14.91526791,1.542933333,3022.688007,0.001173333,0.007861333,0.001188 +2229,4.883266486,0,0,0,1.885567232,0.026264,0.034454,0.856498118,0,0,0.009600088,0.154938,0.00168,15.192982,0,687.569176,210.3350617,370.842753,0.16804935,0.002930148,0.001264134,110.8043734,81.72199,43.360744,1.28097956,0,17.0814532,0,0.143189886,6.847115957,69.34148336,75.83762871,10.17253436,14.89427081,1.4728,2930.830948,0.00112,0.007504,0.001134 +2230,4.650729987,0,0,0,1.874496033,0.025013333,0.032813333,0.815712493,0,0,0.009142941,0.14756,0.0016,14.46950667,0,654.8277867,208.2280042,369.2473823,0.160047,0.002790617,0.001203937,105.5279747,77.83046667,41.29594667,1.219980533,0,16.26805067,0,0.13637132,6.837409827,69.24703444,75.1595269,10.01837649,14.87327371,1.402666667,2838.973889,0.001066667,0.007146667,0.00108 +2231,4.418193488,0,0,0,1.863424833,0.023762667,0.031172667,0.774926869,0,0,0.008685794,0.140182,0.00152,13.74603133,0,622.0863973,206.1209466,367.6520116,0.15204465,0.002651086,0.00114374,100.2515759,73.93894333,39.23114933,1.158981507,0,15.45464813,0,0.129552754,6.827703697,69.15258552,74.48142508,9.86421863,14.85227661,1.332533333,2747.11683,0.001013333,0.006789333,0.001026 +2232,4.185656988,0,0,0,1.852353634,0.022512,0.029532,0.734141244,0,0,0.008228647,0.132804,0.00144,13.022556,0,589.345008,204.0138891,366.0566408,0.1440423,0.002511555,0.001083543,94.9751772,70.04742,37.166352,1.09798248,0,14.6412456,0,0.122734188,6.817997568,69.0581366,73.80332327,9.710060767,14.83127951,1.2624,2655.259771,9.60E-04,0.006432,9.72E-04 +2233,3.953120489,0,0,0,1.841282435,0.021261333,0.027891333,0.693355619,0,0,0.0077715,0.125426,0.00136,12.29908067,0,556.6036187,201.9068316,364.4612701,0.13603995,0.002372025,0.001023346,89.69877847,66.15589667,35.10155467,1.036983453,0,13.82784307,0,0.115915622,6.808291438,68.96368768,73.12522145,9.555902903,14.81028242,1.192266667,2563.402712,9.07E-04,0.006074667,9.18E-04 +2234,3.72058399,0,0,0,1.830211235,0.020010667,0.026250667,0.652569995,0,0,0.007314353,0.118048,0.00128,11.57560533,0,523.8622293,199.799774,362.8658994,0.1280376,0.002232494,9.63E-04,84.42237973,62.26437333,33.03675733,0.975984427,0,13.01444053,0,0.109097056,6.798585308,68.86923876,72.44711964,9.40174504,14.78928532,1.122133333,2471.545653,8.53E-04,0.005717333,8.64E-04 +2235,3.48804749,0,0,0,1.819140036,0.01876,0.02461,0.61178437,0,0,0.006857206,0.11067,0.0012,10.85213,0,491.12084,197.6927165,361.2705286,0.12003525,0.002092963,9.03E-04,79.145981,58.37285,30.97196,0.9149854,0,12.201038,0,0.10227849,6.788879178,68.77478985,71.76901782,9.247587177,14.76828822,1.052,2379.688594,8.00E-04,0.00536,8.10E-04 +2236,3.255510991,0,0,0,1.808068837,0.017509333,0.022969333,0.570998745,0,0,0.006400059,0.103292,0.00112,10.12865467,0,458.3794507,195.5856589,359.6751579,0.1120329,0.001953432,8.43E-04,73.86958227,54.48132667,28.90716267,0.853986373,0,11.38763547,0,0.095459924,6.779173049,68.68034093,71.09091601,9.093429313,14.74729112,0.981866667,2287.831535,7.47E-04,0.005002667,7.56E-04 +2237,3.022974492,0,0,0,1.796997637,0.016258667,0.021328667,0.530213121,0,0,0.005942912,0.095914,0.00104,9.405179333,0,425.6380613,193.4786014,358.0797872,0.10403055,0.001813901,7.83E-04,68.59318353,50.58980333,26.84236533,0.792987347,0,10.57423293,0,0.088641358,6.769466919,68.58589201,70.41281419,8.93927145,14.72629402,0.911733333,2195.974476,6.93E-04,0.004645333,7.02E-04 +2238,2.790437992,0,0,0,1.785926438,0.015008,0.019688,0.489427496,0,0,0.005485765,0.088536,9.60E-04,8.681704,0,392.896672,191.3715438,356.4844164,0.0960282,0.00167437,7.22E-04,63.3167848,46.69828,24.777568,0.73198832,0,9.7608304,0,0.081822792,6.759760789,68.49144309,69.73471237,8.785113587,14.70529692,0.8416,2104.117417,6.40E-04,0.004288,6.48E-04 +2239,2.557901493,0,0,0,1.774855239,0.013757333,0.018047333,0.448641871,0,0,0.005028618,0.081158,8.80E-04,7.958228667,0,360.1552827,189.2644863,354.8890457,0.08802585,0.001534839,6.62E-04,58.04038607,42.80675667,22.71277067,0.670989293,0,8.947427867,0,0.075004226,6.750054659,68.39699417,69.05661056,8.630955724,14.68429982,0.771466667,2012.260358,5.87E-04,0.003930667,5.94E-04 +2240,2.325364994,0,0,0,1.763784039,0.012506667,0.016406667,0.407856247,0,0,0.004571471,0.07378,8.00E-04,7.234753333,0,327.4138933,187.1574287,353.293675,0.0800235,0.001395309,6.02E-04,52.76398733,38.91523333,20.64797333,0.609990267,0,8.134025333,0,0.06818566,6.74034853,68.30254525,68.37850874,8.47679786,14.66330272,0.701333333,1920.403299,5.33E-04,0.003573333,5.40E-04 +2241,2.092828494,0,0,0,1.75271284,0.011256,0.014766,0.367070622,0,0,0.004114324,0.066402,7.20E-04,6.511278,0,294.672504,185.0503712,351.6983042,0.07202115,0.001255778,5.42E-04,47.4875886,35.02371,18.583176,0.54899124,0,7.3206228,0,0.061367094,6.7306424,68.20809633,67.70040693,8.322639997,14.64230562,0.6312,1828.546239,4.80E-04,0.003216,4.86E-04 +2242,1.860291995,0,0,0,1.741641641,0.010005333,0.013125333,0.326284997,0,0,0.003657176,0.059024,6.40E-04,5.787802667,0,261.9311147,182.9433137,350.1029335,0.0640188,0.001116247,4.82E-04,42.21118987,31.13218667,16.51837867,0.487992213,0,6.507220267,0,0.054548528,6.72093627,68.11364741,67.02230511,8.168482134,14.62130853,0.561066667,1736.68918,4.27E-04,0.002858667,4.32E-04 +2243,1.627755495,0,0,0,1.730570442,0.008754667,0.011484667,0.285499373,0,0,0.003200029,0.051646,5.60E-04,5.064327333,0,229.1897253,180.8362561,348.5075627,0.05601645,9.77E-04,4.21E-04,36.93479113,27.24066333,14.45358133,0.426993187,0,5.693817733,0,0.047729962,6.71123014,68.01919849,66.3442033,8.01432427,14.60031143,0.490933333,1644.832121,3.73E-04,0.002501333,3.78E-04 +2244,1.395218996,0,0,0,1.719499242,0.007504,0.009844,0.244713748,0,0,0.002742882,0.044268,4.80E-04,4.340852,0,196.448336,178.7291986,346.912192,0.0480141,8.37E-04,3.61E-04,31.6583924,23.34914,12.388784,0.36599416,0,4.8804152,0,0.040911396,6.701524011,67.92474957,65.66610148,7.860166407,14.57931433,0.4208,1552.975062,3.20E-04,0.002144,3.24E-04 +2245,1.162682497,0,0,0,1.708428043,0.006253333,0.008203333,0.203928123,0,0,0.002285735,0.03689,4.00E-04,3.617376667,0,163.7069467,176.622141,345.3168213,0.04001175,6.98E-04,3.01E-04,26.38199367,19.45761667,10.32398667,0.304995133,0,4.067012667,0,0.03409283,6.691817881,67.83030065,64.98799966,7.706008544,14.55831723,0.350666667,1461.118003,2.67E-04,0.001786667,2.70E-04 +2246,0.930145997,0,0,0,1.697356844,0.005002667,0.006562667,0.163142499,0,0,0.001828588,0.029512,3.20E-04,2.893901333,0,130.9655573,174.5150835,343.7214505,0.0320094,5.58E-04,2.41E-04,21.10559493,15.56609333,8.259189333,0.243996107,0,3.253610133,0,0.027274264,6.682111751,67.73585174,64.30989785,7.55185068,14.53732013,0.280533333,1369.260944,2.13E-04,0.001429333,2.16E-04 +2247,0.697609498,0,0,0,1.686285644,0.003752,0.004922,0.122356874,0,0,0.001371441,0.022134,2.40E-04,2.170426,0,98.224168,172.4080259,342.1260798,0.02400705,4.19E-04,1.81E-04,15.8291962,11.67457,6.194392,0.18299708,0,2.4402076,0,0.020455698,6.672405621,67.64140282,63.63179603,7.397692817,14.51632303,0.2104,1277.403885,1.60E-04,0.001072,1.62E-04 +2248,0.465072999,0,0,0,1.675214445,0.002501333,0.003281333,0.081571249,0,0,9.14E-04,0.014756,1.60E-04,1.446950667,0,65.48277867,170.3009684,340.5307091,0.0160047,2.79E-04,1.20E-04,10.55279747,7.783046667,4.129594667,0.121998053,0,1.626805067,0,0.013637132,6.662699492,67.5469539,62.95369422,7.243534954,14.49532593,0.140266667,1185.546826,1.07E-04,7.15E-04,1.08E-04 +2249,0.232536499,0,0,0,1.664143246,0.001250667,0.001640667,0.040785625,0,0,4.57E-04,0.007378,8.00E-05,0.723475333,0,32.74138933,168.1939109,338.9353383,0.00800235,1.40E-04,6.02E-05,5.276398733,3.891523333,2.064797333,0.060999027,0,0.813402533,0,0.006818566,6.652993362,67.45250498,62.2755924,7.089377091,14.47432883,0.070133333,1093.689767,5.33E-05,3.57E-04,5.40E-05 +2250,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2251,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2252,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2253,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2254,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2255,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2256,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2257,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2258,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2259,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2260,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2261,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2262,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2263,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2264,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2265,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2266,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2267,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2268,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2269,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2270,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2271,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2272,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2273,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2274,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2275,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2276,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2277,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2278,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2279,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2280,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2281,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2282,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2283,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2284,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2285,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2286,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2287,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2288,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2289,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2290,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2291,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2292,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2293,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2294,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2295,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2296,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2297,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2298,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2299,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 +2300,0,0,0,0,1.653072046,0,0,0,0,0,0,0,0,0,0,0,166.0868533,337.3399676,0,0,0,0,0,0,0,0,0,0,0,6.643287232,67.35805606,61.59749059,6.935219227,14.45333173,0,1001.832708,0,0,0 diff --git a/inst/shinyApp/www/maps/pr_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index 92ad388..0000000 Binary files a/inst/shinyApp/www/maps/pr_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/pr_Amon_CanESM2_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_CanESM2_rcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index 94fb348..0000000 Binary files a/inst/shinyApp/www/maps/pr_Amon_CanESM2_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/pr_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index 6b21683..0000000 Binary files a/inst/shinyApp/www/maps/pr_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/pr_Amon_MIROC-ESM_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_MIROC-ESM_rcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index 96eff56..0000000 Binary files a/inst/shinyApp/www/maps/pr_Amon_MIROC-ESM_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/pr_Amon_MPI-ESM-LR_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_MPI-ESM-LR_rcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index 9a69fd4..0000000 Binary files a/inst/shinyApp/www/maps/pr_Amon_MPI-ESM-LR_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/pr_Amon_MRI-ESM1_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/pr_Amon_MRI-ESM1_rcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index 3861763..0000000 Binary files a/inst/shinyApp/www/maps/pr_Amon_MRI-ESM1_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/tas_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index 8b280ae..0000000 Binary files a/inst/shinyApp/www/maps/tas_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/tas_Amon_CanESM2_esmrcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_CanESM2_esmrcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index ee5ff13..0000000 Binary files a/inst/shinyApp/www/maps/tas_Amon_CanESM2_esmrcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/tas_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index c6ccf1f..0000000 Binary files a/inst/shinyApp/www/maps/tas_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/tas_Amon_MIROC-ESM_esmrcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_MIROC-ESM_esmrcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index 694732f..0000000 Binary files a/inst/shinyApp/www/maps/tas_Amon_MIROC-ESM_esmrcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/tas_Amon_MPI-ESM-LR_esmrcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_MPI-ESM-LR_esmrcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index 2b673b0..0000000 Binary files a/inst/shinyApp/www/maps/tas_Amon_MPI-ESM-LR_esmrcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/inst/shinyApp/www/maps/tas_Amon_MRI-ESM1_esmrcp85_r1i1p1_200601-210012_pattern.rds b/inst/shinyApp/www/maps/tas_Amon_MRI-ESM1_esmrcp85_r1i1p1_200601-210012_pattern.rds deleted file mode 100644 index c6ccf1f..0000000 Binary files a/inst/shinyApp/www/maps/tas_Amon_MRI-ESM1_esmrcp85_r1i1p1_200601-210012_pattern.rds and /dev/null differ diff --git a/man/get_globalCapabilities.Rd b/man/get_globalCapabilities.Rd deleted file mode 100644 index 19c53b1..0000000 --- a/man/get_globalCapabilities.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalCapabilities} -\alias{get_globalCapabilities} -\title{Create master list of variable lookups for "capabilities" (output variables for graphing)} -\usage{ -get_globalCapabilities() -} -\description{ -Create master list of variable lookups for "capabilities" (output variables for graphing) -} diff --git a/man/get_globalColorScales.Rd b/man/get_globalColorScales.Rd deleted file mode 100644 index 5a30079..0000000 --- a/man/get_globalColorScales.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalColorScales} -\alias{get_globalColorScales} -\title{Global vars for scale colors} -\usage{ -get_globalColorScales() -} -\description{ -Global vars for scale colors -} diff --git a/man/get_globalParameters.Rd b/man/get_globalParameters.Rd deleted file mode 100644 index 22e1c90..0000000 --- a/man/get_globalParameters.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalParameters} -\alias{get_globalParameters} -\title{Create master list of parameter lookup strings} -\usage{ -get_globalParameters() -} -\description{ -Create master list of parameter lookup strings -} diff --git a/man/get_globalParamsCESM1BGC.Rd b/man/get_globalParamsCESM1BGC.Rd deleted file mode 100644 index cf6d4ed..0000000 --- a/man/get_globalParamsCESM1BGC.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalParamsCESM1BGC} -\alias{get_globalParamsCESM1BGC} -\title{CESM1-BGC Parameter Set} -\usage{ -get_globalParamsCESM1BGC() -} -\description{ -CESM1-BGC Parameter Set -} diff --git a/man/get_globalParamsCanESM2.Rd b/man/get_globalParamsCanESM2.Rd deleted file mode 100644 index 5940a14..0000000 --- a/man/get_globalParamsCanESM2.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalParamsCanESM2} -\alias{get_globalParamsCanESM2} -\title{CanESM2 Parameter Sets} -\usage{ -get_globalParamsCanESM2() -} -\description{ -CanESM2 Parameter Sets -} diff --git a/man/get_globalParamsDefault.Rd b/man/get_globalParamsDefault.Rd deleted file mode 100644 index 9a32d3b..0000000 --- a/man/get_globalParamsDefault.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalParamsDefault} -\alias{get_globalParamsDefault} -\title{Default Hector parameters} -\usage{ -get_globalParamsDefault() -} -\description{ -Default Hector parameters -} diff --git a/man/get_globalParamsGFDLESM2G.Rd b/man/get_globalParamsGFDLESM2G.Rd deleted file mode 100644 index f4862e8..0000000 --- a/man/get_globalParamsGFDLESM2G.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalParamsGFDLESM2G} -\alias{get_globalParamsGFDLESM2G} -\title{GFDL-ESM2G Parameter Set} -\usage{ -get_globalParamsGFDLESM2G() -} -\description{ -GFDL-ESM2G Parameter Set -} diff --git a/man/get_globalParamsMIROCESM.Rd b/man/get_globalParamsMIROCESM.Rd deleted file mode 100644 index 6128073..0000000 --- a/man/get_globalParamsMIROCESM.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalParamsMIROCESM} -\alias{get_globalParamsMIROCESM} -\title{MIROC-ESM Parameter Set} -\usage{ -get_globalParamsMIROCESM() -} -\description{ -MIROC-ESM Parameter Set -} diff --git a/man/get_globalParamsMPIESMLR.Rd b/man/get_globalParamsMPIESMLR.Rd deleted file mode 100644 index 607e9bd..0000000 --- a/man/get_globalParamsMPIESMLR.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalParamsMPIESMLR} -\alias{get_globalParamsMPIESMLR} -\title{MPI-ESM-LR Parameter Set} -\usage{ -get_globalParamsMPIESMLR() -} -\description{ -MPI-ESM-LR Parameter Set -} diff --git a/man/get_globalParamsMRIESM1.Rd b/man/get_globalParamsMRIESM1.Rd deleted file mode 100644 index a3fc540..0000000 --- a/man/get_globalParamsMRIESM1.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalParamsMRIESM1} -\alias{get_globalParamsMRIESM1} -\title{MRI-ESM1 Parameter Set} -\usage{ -get_globalParamsMRIESM1() -} -\description{ -MRI-ESM1 Parameter Set -} diff --git a/man/get_globalPrecipPatterns.Rd b/man/get_globalPrecipPatterns.Rd deleted file mode 100644 index d6ca541..0000000 --- a/man/get_globalPrecipPatterns.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalPrecipPatterns} -\alias{get_globalPrecipPatterns} -\title{Global precipitation patterns list} -\usage{ -get_globalPrecipPatterns() -} -\description{ -Global precipitation patterns list -} diff --git a/man/get_globalScenarioColors.Rd b/man/get_globalScenarioColors.Rd deleted file mode 100644 index 43695e4..0000000 --- a/man/get_globalScenarioColors.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalScenarioColors} -\alias{get_globalScenarioColors} -\title{Global scenario color schemes} -\usage{ -get_globalScenarioColors() -} -\description{ -Global scenario color schemes -} diff --git a/man/get_globalScenarios.Rd b/man/get_globalScenarios.Rd deleted file mode 100644 index fbfb6da..0000000 --- a/man/get_globalScenarios.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalScenarios} -\alias{get_globalScenarios} -\title{Global file paths vector} -\usage{ -get_globalScenarios() -} -\description{ -Global file paths vector -} diff --git a/man/get_globalTempPatterns.Rd b/man/get_globalTempPatterns.Rd deleted file mode 100644 index 8b7f8da..0000000 --- a/man/get_globalTempPatterns.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalTempPatterns} -\alias{get_globalTempPatterns} -\title{Global temperature patterns} -\usage{ -get_globalTempPatterns() -} -\description{ -Global temperature patterns -} diff --git a/man/get_globalVars.Rd b/man/get_globalVars.Rd deleted file mode 100644 index dcf5659..0000000 --- a/man/get_globalVars.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_globalVars} -\alias{get_globalVars} -\title{Global vars for misc items such as the run date end year (2100)} -\usage{ -get_globalVars() -} -\description{ -Global vars for misc items such as the run date end year (2100) -} diff --git a/man/get_rcps.Rd b/man/get_rcps.Rd deleted file mode 100644 index fe4d875..0000000 --- a/man/get_rcps.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/set_globals.R -\name{get_rcps} -\alias{get_rcps} -\title{RCP list by number} -\usage{ -get_rcps() -} -\description{ -RCP list by number -} diff --git a/man/get_scenarios.Rd b/man/get_scenarios.Rd new file mode 100644 index 0000000..37f6460 --- /dev/null +++ b/man/get_scenarios.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/set_globals.R +\name{get_scenarios} +\alias{get_scenarios} +\title{Global scenario list with Hector input file} +\usage{ +get_scenarios() +} +\description{ +Global scenario list with Hector input file +} diff --git a/man/get_titles.Rd b/man/get_titles.Rd new file mode 100644 index 0000000..2bade1b --- /dev/null +++ b/man/get_titles.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/set_globals.R +\name{get_titles} +\alias{get_titles} +\title{Global list of variable titles} +\usage{ +get_titles() +} +\description{ +Global list of variable titles +} diff --git a/tests/testthat/test-globals.R b/tests/testthat/test-globals.R index 2539a3f..b28f050 100644 --- a/tests/testthat/test-globals.R +++ b/tests/testthat/test-globals.R @@ -1,384 +1,71 @@ library(hector) +test_that("globals: scenarios", { -context("globals") + scenarios <- get_scenarios() - -test_that("globals: miscellaneous", { - - globalVars <- get_globalVars() - - expect_equal(globalVars[['startDate']][1], 1900) - expect_equal(globalVars[['endDate']], 2100) - expect_equal(globalVars[['writeDirectory']], "temp") - -}) - - -test_that("globals: color scale", { - - globalColorScales <- get_globalColorScales() - - expect_equal(globalColorScales, c("RCP 2.6"="#5DBFDE", "RCP 4.5"="#5CB95C", "RCP 6.0"="#FBAB33", "RCP 8.5"="#D7534E")) - -}) - - -test_that("globals: rcps", { - - rcps <- get_rcps() - - expect_equal(rcps, c(26,45,60,85)) - -}) - - -test_that("globals: file paths", { - - - globalScenarios <- get_globalScenarios() - - expect_equal(globalScenarios[['RCP-2.6']], file.path('input',paste0('hector_rcp',26,'.ini'))) - expect_equal(globalScenarios[['RCP-4.5']], file.path('input',paste0('hector_rcp',45,'.ini'))) - expect_equal(globalScenarios[['RCP-6.0']], file.path('input',paste0('hector_rcp',60,'.ini'))) - expect_equal(globalScenarios[['RCP-8.5']], file.path('input',paste0('hector_rcp',85,'.ini'))) + expect_equal(scenarios, list("SSP 1-1.9"="input/hector_ssp119.ini", + "SSP 1-2.6"="input/hector_ssp126.ini", + "SSP 2-4.5"="input/hector_ssp245.ini", + "SSP 3-7.0"="input/hector_ssp370.ini", + "SSP 4-3.4"="input/hector_ssp434.ini", + "SSP 4-6.0"="input/hector_ssp460.ini", + "SSP 5-3.4OS"="input/hector_ssp534-over.ini", + "SSP 5-8.5"="input/hector_ssp585.ini")) }) -test_that("globals: scenario color scheme", { - - globalScenarioColors <- get_globalScenarioColors() - - expect_equal(globalScenarioColors, c("RCP 2.6" = "#5DBFDE", "RCP 4.5" = "#5CB95C", "RCP 6.0" = "#FBAB33", "RCP 8.5" ="#D7534E")) +test_that("globals: titles", { + + title <- get_titles() + + expect_equal(title, list("CO2_concentration" = "Atmospheric CO2", + "atmos_co2" = "Atmospheric Carbon Pool", + "ffi_emissions" = "FFI Emissions", + "luc_emissions" = "LUC Emissions", + "N2O_concentration" = "N2O Concentration", + "BC_emissions" = "Black Carbon Emissions", + "OC_emissions" = "Organic Carbon Emissions", + "RF_tot" = "Total Radiative Forcing", + "RF_albedo" = "Albedo Radiative Forcing", + "RF_CO2" = "CO2 Radiative Forcing", + "RF_N2O" = "N2O Radiative Forcing", + "RF_BC" = "Black Carbon Radiative Forcing", + "RF_OC" = "Organic Carbon Radiative Forcing", + "RF_SO2" = "Total SO2 Radiative Forcing", + "RF_vol" = "Volcanic Activity Radiative Forcing", + "FCH4" = "CH4 Radiative Forcing", + "RF_CF4" = "CF4 Radiative Forcing", + "RF_C2F6" = "C2F6 Radiative Forcing", + "RF_HFC23" = "HFC-23 Radiative Forcing", + "RF_HFC4310" = "HFC-4310 Radiative Forcing", + "RF_HFC125" = "HFC-125 Radiative Forcing", + "RF_HFC143a" = "HFC-143a Radiative Forcing", + "RF_HFC245fa" = "HFC-245fa Radiative Forcing", + "RF_SF6" = "SF6 Radiative Forcing", + "RF_CFC11" = "CFC-11 Radiative Forcing", + "RF_CFC12" = "CFC-12 Radiative Forcing", + "RF_CFC113" = "CFC-113 Radiative Forcing", + "RF_CFC114" = "CFC-114 Radiative Forcing", + "RF_CFC115" = "CFC-115 Radiative Forcing", + "RF_CCl4" = "CCl4 Radiative Forcing", + "RF_CH3CCl3" = "CH3CCl3 Radiative Forcing", + "RF_halon1211" = "Halon-1211 Radiative Forcing", + "RF_halon1301" = "Halon-1301 Radiative Forcing", + "RF_halon2402" = "Halon-2402 Radiative Forcing", + "RF_CH3Cl" = "CH3Cl Radiative Forcing", + "RF_CH3Br" = "CH3Br Radiative Forcing", + "CH4_concentration" = "Atmospheric CH4", + "CH4_emissions" = "CH4 Emissions", + "SO2_emissions" = "Anthropogenic SO2", + "SV" = "Volcanic SO2", + "global_tas" = "Global Mean Temperature", + "gmst" = "Equilibrium Global Temperature", + "sst" = "Ocean Surface Temperature", + "ocean_tas" = "Ocean Air Temperature", + "heatflux_mixed" = "Heat Flux - Mixed Layer Ocean", + "heatflux_interior" = "Heat Flux - Interior Layer Ocean", + "heatflux" = "Total Heat Flux - Ocean")) }) - - -test_that("globals: temperature patterns", { - - globalTempPatterns <- get_globalTempPatterns() - - expect_equal(globalTempPatterns, c("CanESM2" = "www/maps/tas_Amon_CanESM2_esmrcp85_r1i1p1_200601-210012_pattern.rds", - "CESM1-BGC" = "www/maps/tas_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds", - "GFDL-ESM2G" = "www/maps/tas_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds", - "MIROC-ESM" = "www/maps/tas_Amon_MIROC-ESM_esmrcp85_r1i1p1_200601-210012_pattern.rds", - "MPI-ESM-LR" = "www/maps/tas_Amon_MPI-ESM-LR_esmrcp85_r1i1p1_200601-210012_pattern.rds", - "MRI-ESM1" = "www/maps/tas_Amon_MRI-ESM1_esmrcp85_r1i1p1_200601-210012_pattern.rds")) - -}) - - -test_that("globals: precipitation patterns", { - - globalPrecipPatterns <- get_globalPrecipPatterns() - - expect_equal(globalPrecipPatterns, c("CanESM2" = "www/maps/pr_Amon_CanESM2_rcp85_r1i1p1_200601-210012_pattern.rds", - "CESM1-BGC" = "www/maps/pr_Amon_CESM1-BGC_rcp85_r1i1p1_200601-210012_pattern.rds", - "GFDL-ESM2G" = "www/maps/pr_Amon_GFDL-ESM2G_rcp85_r1i1p1_200601-210012_pattern.rds", - "MIROC-ESM" = "www/maps/pr_Amon_MIROC-ESM_rcp85_r1i1p1_200601-210012_pattern.rds", - "MPI-ESM-LR" = "www/maps/pr_Amon_MPI-ESM-LR_rcp85_r1i1p1_200601-210012_pattern.rds", - "MRI-ESM1" = "www/maps/pr_Amon_MRI-ESM1_rcp85_r1i1p1_200601-210012_pattern.rds")) - -}) - - -test_that("globals: parameters", { - - globalParameters <- get_globalParameters() - - # Main Model Input Parameters - expect_equal(globalParameters[['pco2']], hector::PREINDUSTRIAL_CO2()) - expect_equal(globalParameters[['q10']], hector::Q10_RH()) - expect_equal(globalParameters[['beta']], hector::BETA()) - expect_equal(globalParameters[['ecs']], hector::ECS()) - expect_equal(globalParameters[['aero']], hector::AERO_SCALE()) - expect_equal(globalParameters[['volc']], hector::VOLCANIC_SCALE()) - expect_equal(globalParameters[['diff']], hector::DIFFUSIVITY()) - -}) - - -test_that("globals: default params", { - - globalParamsDefault <- get_globalParamsDefault() - globalParamsCanESM2 <- get_globalParamsCanESM2() - globalParamsCESM1BGC <- get_globalParamsCESM1BGC() - globalParamsGFDLESM2G <- get_globalParamsGFDLESM2G() - globalParamsMIROCESM <- get_globalParamsMIROCESM() - globalParamsMPIESMLR <- get_globalParamsMPIESMLR() - globalParamsMRIESM1 <- get_globalParamsMRIESM1() - - # Default Hector parameters - expect_equal(globalParamsDefault, c('alpha' = 1, 'beta' = 0.36, 'diff' = 2.3, 'S' = 3, 'C' = 276.09, 'q10_rh' = 2, 'volscl' = 1)) - - # CanESM2 Parameter Sets - expect_equal(globalParamsCanESM2, c('alpha' = 1.87, 'beta' = 0.08, 'diff' = 0.98, 'S' = 3.88, 'C' = 282.35, 'q10_rh' = 1.75, 'volscl' = 1.81)) - - # CESM1-BGC Parameter Set - expect_equal(globalParamsCESM1BGC, c('alpha' = -0.43, 'beta' = 0.0, 'diff' = 8, 'S' = 2.4, 'C' = 280.31, 'q10_rh' = 1.78, 'volscl' = 3.94)) - - # GFDL-ESM2G Parameter Set - expect_equal(globalParamsGFDLESM2G, c('alpha' = 0.46, 'beta' = 0.07, 'diff' = 12.01, 'S' = 2.03, 'C' = 289.24, 'q10_rh' = 1.76, 'volscl' = 2.12)) - - # MIROC-ESM Parameter Set - expect_equal(globalParamsMIROCESM, c('alpha' = 1.05, 'beta' = 0.02, 'diff' = 6.39, 'S' = 5.83, 'C' = 283.31, 'q10_rh' = 1.77, 'volscl' = 2.02)) - - # MPI-ESM-LR Parameter Set - expect_equal(globalParamsMPIESMLR, c('alpha' = 1.22, 'beta' = 0.28, 'diff' = 2.93, 'S' = 3.66, 'C' = 289.13, 'q10_rh' = 1.75, 'volscl' = 0.70)) - - # MRI-ESM1 Parameter Set - expect_equal(globalParamsMRIESM1, c('alpha' = 1.42, 'beta' = 0.66, 'diff' = 4.21, 'S' = 2.04, 'C' = 289.49, 'q10_rh' = 1.76, 'volscl' = 0.27)) - -}) - - -test_that("globals: output parameters", { - - globalCapabilities <- get_globalCapabilities() - - expect_equal(globalCapabilities[['cc_lcf']][1] , hector::LAND_CFLUX()) - # "Atmospheric CO2" - expect_equal(globalCapabilities[['cc_co2']][1] , hector::ATMOSPHERIC_CO2()) - # "Atmospheric Carbon Pool" - expect_equal(globalCapabilities[['cc_acp']][1] , hector::ATMOSPHERIC_C()) - # "Fossil Fuel and Industrial Emissions" - expect_equal(globalCapabilities[['cc_ffi']][1] , hector::FFI_EMISSIONS()) - # "Land Use Change Emissions" - expect_equal(globalCapabilities[['cc_luc']][1] , hector::LUC_EMISSIONS()) - - # CONCENTRATIONS - # "Amospheric N2O" - expect_equal(globalCapabilities[['c_an20']][1] , hector::ATMOSPHERIC_N2O()) - # "Preindustrial Atmospheric CO2" - expect_equal(globalCapabilities[['c_paco2']][1] , hector::PREINDUSTRIAL_CO2()) - # "Preindustrial Ozone Concentration" - expect_equal(globalCapabilities[['c_po']][1] , hector::PREINDUSTRIAL_O3()) - - # EMISSIONS - # "Black Carbon Emissions" - expect_equal(globalCapabilities[['e_bc']][1] , hector::EMISSIONS_BC()) - # "N20 Emissions" - expect_equal(globalCapabilities[['e_n2o']][1] , hector::EMISSIONS_N2O()) - # "NOx Emissions" - expect_equal(globalCapabilities[['e_nox']][1] , hector::EMISSIONS_NOX()) - # "CO Emissions" - expect_equal(globalCapabilities[['e_co']][1] , hector::EMISSIONS_CO()) - # "NMVOC Emissions" - expect_equal(globalCapabilities[['e_nmvoc']][1] , hector::EMISSIONS_NMVOC()) - # "Organic Carbon Emissions" - expect_equal(globalCapabilities[['e_oc']][1] , hector::EMISSIONS_OC()) - - # FORCINGS - # "RF - Total" - expect_equal(globalCapabilities[['f_rft']][1] , hector::RF_TOTAL()) - # "RF - Albedo" - expect_equal(globalCapabilities[['f_alb']][1] , hector::RF_T_ALBEDO()) - # "RF - CO2" - expect_equal(globalCapabilities[['f_co2']][1] , hector::RF_CO2()) - # "RF - N2O" - expect_equal(globalCapabilities[['f_n2o']][1] , hector::RF_N2O()) - - # "RF - Black Carbon" - expect_equal(globalCapabilities[['f_bc']][1] , hector::RF_BC()) - # "RF - Organic Carbon" - expect_equal(globalCapabilities[['f_oc']][1] , hector::RF_OC()) - # "RF - SO2 Direct" - expect_equal(globalCapabilities[['f_so2d']][1] , hector::RF_SO2D()) - # "RF - SO2 Indirect" - expect_equal(globalCapabilities[['f_so2i']][1] , hector::RF_SO2I()) - # "RF - SO2 Total" - expect_equal(globalCapabilities[['f_so2t']][1] , hector::RF_SO2()) - # "RF - Volcanic Activity" - expect_equal(globalCapabilities[['f_va']][1] , hector::RF_VOL()) - # "RF - CH4" - expect_equal(globalCapabilities[['f_ch4']][1] , hector::RF_CH4()) - - # HALOCARBON EMISSIONS - # "CF4 Emissions" - expect_equal(globalCapabilities[['he_cf4']][1] , hector::EMISSIONS_CF4()) - # "C2F6 Emissions" - expect_equal(globalCapabilities[['he_c2f6']][1] , hector::EMISSIONS_C2F6()) - # "HFC-23 Emissions" - expect_equal(globalCapabilities[['he_hfc23']][1] , hector::EMISSIONS_HFC23()) - # "HFC-32 Emissions" - expect_equal(globalCapabilities[['he_hfc32']][1] , hector::EMISSIONS_HFC32()) - # "HFC-4310 Emissions" - expect_equal(globalCapabilities[['he_hfc4310']][1] , hector::EMISSIONS_HFC4310()) - # "HFC-125 Emissions" - expect_equal(globalCapabilities[['he_hfc125']][1] , hector::EMISSIONS_HFC125()) - # "HFC-134a Emissions" - expect_equal(globalCapabilities[['he_hfc134a']][1] , hector::EMISSIONS_HFC134A()) - # "HFC-143a Emissions" - expect_equal(globalCapabilities[['he_hfc143a']][1] , hector::EMISSIONS_HFC143A()) - # "HFC-227ea Emissions" - expect_equal(globalCapabilities[['he_hfc227ea']][1] , hector::EMISSIONS_HFC227EA()) - # "HFC-254fa Emissions" - expect_equal(globalCapabilities[['he_245fa']][1] , hector::EMISSIONS_HFC245FA()) - # "SF6 Emissions"' - expect_equal(globalCapabilities[['he_sf6']][1] , hector::EMISSIONS_SF6()) - # "CFC-11 Emissions" - expect_equal(globalCapabilities[['he_cfc11']][1] , hector::EMISSIONS_CFC11()) - # "CFC-12 Emissions" - expect_equal(globalCapabilities[['he_cfc12']][1] , hector::EMISSIONS_CFC12()) - # "CFC-113 Emissions" - expect_equal(globalCapabilities[['he_cfc113']][1] , hector::EMISSIONS_CFC113()) - # "CFC-114 Emissions" - expect_equal(globalCapabilities[['he_cfc114']][1] , hector::EMISSIONS_CFC114()) - # "CFC-115 Emissions" - expect_equal(globalCapabilities[['he_cfc115']][1] , hector::EMISSIONS_CFC115()) - # "CCl4 Emissions" - expect_equal(globalCapabilities[['he_ccl4']][1] , hector::EMISSIONS_CCL4()) - # "CH3CCl3 Emissions" - expect_equal(globalCapabilities[['he_ch3ccl3']][1] , hector::EMISSIONS_CH3CCL3()) - # "Halon-1211 Emissions" - expect_equal(globalCapabilities[['he_halon1211']][1] , hector::EMISSIONS_HALON1211()) - # "Halon-1301 Emissions" - expect_equal(globalCapabilities[['he_halon1301']][1] , hector::EMISSIONS_HALON1301()) - # "Halon-2402 Emissions" - expect_equal(globalCapabilities[['he_halon2402']][1] , hector::EMISSIONS_HALON2402()) - # "CH3Cl Emissions" - expect_equal(globalCapabilities[['he_ch3cl']][1] , hector::EMISSIONS_CH3CL()) - # "CH3Br Emissions" - expect_equal(globalCapabilities[['he_ch3br']][1] , hector::EMISSIONS_CH3BR()) - - # HALOCARBON FORCINGS - # "CF4 Forcing" - expect_equal(globalCapabilities[['hf_cf4']][1] , hector::RF_CF4()) - # "C2F6 Forcing" - expect_equal(globalCapabilities[['hf_c2f6']][1] , hector::RF_C2F6()) - # "HFC-23 Forcing" - expect_equal(globalCapabilities[['hf_hfc23']][1] , hector::RF_HFC23()) - # "HFC-32 Forcing" - expect_equal(globalCapabilities[['hf_hfc32']][1] , hector::RF_HFC32()) - # "HFC-4310 Forcing" - expect_equal(globalCapabilities[['hf_hfc4310']][1] , hector::RF_HFC4310()) - # "HFC-125 Forcing" - expect_equal(globalCapabilities[['hf_hfc125']][1] , hector::RF_HFC125()) - # "HFC-134a Forcing" - expect_equal(globalCapabilities[['hf_hfc134a']][1] , hector::RF_HFC134A()) - # "HFC-143a Forcing" - expect_equal(globalCapabilities[['hf_hfc143a']][1] , hector::RF_HFC143A()) - # "HFC-227ea Forcing" - expect_equal(globalCapabilities[['hf_hfc227ea']][1] , hector::RF_HFC227EA()) - # "HFC-245fa Forcing" - expect_equal(globalCapabilities[['hf_hfc245fa']][1] , hector::RF_HFC245FA()) - # "SF6 Forcing" - expect_equal(globalCapabilities[['hf_hfcsf6']][1] , hector::RF_SF6()) - # "CFC-11 Forcing" - expect_equal(globalCapabilities[['hf_cfc11']][1] , hector::RF_CFC11()) - # "CFC-12 Forcing" - expect_equal(globalCapabilities[['hf_cfc12']][1] , hector::RF_CFC12()) - # "CFC-113 Forcing" - expect_equal(globalCapabilities[['hf_cfc113']][1] , hector::RF_CFC113()) - # "CFC-114 Forcing" - expect_equal(globalCapabilities[['hf_cfc114']][1] , hector::RF_CFC114()) - # "CFC-115 Forcing" - expect_equal(globalCapabilities[['hf_cfc115']][1] , hector::RF_CFC115()) - # "CCl4 Forcing" - expect_equal(globalCapabilities[['hf_ccl4']][1] , hector::RF_CCL4()) - # "CH3CCl3 Forcing" - expect_equal(globalCapabilities[['hf_ch3ccl3']][1] , hector::RF_CH3CCL3()) - - # "Halon-1211 Forcing" - expect_equal(globalCapabilities[['hf_halon1211']][1] , hector::RF_HALON1211()) - # "Halon-1301 Forcing" - expect_equal(globalCapabilities[['hf_halon1301']][1] , hector::RF_HALON1301()) - # "Halon-2402 Forcing" - expect_equal(globalCapabilities[['hf_halon2402']][1] , hector::RF_HALON2402()) - # "CH3Cl Forcing" - expect_equal(globalCapabilities[['hf_ch3cl']][1] , hector::RF_CH3CL()) - # "CH3Br Forcing" - expect_equal(globalCapabilities[['hf_ch3br']][1] , hector::RF_CH3BR()) - - # METHANE - # "Atmospheric CH4" - expect_equal(globalCapabilities[['m_a_ch4']][1] , hector::ATMOSPHERIC_CH4()) - # "Preindustrial Atmospheric CH4" - expect_equal(globalCapabilities[['m_pa_ch4']][1] , hector::PREINDUSTRIAL_CH4()) - # "Emissions CH4" - expect_equal(globalCapabilities[['m_e_ch4']][1] , hector::EMISSIONS_CH4()) - # "Natural CH4 Emissions" - expect_equal(globalCapabilities[['m_n_ch4']][1] , hector::NATURAL_CH4()) - # "Methane Loss - Soil" - expect_equal(globalCapabilities[['m_soil_loss']][1] , hector::LIFETIME_SOIL()) - # "Methane Loss - Straosphere" - expect_equal(globalCapabilities[['m_strat_loss']][1] , hector::LIFETIME_STRAT()) - - # OCEAN - # "Ocean Carbon Flux" - expect_equal(globalCapabilities[['o_cf']][1] , hector::OCEAN_CFLUX()) - # "Ocean Total Carbon" - expect_equal(globalCapabilities[['o_tc']][1] , hector::OCEAN_C()) - # "Ocean Surface High-Lat Carbon" - expect_equal(globalCapabilities[['o_os_hlc']][1] , hector::OCEAN_C_HL()) - # "Ocean Surface Low-Lat Carbon" - expect_equal(globalCapabilities[['o_os_llc']][1] , hector::OCEAN_C_LL()) - # "Ocean Intermediate Carbon" - expect_equal(globalCapabilities[['o_ic']][1] , hector::OCEAN_C_IO()) - # "Ocean Deep Carbon" - expect_equal(globalCapabilities[['o_dc']][1] , hector::OCEAN_C_DO()) - # "Thermohaline Overturning" - expect_equal(globalCapabilities[['o_to']][1] , hector::TT()) - # "High-Lat Overturning" - expect_equal(globalCapabilities[['o_hl_o']][1] , hector::TU()) - # "Warm-Intermediate Exchange" - expect_equal(globalCapabilities[['o_wie']][1] , hector::TWI()) - # "Intermediate-Deep Exchange" - expect_equal(globalCapabilities[['o_ide']][1] , hector::TID()) - # "High Latitude Ph" - expect_equal(globalCapabilities[['o_hl_ph']][1] , hector::PH_HL()) - # "Low Latitude Ph" - expect_equal(globalCapabilities[['o_ll_ph']][1] , hector::PH_LL()) - # "Atmosphere-Ocean Flux - High Lat" - expect_equal(globalCapabilities[['o_hl_aof']][1] , hector::ATM_OCEAN_FLUX_HL()) - # "Atmosphere-Ocean Flux - Low Lat" - expect_equal(globalCapabilities[['o_ll_aof']][1] , hector::ATM_OCEAN_FLUX_LL()) - # "Partial Pressure CO2 - High Lat" - expect_equal(globalCapabilities[['o_hl_pp_co2']][1] , hector::PCO2_HL()) - # "Partial Pressure CO2 - Low Lat" - expect_equal(globalCapabilities[['o_ll_pp_co2']][1] , hector::PCO2_LL()) - # "Dissolved Inorganic C - High Lat" - expect_equal(globalCapabilities[['o_hl_dic']][1] , hector::DIC_HL()) - # "Dissolved Inorganic C - Low Lat"' - expect_equal(globalCapabilities[['o_ll_dic']][1] , hector::DIC_LL()) - # "Ocean Temperature - High Lat" - expect_equal(globalCapabilities[['o_hl_t']][1] , hector::TEMP_HL()) - # "Ocean Temperature - Low Lat" - expect_equal(globalCapabilities[['o_ll_t']][1] , hector::TEMP_LL()) - # "Carbonate Concentration - High Lat" - expect_equal(globalCapabilities[['o_hl_cc']][1] , hector::CO3_HL()) - # "Carbonate Concentration - Low Lat" - expect_equal(globalCapabilities[['o_ll_cc']][1] , hector::CO3_LL()) - - # SO2 - # "Natural SO2" - expect_equal(globalCapabilities[['so2_n']][1] , hector::NATURAL_SO2()) - # "Year 2000 SO2" - expect_equal(globalCapabilities[['so2_y2k']][1] , hector::Y2000_SO2()) - # "Anthropogenic SO2" - expect_equal(globalCapabilities[['so2_a']][1] , hector::EMISSIONS_SO2()) - # "Volcanic SO2" - expect_equal(globalCapabilities[['so2_v']][1] , hector::VOLCANIC_SO2()) - - # TEMPERATURE - # "Global Mean Temp" - expect_equal(globalCapabilities[['t_gmt']][1] , hector::GLOBAL_TEMP()) - # "Equilibrium Global Temp" - expect_equal(globalCapabilities[['t_egt']][1] , hector::GLOBAL_TEMPEQ()) - # "Ocean Surface Temp" - expect_equal(globalCapabilities[['t_ost']][1] , hector::OCEAN_SURFACE_TEMP()) - # "Ocean Air Temp" - expect_equal(globalCapabilities[['t_oat']][1] , hector::OCEAN_AIR_TEMP()) - - # "Heat Flux - Mixed Layer Ocean" - expect_equal(globalCapabilities[['t_hf_mlo']][1] , hector::FLUX_MIXED()) - # "Heat Flux - Interior Layer Ocean" - expect_equal(globalCapabilities[['t_hf_ilo']][1] , hector::FLUX_INTERIOR()) - # "Total Heat Flux - Ocean" - expect_equal(globalCapabilities[['t_hf_t']][1] , hector::HEAT_FLUX()) - -}) - - - diff --git a/vignettes/Tutorial.Rmd b/vignettes/Tutorial.Rmd index 0b53459..a9f4ee2 100644 --- a/vignettes/Tutorial.Rmd +++ b/vignettes/Tutorial.Rmd @@ -15,7 +15,7 @@ knitr::opts_chunk$set(echo = TRUE) ``` ## Introduction -The Hector user interface was built to extend Hector, a simple, fast running global climate carbon-cycle mode into a web based interactive application. This vignette outlines the basics for interacting with the Hector user interface and includes a tutorial on how to use the Hector user interface to answer a simple science question: *What is the projected temperature change over time for a specific region?* The tools and features in this package will be able to show you the projected change in average temperature for a specific region compared to 1900 temperatures. +The Hector user interface was built to extend Hector, a simple, fast running global climate carbon-cycle mode into a web based interactive application. This vignette outlines the basics for interacting with the Hector user interface and includes a tutorial on how to use the Hector user interface to answer a simple science question: *How would we get to 3.4 W/m2 radiative forcing by 2100 in SSP 5?* The tools and features in this package will be able to show you the projected change in average temperature for a specific region compared to 1900 temperatures. To run this vignette, you will need to access the `hectorui` online application at https://jgcri.shinyapps.io/HectorUI/ or install and setup the package locally. @@ -25,17 +25,17 @@ Simply access the application here: https://jgcri.shinyapps.io/HectorUI/. To a ## Interface Guide Once you have the web page loaded or set up the package locally, you will see the application home page, which contains some background information on Hector, links to code and other resources, and information on how to cite this application. There are two main sections to the application: ‘System Information’ and ‘Run Scenario’ located on the Navigation bar at the top. Within each section are subsections that access information and functionality. -The main interface is also divided into two sections: a left-hand control panel that contains preconfigured scenarios and user adjustable model parameters, and the main output panel on the right for viewing model outputs. Hector is run through “scenarios”, which are a set of emissions and model parameters that drive the model. Built into the package are four Representative Concentration Pathways (RCP) which are greenhouse gas concentration (not emissions) trajectories adopted by the IPCC. The default scenario, RCP 4.5, will be “checked” and you should see the Global Mean Temperature graph in the output section. Each scenario loaded creates a new, unique Hector core object with those parameters and emissions. +The main interface is also divided into two sections: a left-hand control panel that contains preconfigured scenarios and user adjustable model parameters, and the main output panel on the right for viewing model outputs. Hector is run through “scenarios”, which are a set of emissions and model parameters that drive the model. Built into the package are eight Shared Socioeconomic Pathways (SSPs), representing different "pathways" the world could take, adopted by the IPCC. The default scenario, SSP 4-3.4, will be “checked” and you should see the Atmospheric CO2 graph in the output section. Each scenario loaded creates a new, unique Hector core object with those parameters and emissions. ### Scenarios -Scenarios are the main source of input for Hector. They contain emissions and parameters calibrated to represent different RCP scenarios. The default selected RCP 4.5 scenario represents a “middle of the road” projection for emissions and global mitigation. To add additional scenarios for comparison, you can check any combination of the 4 RCP scenarios and they will be represented as their own series in the output graphs. Try checking the 8.5 scenario. You should see a new series appear in the Global Temperature graph where the temperature rises faster than the 4.5 scenario. The 8.5 scenario represents somewhat of a “worst case” scenario. To view projections of other outputs choose some more variables (up to 4) in the graphs section and you should see additional graphs representing Hector’s projections of those outputs. +Scenarios are the main source of input for Hector. They contain emissions and parameters calibrated to represent different SSP scenarios. The default selected RCP 4-3.4 scenario represents a “middle of the road” projection for emissions and global mitigation with a goal radiative forcing of 3.4 W/m2 at the end of 2100. To add additional scenarios for comparison, you can check any combination of the eight SSP scenarios and they will be represented as their own series in the output graphs. Try also checking the SSP 5-3.4OS scenario and clicking "Load Graphs". You should see a new Atmospheric CO2 graph with two lines. The 5-3.4OS scenario represents somewhat of a “worst case” scenario, where global fossil fuel emissions continue to increase. The SSP 4-3.4 line shows global average CO2 concentrations stay below 600 ppmv CO2 while SSP 5-3.4OS goes well above 1000 ppmv CO2. ### Parameters -To further configure Hector, you can adjust the input parameters manually in the left hand nav or choose a global climate model to emulate and it will load up parameters that are calibrated to emulate that model. Try choosing one of the models and note how the input parameters change and the graphs are automatically updated to reflect Hector’s projection being run using those parameters. At any point you can also manually adjust any of the input parameters and set them by clicking the “Set Parameters” button. +To further configure Hector, you can adjust the input parameters manually in the left hand nav. At any point you can also manually adjust any of the input parameters and set them by clicking the “Load Graphs” button. ### Custom Scenarios -The Hector user interface allows advanced users to customize their own scenarios via the “Custom Scenarios” tab in the left hand nav. The custom scenarios use the RCP scenarios as a starting point and allow you to edit the complete time series of emissions. To create a custom scenario you will need to download the excel scenario template file that you want to use as a starting point, edit the emissions within the file, and reupload it to the system. Once done, you will see your scenario’s output in the graphs on the right, just like one of the preconfigured scenarios. +The Hector user interface allows advanced users to customize their own scenarios via the “Custom Scenarios” tab in the left hand nav. The custom scenarios use the SSP scenarios as a starting point and allow you to edit the complete time series of emissions. To create a custom scenario you will need to download the excel scenario template file that you want to use as a starting point, edit the emissions within the file, and reupload it to the system. Once done, click "Create Scenario" and you will see your scenario’s output in the graphs on the right, just like one of the preconfigured scenarios. ### Other Outputs In addition to the main graph interface, Hector also has a few other outputs. On the graph tab, there is a “Download Raw Data” button which will download the complete time series output for all of the scenarios and output variables that you have chosen. Clicking the “Downscaled Maps” tab in the output section allows you to view cell based global data for temperature and precipitation using pattern generation techniques. This is discussed more in the tutorial. @@ -44,39 +44,19 @@ In addition to the main graph interface, Hector also has a few other outputs. On Tutorial Step 1: Getting Started | Example --------------- | ------- -To begin the tutorial, make sure you are in the “Explore Hector” tab and click the model emulation dropdown and choose one of the models available, or leave it as Hector default. The different models contain unique input parameters that drive the Hector model’s output. The models also have various degree resolutions for the downscaled maps we will be viewing. For the purposes of this experiment you may choose whichever you like. | ![Explore Hector](vig1_2.0.png){width=250px} +To begin the tutorial, make sure you are in the “Explore Hector” tab. | ![Explore Hector](vig1_3.0.png){width=250px} -Tutorial Step 2: Setting Map Parameters | Example +Tutorial Step 2: Setting SSPs | Example --------------- | ------- -Click the ‘Downscaled Maps’ tab in the output section on the right and match the model dropdown there to the choice you made in the model parameters dropdown. This tells the system which model to emulate when doing the downscaling. In general, its best to match the models for the most accurate output. Set the Variable to temperature and the Year to 2020 and leave the Scenario as RCP 4.5 (the list of available scenarios corresponds to whichever RCP’s you have selected as well as any custom scenarios you created). Now click ‘Load Map’. | ![Explore Hector](vig2_2.0.png){width=250px} +Click the "Select SSPs" dropdown and choose 'SSP 4-3.4' and 'SSP 5-3.4OS'. Now click "Load Graph". You should see a graph of CO2 concentrations and two lines - one for each SSP you chose. We see the SSP 5-3.4 exceeds SSP4-3.4 in global average CO2 concentrations around 2020 but begins to decline around 2040. | ![Explore Hector](vig2_3.0.png){width=250px} -Tutorial Step 3: Choose Location | Example +Tutorial Step 3: Choose Output Variable | Example --------------- | ------- -You should see a global map of average temperature per unit of resolution (varies based on which model you chose). Now choose a point of origin, it could be the location of your home, school, work, or anywhere you want use as a point of references. Use one of the map zoom tools in the upper right hand corner to zoom in a little bit to your point of origin and hover over some of the cells. | ![Explore Hector](vig3_2.0.png){width=250px} +Next, use the "Output Variable" dropdown to choose 'RF - Total', click "Load Graphs". Here we see that both SSPs end around 3.4 W/m2 at the end of 2100. Let's look at another output variables to see how emissions change over time. | ![Explore Hector](vig3_3.0.png){width=250px} Tutorial Step 4: Rescaling the Map | Example --------------- | ------- -To get a better view of temperature change in the region, rescale the map to your coordinates by clicking the ‘Filter by lat/lon’ check box. Enter a set of coordinates that corresponds to a box around your point of origin. If you aren’t sure, you can always use the maps x/y axis and/or the hover data to examine coordinates. In this example, we are using the system default coordinates which zooms into the United States region. Click ‘Load Map’ again. You should see a much broader range of temperature gradient for the region now, giving you better regional detail. The numbers didn’t change; the temperature legend has been rescaled based on your coordinates. It is now using the regional data within your specified bounding box to build the legend’s max/min values. Note the pattern of temperature changes in the region, it will be of use later. | ![Explore Hector](vig4_2.0.png){width=250px} - -Tutorial Step 5: Historical Comparison | Example ---------------- | ------- -This map is useful, but without more context it is difficult to determine how much the temperature changed over time. This can be accomplished by clicking the ‘Show as comparison to year 1900’ checkbox and then clicking ‘Load Map’ again. You should now see a much smaller range of numbers in the legend. The values represent the delta in temperature by comparing the values at the year 1900 to the values of the chosen year, in this case 2020. Hover over some of the cells and note the change in temperature in the region. Note the gradient pattern. In the US for example, some of the colder areas are getting hotter faster then the warmer regions of the country. | ![Explore Hector](vig5_2.0.png){width=250px} - -Tutorial Step 6: Future Projections | Example ---------------- | ------- -Next, let’s do some future projections. Change the year to 2050 and click ‘Load Map’ again. Note the larger values in the legend, representing greater delta in temperature. We are viewing a middle of the road scenario RCP 4.5 which represents the world doing a moderate amount of mitigation. What about the worst case scenario, RCP 8.5? | ![Explore Hector](vig6_2.0.png){width=250px} - -Tutorial Step 7: Adding More Scenarios | Example ---------------- | ------- -Click the check box for the 8.5 scenario in the upper left. A new, separate Hector core has been initialized with the 8.5 parameters and it is now available for selection in the map section’s ‘Available Scenarios’ dropdown box. Choose the Standard 8.5 in the drop down and click ‘Load Map’ again. Note the greater range of temperatures reflecting further warming. Hover over your region and view the local temperature. The temperatures should be a bit higher than the RCP 4.5 scenario. This is because the RCP 8.5 scenario accounts for less mitigation of emissions and climate control. | ![Explore Hector](vig7_2.0.png){width=250px} - -Tutorial Step 8: Future Projections (2100) | Example ---------------- | ------- -Lastly, let’s project all the way to 2100, the maximum available year for Hector’s projections. Choose 2100 in the Year dropdown and click ‘Load Map’ again. Note the further expansion of temperature change. If you are still viewing the 8.5 scenario, try viewing the 4.5 also and note the differences. In the case of the US, the difference is dramatic, on the order of several degrees Celsius. | ![Explore Hector](vig8_2.0.png){width=250px} - -Tutorial Step 9: Further Exploration | Example ---------------- | ------- -Feel free to explore further the maps section by adjusting the model emulation, the model parameters, adding the 2.6 or 6.0 scenarios, or any of the other variables. A high resolution version of your map may be downloaded by clicking the “Save Hi-Res Map” button. | ![Explore Hector](vig9_2.0.png){width=250px} +Use the "Output Variable" dropdown menu again to select 'FFI Emissions' and click "Load Graph". Here we see a sharp decline in fossil fuel emissions in the year 2040, which is likely contributing to the radiative forcing mitigation we saw in Step 3. | ![Explore Hector](vig4_3.0.png){width=250px} ## Conclusion This concludes the tutorial and interface guide. After completing this, you should have a basic understanding of how the interface works, how the different pieces interact, and how to create meaningful output. For more detailed information on Hector, check the “About” section for links to the formal model description paper, the source code for Hector, and other related links and information. Feel free to examine and explore as much as you want. diff --git a/vignettes/vig1_2.0.png b/vignettes/vig1_2.0.png deleted file mode 100644 index 4d439e9..0000000 Binary files a/vignettes/vig1_2.0.png and /dev/null differ diff --git a/vignettes/vig1_3.0.png b/vignettes/vig1_3.0.png new file mode 100644 index 0000000..a65381d Binary files /dev/null and b/vignettes/vig1_3.0.png differ diff --git a/vignettes/vig2_2.0.png b/vignettes/vig2_2.0.png deleted file mode 100644 index 2dd0466..0000000 Binary files a/vignettes/vig2_2.0.png and /dev/null differ diff --git a/vignettes/vig2_3.0.png b/vignettes/vig2_3.0.png new file mode 100644 index 0000000..d440e7a Binary files /dev/null and b/vignettes/vig2_3.0.png differ diff --git a/vignettes/vig3_2.0.png b/vignettes/vig3_2.0.png deleted file mode 100644 index 5a516ee..0000000 Binary files a/vignettes/vig3_2.0.png and /dev/null differ diff --git a/vignettes/vig3_3.0.png b/vignettes/vig3_3.0.png new file mode 100644 index 0000000..121157f Binary files /dev/null and b/vignettes/vig3_3.0.png differ diff --git a/vignettes/vig4_2.0.png b/vignettes/vig4_2.0.png deleted file mode 100644 index 99821bc..0000000 Binary files a/vignettes/vig4_2.0.png and /dev/null differ diff --git a/vignettes/vig4_3.0.png b/vignettes/vig4_3.0.png new file mode 100644 index 0000000..229816c Binary files /dev/null and b/vignettes/vig4_3.0.png differ diff --git a/vignettes/vig5_2.0.png b/vignettes/vig5_2.0.png deleted file mode 100644 index 350dae4..0000000 Binary files a/vignettes/vig5_2.0.png and /dev/null differ diff --git a/vignettes/vig6_2.0.png b/vignettes/vig6_2.0.png deleted file mode 100644 index 13e33e4..0000000 Binary files a/vignettes/vig6_2.0.png and /dev/null differ diff --git a/vignettes/vig7_2.0.png b/vignettes/vig7_2.0.png deleted file mode 100644 index 0eac7d9..0000000 Binary files a/vignettes/vig7_2.0.png and /dev/null differ diff --git a/vignettes/vig8_2.0.png b/vignettes/vig8_2.0.png deleted file mode 100644 index 4a32a1d..0000000 Binary files a/vignettes/vig8_2.0.png and /dev/null differ diff --git a/vignettes/vig9_2.0.png b/vignettes/vig9_2.0.png deleted file mode 100644 index d7036c4..0000000 Binary files a/vignettes/vig9_2.0.png and /dev/null differ